From a18b1b431e42dbfcb3ad77beed4f4f730caef30d Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sat, 31 Oct 2020 08:13:02 +1100 Subject: [PATCH] working on migration for vendors, expenses, tasks --- app/Jobs/Util/Import.php | 85 +- tests/Unit/Migration/ImportTest.php | 24 +- tests/Unit/Migration/migration.json | 316323 ++++++------------------- tests/Unit/Migration/migration.zip | Bin 10143 -> 309515 bytes 4 files changed, 78177 insertions(+), 238255 deletions(-) diff --git a/app/Jobs/Util/Import.php b/app/Jobs/Util/Import.php index d5977de013c6..9265c40e52c4 100644 --- a/app/Jobs/Util/Import.php +++ b/app/Jobs/Util/Import.php @@ -26,6 +26,7 @@ use App\Factory\QuoteFactory; use App\Factory\RecurringInvoiceFactory; use App\Factory\TaxRateFactory; use App\Factory\UserFactory; +use App\Factory\VendorFactory; use App\Http\Requests\Company\UpdateCompanyRequest; use App\Http\ValidationRules\ValidCompanyGatewayFeesAndLimitsRule; use App\Http\ValidationRules\ValidUserForCompany; @@ -56,6 +57,7 @@ use App\Models\Task; use App\Models\TaskStatus; use App\Models\TaxRate; use App\Models\User; +use App\Models\Vendor; use App\Repositories\ClientContactRepository; use App\Repositories\ClientRepository; use App\Repositories\CompanyRepository; @@ -67,6 +69,8 @@ use App\Repositories\PaymentRepository; use App\Repositories\ProductRepository; use App\Repositories\QuoteRepository; use App\Repositories\UserRepository; +use App\Repositories\VendorContactRepository; +use App\Repositories\VendorRepository; use App\Utils\Traits\CleanLineItems; use App\Utils\Traits\CompanyGatewayFeesAndLimitsSaver; use App\Utils\Traits\MakesHash; @@ -107,6 +111,7 @@ class Import implements ShouldQueue 'payment_terms', 'tax_rates', 'clients', + 'vendors', 'projects', 'products', 'invoices', @@ -450,6 +455,68 @@ class Import implements ShouldQueue $client_repository = null; } + /** + * @param array $data + * @throws Exception + */ + private function processVendors(array $data): void + { + Vendor::unguard(); + + $contact_repository = new VendorContactRepository(); + $vendor_repository = new VendorRepository($contact_repository); + + foreach ($data as $key => $resource) { + $modified = $resource; + $modified['company_id'] = $this->company->id; + $modified['user_id'] = $this->processUserId($resource); + + unset($modified['id']); + unset($modified['contacts']); + + $client = $vendor_repository->save( + $modified, + VendorFactory::create( + $this->company->id, + $modified['user_id'] + ) + ); + + $client->contacts()->forceDelete(); + + if (array_key_exists('contacts', $resource)) { // need to remove after importing new migration.json + $modified_contacts = $resource['contacts']; + + foreach ($modified_contacts as $key => $client_contacts) { + $modified_contacts[$key]['company_id'] = $this->company->id; + $modified_contacts[$key]['user_id'] = $this->processUserId($resource); + $modified_contacts[$key]['client_id'] = $client->id; + $modified_contacts[$key]['password'] = 'mysuperpassword'; // @todo, and clean up the code.. + unset($modified_contacts[$key]['id']); + } + + $saveable_contacts['contacts'] = $modified_contacts; + + $contact_repository->save($saveable_contacts, $client); + } + + $key = "vendors_{$resource['id']}"; + + $this->ids['vendors'][$key] = [ + 'old' => $resource['id'], + 'new' => $client->id, + ]; + } + + Vendor::reguard(); + + /*Improve memory handling by setting everything to null when we have finished*/ + $data = null; + $contact_repository = null; + $client_repository = null; + } + + private function processProducts(array $data): void { Product::unguard(); @@ -1049,10 +1116,18 @@ class Import implements ShouldQueue $modified['company_id'] = $this->company->id; $modified['user_id'] = $this->transformId('users', $resource['user_id']); - $modified['client_id'] = $this->transformId('clients', $resource['client_id']); - $modified['category_id'] = $this->transformId('expense_categories', $resource['category_id']); - $modified['invoice_id'] = $this->transformId('invoices', $resource['invoice_id']); - $modified['project_id'] = $this->transformId('projects', $resource['project_id']); + + if(isset($resource['client_id'])) + $modified['client_id'] = $this->transformId('clients', $resource['client_id']); + + if(isset($resource['category_id'])) + $modified['category_id'] = $this->transformId('expense_categories', $resource['category_id']); + + if(isset($resource['invoice_id'])) + $modified['invoice_id'] = $this->transformId('invoices', $resource['invoice_id']); + + if(isset($resource['project_id'])) + $modified['project_id'] = $this->transformId('projects', $resource['project_id']); // $modified['vendor_id'] = $this->transformId('vendors', $resource['vendor_id']); $expense = Expense::Create($modified); @@ -1104,7 +1179,7 @@ class Import implements ShouldQueue * @return int * @throws Exception */ - public function transformId(string $resource, string $old): int + public function transformId($resource, string $old): int { if (! array_key_exists($resource, $this->ids)) { throw new Exception("Resource {$resource} not available."); diff --git a/tests/Unit/Migration/ImportTest.php b/tests/Unit/Migration/ImportTest.php index c5335e6da389..f39f06e1a0ef 100644 --- a/tests/Unit/Migration/ImportTest.php +++ b/tests/Unit/Migration/ImportTest.php @@ -50,6 +50,7 @@ class ImportTest extends TestCase $this->makeTestData(); $migration_file = base_path().'/tests/Unit/Migration/migration.json'; + $this->migration_array = json_decode(file_get_contents($migration_file), 1); } @@ -60,6 +61,20 @@ class ImportTest extends TestCase $this->assertTrue($status); } + public function testAllImport() + { + + $this->invoice->forceDelete(); + $this->quote->forceDelete(); + + $this->user->setCompany($this->company); + auth()->login($this->user, true); + + Import::dispatchNow($this->migration_array, $this->company, $this->user); + + $this->assertTrue(true); + } + // public function testExceptionOnUnavailableResource() // { // $data['panda_bears'] = [ @@ -139,16 +154,7 @@ class ImportTest extends TestCase // } -// public function testAllImport() -// { -// $this->invoice->forceDelete(); -// $this->quote->forceDelete(); - -// Import::dispatchNow($this->migration_array, $this->company, $this->user); - -// $this->assertTrue(true); -// } // public function testClientAttributes() // { diff --git a/tests/Unit/Migration/migration.json b/tests/Unit/Migration/migration.json index e1237526dea6..536166cd58f9 100644 --- a/tests/Unit/Migration/migration.json +++ b/tests/Unit/Migration/migration.json @@ -1,32 +1,34 @@ { "company": { + "referral_code": "", "account_id": 1, + "google_analytics_key": "", "industry_id": null, "ip": "127.0.0.1", - "company_key": "zuom5k2exmedyhztpgnkmwhwkzzxpbtk", + "company_key": "ky2yosjx5zwfcxtsqsajz79qrd1412bs", "logo": null, "convert_products": 0, "fill_products": 1, "update_products": 1, "show_product_details": 0, - "custom_surcharge_taxes1": 0, - "custom_surcharge_taxes2": 0, + "custom_surcharge_taxes1": 1, + "custom_surcharge_taxes2": 1, "subdomain": null, "size_id": null, "enable_modules": 63, "custom_fields": { - "invoice_text1": "VAT DATE", - "invoice_text2": "1", - "invoice1": "12", - "invoice2": "21" + "invoice_text1": "invoice 1", + "invoice_text2": "invoice 2", + "invoice1": "surcharge1", + "invoice2": "surcharge2" }, - "created_at": "2020-02-11", - "updated_at": "2020-04-17", + "created_at": "2020-06-30", + "updated_at": "2020-10-30", "settings": { "timezone_id": "15", "date_format_id": "1", "currency_id": "1", - "name": "Migrator", + "name": "Untitled", "address1": "", "address2": "", "city": "", @@ -34,7 +36,7 @@ "postal_code": "", "country_id": "840", "invoice_terms": "", - "enabled_item_tax_rates": true, + "enabled_item_tax_rates": 2, "invoice_design_id": 1, "phone": "", "email": "", @@ -50,7 +52,7 @@ "invoice_footer": "", "pdf_email_attachment": false, "font_size": 9, - "invoice_labels": "", + "invoice_labels": "{\"address1\":\"\",\"address2\":\"\",\"amount\":\"\",\"amount_paid\":\"\",\"balance\":\"\",\"balance_due\":\"\",\"blank\":\"\",\"city_state_postal\":\"\",\"client_name\":\"\",\"company_name\":\"\",\"contact_name\":\"\",\"country\":\"\",\"credit_card\":\"\",\"credit_date\":\"\",\"credit_issued_to\":\"\",\"credit_note\":\"\",\"credit_number\":\"\",\"credit_to\":\"\",\"custom_value1\":\"\",\"custom_value2\":\"\",\"date\":\"\",\"delivery_note\":\"\",\"description\":\"\",\"details\":\"\",\"discount\":\"\",\"due_date\":\"\",\"email\":\"\",\"from\":\"\",\"gateway_fee_description\":\"\",\"gateway_fee_discount_description\":\"\",\"gateway_fee_item\":\"\",\"hours\":\"\",\"id_number\":\"\",\"invoice\":\"\",\"invoice_date\":\"\",\"invoice_due_date\":\"\",\"invoice_issued_to\":\"\",\"invoice_no\":\"\",\"invoice_number\":\"\",\"invoice_to\":\"\",\"invoice_total\":\"\",\"item\":\"\",\"line_total\":\"\",\"method\":\"\",\"outstanding\":\"\",\"paid_to_date\":\"\",\"partial_due\":\"\",\"payment_date\":\"\",\"phone\":\"\",\"po_number\":\"\",\"postal_city_state\":\"\",\"product_key\":\"\",\"quantity\":\"\",\"quote\":\"\",\"quote_date\":\"\",\"quote_due_date\":\"\",\"quote_issued_to\":\"\",\"quote_no\":\"\",\"quote_number\":\"\",\"quote_to\":\"\",\"rate\":\"\",\"reference\":\"\",\"service\":\"\",\"statement\":\"\",\"statement_date\":\"\",\"statement_issued_to\":\"\",\"statement_to\":\"\",\"subtotal\":\"\",\"surcharge\":\"\",\"tax\":\"\",\"tax_invoice\":\"\",\"tax_quote\":\"\",\"taxes\":\"\",\"terms\":\"\",\"to\":\"\",\"total\":\"\",\"unit_cost\":\"\",\"valid_until\":\"\",\"vat_number\":\"\",\"website\":\"\",\"work_phone\":\"\",\"your_credit\":\"\",\"your_invoice\":\"\",\"your_quote\":\"\",\"your_statement\":\"\"}", "military_time": false, "invoice_number_pattern": "", "quote_number_pattern": "", @@ -64,7 +66,7 @@ "send_portal_password": false, "recurring_number_prefix": "R", "enable_client_portal": true, - "invoice_fields": "", + "invoice_fields": "{\"invoice_fields\":[\"invoice.invoice_number\",\"invoice.po_number\",\"invoice.invoice_date\",\"invoice.due_date\",\"invoice.balance_due\",\"invoice.partial_due\",\"invoice.invoice_total\",\"invoice.outstanding\",\"invoice.custom_text_value2\",\"invoice.custom_text_value1\",\".blank\"],\"client_fields\":[\"client.client_name\",\"client.id_number\",\"client.vat_number\",\"client.address1\",\"client.address2\",\"client.city_state_postal\",\"client.country\",\"client.email\"],\"account_fields1\":[\"account.company_name\",\"account.id_number\",\"account.vat_number\",\"account.website\",\"account.email\",\"account.phone\"],\"account_fields2\":[\"account.address1\",\"account.address2\",\"account.city_state_postal\",\"account.country\"],\"product_fields\":[\"product.item\",\"product.description\",\"product.custom_value1\",\"product.custom_value2\",\"product.unit_cost\",\"product.quantity\",\"product.tax\",\"product.line_total\"],\"task_fields\":[\"product.service\",\"product.description\",\"product.custom_value1\",\"product.custom_value2\",\"product.rate\",\"product.hours\",\"product.tax\",\"product.line_total\"]}", "company_logo": "", "embed_documents": false, "document_email_attachment": false, @@ -106,7 +108,7 @@ "id": 1, "first_name": "David", "last_name": "Bomba", - "phone": null, + "phone": "", "email": "turbo124@gmail.com", "confirmation_code": null, "failed_logins": null, @@ -115,30 +117,30 @@ "oauth_provider_id": null, "google_2fa_secret": null, "accepted_terms_version": "1.0.1", - "password": "$2y$10$pDVj9LrItbYsvEenqOQe7.fSgdiIYzoLF86YnVtVVMLJzaBDI4iHC", - "remember_token": "sdXcPlvCIrk7QnUk2JHuBjXmHBSoleZq5tMDL4EI7zGK5GFTRDy3A7eRWE79", - "created_at": "2020-02-11", - "updated_at": "2020-02-11", + "password": "$2y$10$oSl3znxFb5dW2fhEc6oST.vNqwruaA.ZmXycVIFyuMA0zZV3N5.g6", + "remember_token": "KKabCTghLfgpes56f9evYFP6EmXZPaLFYJBs5mKLr3EdzZkU8rlFkECLm2Sf", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null, "company_user": [] }, { - "id": 2, - "first_name": "david@romulus.com.au", - "last_name": "david@romulus.com.au", - "phone": null, - "email": "david@romulus.com.au", - "confirmation_code": "hyahep88dde6demen5e1hu1e7bnxctod", - "failed_logins": 0, + "id": 3, + "first_name": "quote", + "last_name": "user", + "phone": "", + "email": "quote@gmail.com", + "confirmation_code": "", + "failed_logins": null, "referral_code": null, "oauth_user_id": null, "oauth_provider_id": null, "google_2fa_secret": null, "accepted_terms_version": "1.0.1", - "password": "$2y$10$J8n8HtsZRDhCzW5bYCSVUurXYE\/P8Z2.Se\/s047PAtLMVoU8\/VFvK", - "remember_token": "Cn1L9oPCV8HsCiW8dCMfJznyC8C2t45qtGalIbZh2APsu8Ub7GXRImJ9kI9z", - "created_at": "2020-02-11", - "updated_at": "2020-04-08", + "password": "$2y$10$oSl3znxFb5dW2fhEc6oST.vNqwruaA.ZmXycVIFyuMA0zZV3N5.g6", + "remember_token": null, + "created_at": "2020-09-25", + "updated_at": "2020-09-25", "deleted_at": null, "company_user": [] } @@ -149,8 +151,8 @@ "rate": "10.000", "company_id": 1, "user_id": 1, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { @@ -158,42 +160,107 @@ "rate": "20.000", "company_id": 1, "user_id": 1, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "name": "Tax 1", - "rate": "10.000", + "name": "inggst", + "rate": "13.000", "company_id": 1, "user_id": 1, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-08-22", + "updated_at": "2020-08-22", + "deleted_at": null + } + ], + "payment_terms": [ + { + "user_id": 0, + "company_id": 1, + "num_days": 7, + "is_deleted": null, + "created_at": "2018-11-09", + "updated_at": "2018-11-09", "deleted_at": null }, { - "name": "Tax 2", - "rate": "20.000", + "user_id": 0, "company_id": 1, - "user_id": 1, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "num_days": 10, + "is_deleted": null, + "created_at": "2018-11-09", + "updated_at": "2018-11-09", + "deleted_at": null + }, + { + "user_id": 0, + "company_id": 1, + "num_days": 14, + "is_deleted": null, + "created_at": "2018-11-09", + "updated_at": "2018-11-09", + "deleted_at": null + }, + { + "user_id": 0, + "company_id": 1, + "num_days": 15, + "is_deleted": null, + "created_at": "2018-11-09", + "updated_at": "2018-11-09", + "deleted_at": null + }, + { + "user_id": 0, + "company_id": 1, + "num_days": 30, + "is_deleted": null, + "created_at": "2018-11-09", + "updated_at": "2018-11-09", + "deleted_at": null + }, + { + "user_id": 0, + "company_id": 1, + "num_days": 60, + "is_deleted": null, + "created_at": "2018-11-09", + "updated_at": "2018-11-09", + "deleted_at": null + }, + { + "user_id": 0, + "company_id": 1, + "num_days": 90, + "is_deleted": null, + "created_at": "2018-11-09", + "updated_at": "2018-11-09", + "deleted_at": null + }, + { + "user_id": 0, + "company_id": 1, + "num_days": 0, + "is_deleted": null, + "created_at": "2018-11-09", + "updated_at": "2018-11-09", "deleted_at": null } ], "clients": [ { - "id": 1, + "id": 53, "company_id": 1, "user_id": 1, - "name": "a", - "balance": "201.50", - "paid_to_date": "465.00", - "address1": "", - "address2": "", - "city": "", - "state": "", - "postal_code": "", + "name": "Alexis Stiedemann V", + "balance": "495.77", + "paid_to_date": "-618.68", + "address1": "299 Wisozk Estate Suite 184", + "address2": "Apt. 280", + "city": "New Ryleighfurt", + "state": "Nevada", + "postal_code": "90247", "country_id": null, "phone": "", "private_notes": "", @@ -205,125 +272,50 @@ "id_number": "", "custom_value1": null, "custom_value2": null, - "shipping_address1": "", - "shipping_address2": "", - "shipping_city": "", - "shipping_state": "", - "shipping_postal_code": "", + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, "shipping_country_id": null, "contacts": [ { - "id": 1, + "id": 53, "company_id": 1, "user_id": 1, - "client_id": 1, - "first_name": "1", - "last_name": "", - "phone": "", - "custom_value1": null, - "custom_value2": null, - "email": "user@example.com", - "is_primary": 1, - "send_invoice": 1, + "client_id": 53, + "first_name": "Ebony", + "last_name": "Tromp", + "phone": "795.309.6652 x11139", + "custom_value1": "", + "custom_value2": "", + "email": "gziemann@example.com", + "is_primary": true, + "send_email": true, "confirmed": false, + "email_verified_at": "2020-06-30 11:19:16", "last_login": null, "password": null, "remember_token": null, - "contact_key": "uumwfh3e2legbo4l7bo5ubmrelkcgcvd" - }, - { - "id": 27, - "company_id": 1, - "user_id": 1, - "client_id": 1, - "first_name": "3", - "last_name": "", - "phone": "", - "custom_value1": null, - "custom_value2": null, - "email": "", - "is_primary": 0, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "9tuwperwxs8cpfqisfstsi3gw7kicudc" - }, - { - "id": 28, - "company_id": 1, - "user_id": 1, - "client_id": 1, - "first_name": "4", - "last_name": "", - "phone": "", - "custom_value1": null, - "custom_value2": null, - "email": "", - "is_primary": 0, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "izvi2jqqcvdam7qneub5iw3tff7oatzn" - }, - { - "id": 29, - "company_id": 1, - "user_id": 1, - "client_id": 1, - "first_name": "5", - "last_name": "", - "phone": "", - "custom_value1": null, - "custom_value2": null, - "email": "", - "is_primary": 0, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "n8pe9ye6nb44wriqrvg1x0zjgnbvtxdx" - }, - { - "id": 30, - "company_id": 1, - "user_id": 1, - "client_id": 1, - "first_name": "6", - "last_name": "", - "phone": "", - "custom_value1": null, - "custom_value2": null, - "email": "", - "is_primary": 0, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "pgh70ytjo3gnofodmesggphttctxfksw" + "contact_key": "jysijcbqv95oszdowtc6euef7fgwrswr" } ], "settings": { - "currency_id": "2" + "currency_id": "1" } }, { - "id": 2, + "id": 54, "company_id": 1, "user_id": 1, - "name": "Tia Ruecker", - "balance": "136.05", - "paid_to_date": "176.06", - "address1": "12648 Hilll Meadow", - "address2": "Suite 874", - "city": "Lake Berenicemouth", - "state": "New Mexico", - "postal_code": "88258", + "name": "Tremayne Thompson MD", + "balance": "259.93", + "paid_to_date": "301.79", + "address1": "950 Andy Neck", + "address2": "Suite 518", + "city": "Lake Flossie", + "state": "Colorado", + "postal_code": "16487", "country_id": null, "phone": null, "private_notes": null, @@ -341,108 +333,1202 @@ "shipping_state": null, "shipping_postal_code": null, "shipping_country_id": null, + "contacts": [ + { + "id": 54, + "company_id": 1, + "user_id": 1, + "client_id": 54, + "first_name": "Aubree", + "last_name": "Kulas", + "phone": "1-448-872-1924 x6033", + "custom_value1": "", + "custom_value2": "", + "email": "ruby33@example.net", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:18", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "bfgrzdvolfoyd126sbyb88bllabb0ca4" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 55, + "company_id": 1, + "user_id": 1, + "name": "Prof. Tyler Funk", + "balance": "337.33", + "paid_to_date": "280.87", + "address1": "96724 Nicolette Row", + "address2": "Apt. 995", + "city": "Batzchester", + "state": "Texas", + "postal_code": "16743-3107", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 55, + "company_id": 1, + "user_id": 1, + "client_id": 55, + "first_name": "Jeremy", + "last_name": "Leuschke", + "phone": "985-954-5325 x4798", + "custom_value1": "", + "custom_value2": "", + "email": "froob@example.net", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:19", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "q0yms7sf3ldmqj3b8i8maza7mmhc27ko" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 56, + "company_id": 1, + "user_id": 1, + "name": "Mrs. Maria Borer", + "balance": "268.78", + "paid_to_date": "363.25", + "address1": "2712 Prudence Prairie Suite 074", + "address2": "Suite 840", + "city": "Gregton", + "state": "Rhode Island", + "postal_code": "48652-0877", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 56, + "company_id": 1, + "user_id": 1, + "client_id": 56, + "first_name": "Elyse", + "last_name": "Witting", + "phone": "1-935-247-8340", + "custom_value1": "", + "custom_value2": "", + "email": "wullrich@example.org", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:20", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "dgopml0mwvlq6rol7eheph59oyz70lpg" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 57, + "company_id": 1, + "user_id": 1, + "name": "Dulce Funk", + "balance": "295.14", + "paid_to_date": "378.34", + "address1": "94260 Jarod Centers Suite 196", + "address2": "Suite 828", + "city": "Isabelside", + "state": "Mississippi", + "postal_code": "21739-3242", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 57, + "company_id": 1, + "user_id": 1, + "client_id": 57, + "first_name": "Maritza", + "last_name": "Keebler", + "phone": "1-952-538-6588 x1419", + "custom_value1": "", + "custom_value2": "", + "email": "rhiannon.robel@example.org", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:22", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "wkzfqq7pgjvybjy7qfyofokdppv1k0lu" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 58, + "company_id": 1, + "user_id": 1, + "name": "Estel Kihn", + "balance": "266.28", + "paid_to_date": "212.07", + "address1": "54089 Collier Canyon Apt. 210", + "address2": "Apt. 396", + "city": "Port Nyahhaven", + "state": "Hawaii", + "postal_code": "02236-1059", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 58, + "company_id": 1, + "user_id": 1, + "client_id": 58, + "first_name": "Karli", + "last_name": "Windler", + "phone": "1-824-388-3570", + "custom_value1": "", + "custom_value2": "", + "email": "kevon.hintz@example.net", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:23", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "qqy48expzkuwadyq77ewolzkmmyfl17s" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 59, + "company_id": 1, + "user_id": 1, + "name": "Willy Carter", + "balance": "305.89", + "paid_to_date": "299.11", + "address1": "796 Hoppe Mission Apt. 772", + "address2": "Suite 154", + "city": "Maggiofort", + "state": "Alaska", + "postal_code": "93546-3020", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 59, + "company_id": 1, + "user_id": 1, + "client_id": 59, + "first_name": "Paolo", + "last_name": "Feest", + "phone": "(321) 920-6835", + "custom_value1": "", + "custom_value2": "", + "email": "shad.graham@example.org", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:24", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "ockjfd8jovo4exsdzuj2soiraoqpodig" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 60, + "company_id": 1, + "user_id": 1, + "name": "Ms. Gerda Howe DVM", + "balance": "246.03", + "paid_to_date": "437.37", + "address1": "735 Omer Crossroad Apt. 994", + "address2": "Suite 557", + "city": "South Adelbert", + "state": "South Carolina", + "postal_code": "98714", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 60, + "company_id": 1, + "user_id": 1, + "client_id": 60, + "first_name": "William", + "last_name": "Kshlerin", + "phone": "902-425-2742", + "custom_value1": "", + "custom_value2": "", + "email": "fvonrueden@example.net", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:26", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "xgkxlkbwbbigtvb4igjpzoy7jwq6mllh" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 61, + "company_id": 1, + "user_id": 1, + "name": "Freda Rohan", + "balance": "304.10", + "paid_to_date": "256.36", + "address1": "421 Morar Glens Apt. 817", + "address2": "Apt. 503", + "city": "South Adriana", + "state": "New Jersey", + "postal_code": "87325-3322", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 61, + "company_id": 1, + "user_id": 1, + "client_id": 61, + "first_name": "Lempi", + "last_name": "Harris", + "phone": "(562) 751-7606 x8230", + "custom_value1": "", + "custom_value2": "", + "email": "gerhold.carlos@example.net", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:27", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "piedxy6aqklwp6fnd0ojszceijand3w7" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 62, + "company_id": 1, + "user_id": 1, + "name": "Blake Kertzmann DVM", + "balance": "319.35", + "paid_to_date": "349.44", + "address1": "756 Michale Mill Apt. 933", + "address2": "Suite 916", + "city": "Josefinaport", + "state": "Washington", + "postal_code": "45190", + "country_id": null, + "phone": "", + "private_notes": "", + "website": "", + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": "", + "id_number": "", + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 62, + "company_id": 1, + "user_id": 1, + "client_id": 62, + "first_name": "Orion", + "last_name": "Treutel", + "phone": "1-278-210-1669", + "custom_value1": "", + "custom_value2": "", + "email": "fgutmann@example.org", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:29", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "plmgajly9kpdx9jllwmj0bp8fzvzqurz" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 63, + "company_id": 1, + "user_id": 1, + "name": "Rae Runolfsson", + "balance": "228.71", + "paid_to_date": "395.83", + "address1": "260 Wilderman Keys Suite 145", + "address2": "Suite 458", + "city": "East Antoninaland", + "state": "Kansas", + "postal_code": "93293-9106", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 63, + "company_id": 1, + "user_id": 1, + "client_id": 63, + "first_name": "Heaven", + "last_name": "Schuppe", + "phone": "956-387-0307 x337", + "custom_value1": "", + "custom_value2": "", + "email": "cbernier@example.net", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:30", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "ikxut6ufbc2stabdjvm2jhpliagzpchh" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 64, + "company_id": 1, + "user_id": 1, + "name": "Miss Joanny Muller II", + "balance": "258.67", + "paid_to_date": "233.11", + "address1": "83946 Jace Junction Apt. 140", + "address2": "Suite 352", + "city": "Port Casperfurt", + "state": "Iowa", + "postal_code": "13667-3246", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 64, + "company_id": 1, + "user_id": 1, + "client_id": 64, + "first_name": "Duane", + "last_name": "Orn", + "phone": "+1 (571) 479-1428", + "custom_value1": "", + "custom_value2": "", + "email": "vrice@example.net", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:31", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "pgplzaybz5on3ztaedkwqjjhg8hsrewz" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 65, + "company_id": 1, + "user_id": 1, + "name": "Donavon Bruen", + "balance": "309.63", + "paid_to_date": "314.92", + "address1": "3213 Julius Crescent Suite 264", + "address2": "Apt. 924", + "city": "West Omariborough", + "state": "California", + "postal_code": "08001-9837", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 65, + "company_id": 1, + "user_id": 1, + "client_id": 65, + "first_name": "Lucile", + "last_name": "Bashirian", + "phone": "(240) 449-7524 x0980", + "custom_value1": "", + "custom_value2": "", + "email": "lia.barton@example.com", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:33", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "9vfmzbytcgjhxwneyuqzawd44sa3qmhn" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 66, + "company_id": 1, + "user_id": 1, + "name": "Cydney Fahey", + "balance": "268.79", + "paid_to_date": "300.09", + "address1": "357 Muller Spurs", + "address2": "Suite 507", + "city": "Fritschstad", + "state": "Minnesota", + "postal_code": "61245", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 66, + "company_id": 1, + "user_id": 1, + "client_id": 66, + "first_name": "Lourdes", + "last_name": "Swaniawski", + "phone": "(318) 270-9311 x574", + "custom_value1": "", + "custom_value2": "", + "email": "destin89@example.org", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:34", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "shpwh6jd5r4spza0icaoy35ndjlqsyrd" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 67, + "company_id": 1, + "user_id": 1, + "name": "Mr. Mike Marvin II", + "balance": "325.42", + "paid_to_date": "280.08", + "address1": "930 Kellen Court Suite 666", + "address2": "Apt. 398", + "city": "South Stella", + "state": "Mississippi", + "postal_code": "07336", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 67, + "company_id": 1, + "user_id": 1, + "client_id": 67, + "first_name": "Kitty", + "last_name": "Ritchie", + "phone": "(362) 902-6854", + "custom_value1": "", + "custom_value2": "", + "email": "fprice@example.net", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:36", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "dmlvdmwnzbepstocvcnqxzkp4hnxdizy" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 68, + "company_id": 1, + "user_id": 1, + "name": "Alice Homenick", + "balance": "310.80", + "paid_to_date": "292.45", + "address1": "3143 Israel Forks Suite 672", + "address2": "Apt. 625", + "city": "Linniestad", + "state": "Tennessee", + "postal_code": "00820", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 68, + "company_id": 1, + "user_id": 1, + "client_id": 68, + "first_name": "Ewell", + "last_name": "Reinger", + "phone": "1-790-495-1666 x98506", + "custom_value1": "", + "custom_value2": "", + "email": "qweimann@example.net", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:37", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "q6zw82cuop3zukr59m7zi9kitz0wko81" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 69, + "company_id": 1, + "user_id": 1, + "name": "Dr. Gabriel Olson", + "balance": "355.54", + "paid_to_date": "279.85", + "address1": "35372 Madison Ridges Suite 058", + "address2": "Apt. 422", + "city": "Cristtown", + "state": "Georgia", + "postal_code": "53339-7546", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 69, + "company_id": 1, + "user_id": 1, + "client_id": 69, + "first_name": "Niko", + "last_name": "Mayert", + "phone": "574.224.6124 x108", + "custom_value1": "", + "custom_value2": "", + "email": "stephanie18@example.org", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:38", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "qkrwcpzknrci3nuwfdfcucg0qx1lxqfg" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 70, + "company_id": 1, + "user_id": 1, + "name": "Dr. Rowena Stokes IV", + "balance": "207.60", + "paid_to_date": "285.38", + "address1": "5082 Moen Shoals Apt. 247", + "address2": "Suite 118", + "city": "Bernhardside", + "state": "District of Columbia", + "postal_code": "21647-5530", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 70, + "company_id": 1, + "user_id": 1, + "client_id": 70, + "first_name": "Gregory", + "last_name": "Hane", + "phone": "510.936.6295", + "custom_value1": "", + "custom_value2": "", + "email": "cchristiansen@example.org", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:40", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "jcr2uxkddt0fz9b8pxlqm92eqsat1c9d" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 71, + "company_id": 1, + "user_id": 1, + "name": "Roosevelt Larkin", + "balance": "306.83", + "paid_to_date": "384.70", + "address1": "852 Hilpert Courts Suite 901", + "address2": "Apt. 090", + "city": "Hauckchester", + "state": "District of Columbia", + "postal_code": "73993-8811", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 71, + "company_id": 1, + "user_id": 1, + "client_id": 71, + "first_name": "Chloe", + "last_name": "Sporer", + "phone": "796.490.0141 x523", + "custom_value1": "", + "custom_value2": "", + "email": "norbert.pagac@example.net", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:41", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "a4fnwxtv1waeu3uyqfo3f1pyzc1od0vw" + } + ], + "settings": { + "currency_id": "1" + } + }, + { + "id": 72, + "company_id": 1, + "user_id": 1, + "name": "Kali Metz", + "balance": "343.78", + "paid_to_date": "348.78", + "address1": "902 Stanton Prairie", + "address2": "Apt. 248", + "city": "West Shannon", + "state": "South Dakota", + "postal_code": "61871", + "country_id": null, + "phone": null, + "private_notes": null, + "website": null, + "industry_id": null, + "size_id": null, + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 72, + "company_id": 1, + "user_id": 1, + "client_id": 72, + "first_name": "Cordia", + "last_name": "Bergnaum", + "phone": "1-232-382-6861 x5164", + "custom_value1": "", + "custom_value2": "", + "email": "zieme.lyric@example.org", + "is_primary": true, + "send_email": true, + "confirmed": false, + "email_verified_at": "2020-06-30 11:19:43", + "last_login": null, + "password": null, + "remember_token": null, + "contact_key": "xc79bnyndjboxwxn3oxbho0hpapfifwh" + } + ], + "settings": { + "currency_id": "1" + } + } + ], + "vendors": [ + { + "id": 1, + "company_id": 1, + "user_id": 1, + "name": "Jeffrey Dibbert", + "address1": "1835 Davis Dam", + "address2": "Suite 924", + "city": "West Chazview", + "state": "Indiana", + "postal_code": "65195-2079", + "country_id": null, + "phone": "", + "private_notes": "", + "website": "", + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 1, + "company_id": 1, + "user_id": 1, + "vendor_id": 1, + "first_name": "Tavares", + "last_name": "McLaughlin", + "phone": "+1-815-851-6554", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "salma.rohan@example.com", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:44", + "last_login": null, + "password": "", + "is_locked": false + } + ] + }, + { + "id": 2, + "company_id": 1, + "user_id": 1, + "name": "Jonathan Kuhlman", + "address1": "6306 Liam Key", + "address2": "Suite 100", + "city": "Lake Pierre", + "state": "Tennessee", + "postal_code": "21753-4630", + "country_id": null, + "phone": "", + "private_notes": "", + "website": "", + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, "contacts": [ { "id": 2, "company_id": 1, "user_id": 1, - "client_id": 2, - "first_name": "Rashawn", - "last_name": "Lueilwitz", - "phone": "1-247-806-4161 x2931", - "custom_value1": null, - "custom_value2": null, - "email": "qkoch@example.org", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 2, + "first_name": "Delphia", + "last_name": "Gusikowski", + "phone": "490-752-6811 x97604", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "vonrueden.freddie@example.com", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:44", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "jecu0iubkzy3wbeolab0cuaejv78xktf" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 3, "company_id": 1, "user_id": 1, - "name": "Chesley Yost", - "balance": "47.58", - "paid_to_date": "203.61", - "address1": "626 Fae Island Suite 016", - "address2": "Suite 032", - "city": "South Adanstad", + "name": "Mr. Ayden Block IV", + "address1": "3578 Dietrich Valley Suite 869", + "address2": "Apt. 544", + "city": "Lutherport", "state": "New Mexico", - "postal_code": "83125", - "country_id": 4, + "postal_code": "18627-3720", + "country_id": null, "phone": "", "private_notes": "", "website": "", - "industry_id": null, - "size_id": null, - "is_deleted": 0, - "vat_number": "", - "id_number": "", - "custom_value1": null, - "custom_value2": null, - "shipping_address1": "626 Fae Island Suite 016", - "shipping_address2": "Suite 032", - "shipping_city": "South Adanstad", - "shipping_state": "New Mexico", - "shipping_postal_code": "83125", - "shipping_country_id": 4, - "contacts": [ - { - "id": 3, - "company_id": 1, - "user_id": 1, - "client_id": 3, - "first_name": "Edyth", - "last_name": "Mosciski", - "phone": "1-784-373-3728", - "custom_value1": null, - "custom_value2": null, - "email": "celestine.mills@example.com", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "i5h0rvbp5tr7bp6y3pamcjio6tspjqne" - } - ], - "settings": { - "currency_id": "1" - } - }, - { - "id": 4, - "company_id": 1, - "user_id": 1, - "name": "Florine Davis", - "balance": "130.36", - "paid_to_date": "154.44", - "address1": "90068 Lakin Hills Apt. 795", - "address2": "Apt. 541", - "city": "O'Harabury", - "state": "Iowa", - "postal_code": "22992", - "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 3, + "company_id": 1, + "user_id": 1, + "vendor_id": 3, + "first_name": "Lue", + "last_name": "Konopelski", + "phone": "+1.884.937.5169", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "kwitting@example.com", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:44", + "last_login": null, + "password": "", + "is_locked": false + } + ] + }, + { + "id": 4, + "company_id": 1, + "user_id": 1, + "name": "Addison McDermott", + "address1": "3641 Kuhn Hills", + "address2": "Suite 995", + "city": "Ortizstad", + "state": "Missouri", + "postal_code": "01526-1163", + "country_id": null, + "phone": "", + "private_notes": "", + "website": "", + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -454,49 +1540,47 @@ "id": 4, "company_id": 1, "user_id": 1, - "client_id": 4, - "first_name": "Brad", - "last_name": "Kilback", - "phone": "+1.715.996.1207", - "custom_value1": null, - "custom_value2": null, - "email": "pfeffer.thurman@example.net", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 4, + "first_name": "Marisa", + "last_name": "Goodwin", + "phone": "+1.695.838.5202", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "qcrooks@example.org", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:44", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "i6qlyozgyady5wefnza4itvn2pjz3rpt" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 5, "company_id": 1, "user_id": 1, - "name": "Emory Bernhard MD", - "balance": "142.19", - "paid_to_date": "92.72", - "address1": "6839 Gerhold Fork", - "address2": "Apt. 464", - "city": "Olgahaven", - "state": "Alaska", - "postal_code": "80968", + "name": "Mrs. Addie Doyle MD", + "address1": "417 Sadie Drive", + "address2": "Suite 100", + "city": "Edshire", + "state": "Hawaii", + "postal_code": "75262", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -508,49 +1592,47 @@ "id": 5, "company_id": 1, "user_id": 1, - "client_id": 5, - "first_name": "Richmond", - "last_name": "Jerde", - "phone": "769-901-8049 x5641", - "custom_value1": null, - "custom_value2": null, - "email": "izabella13@example.net", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 5, + "first_name": "Margarete", + "last_name": "Schamberger", + "phone": "654.807.5866 x2729", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "bogisich.brad@example.com", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:44", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "hdpowqiy99m4jpwugffe7m7cc797aygp" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 6, "company_id": 1, "user_id": 1, - "name": "Edmund Smith", - "balance": "119.58", - "paid_to_date": "203.82", - "address1": "32869 Oberbrunner Court", - "address2": "Suite 871", - "city": "East Stefaniestad", - "state": "Mississippi", - "postal_code": "60727", + "name": "Miss Assunta Wisozk", + "address1": "2898 Herman Plaza", + "address2": "Apt. 047", + "city": "West Baron", + "state": "Texas", + "postal_code": "73764", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -562,49 +1644,47 @@ "id": 6, "company_id": 1, "user_id": 1, - "client_id": 6, - "first_name": "Tate", - "last_name": "Cummerata", - "phone": "794-434-2881 x52933", - "custom_value1": null, - "custom_value2": null, - "email": "mcdermott.hadley@example.net", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 6, + "first_name": "Jeanie", + "last_name": "Kshlerin", + "phone": "985.929.2098 x565", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "larson.pauline@example.net", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:44", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "kt1mnivllgz1fkwyuakthkdur6ixvbjk" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 7, "company_id": 1, "user_id": 1, - "name": "Haskell Armstrong I", - "balance": "233.89", - "paid_to_date": "188.90", - "address1": "166 Walter Prairie", - "address2": "Apt. 404", - "city": "Marysestad", - "state": "Arizona", - "postal_code": "93940", + "name": "Shana Von", + "address1": "16694 Hackett Summit", + "address2": "Apt. 721", + "city": "O'Keefechester", + "state": "North Dakota", + "postal_code": "08003-8593", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -616,103 +1696,99 @@ "id": 7, "company_id": 1, "user_id": 1, - "client_id": 7, - "first_name": "Clarissa", - "last_name": "Kirlin", - "phone": "1-547-368-8703 x4818", - "custom_value1": null, - "custom_value2": null, - "email": "erdman.meredith@example.org", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 7, + "first_name": "Calista", + "last_name": "Feest", + "phone": "(894) 666-8664 x52973", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "jed42@example.com", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:45", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "vdnj9coxpweimbo005nafajqsrv9y2ts" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 8, "company_id": 1, "user_id": 1, - "name": "Cooper Miller", - "balance": "160.20", - "paid_to_date": "176.70", - "address1": "41747 Amir Alley", - "address2": "Suite 001", - "city": "New Kurtis", - "state": "Maine", - "postal_code": "78995", - "country_id": 4, + "name": "Prof. Titus Zemlak", + "address1": "6973 Gregoria Camp", + "address2": "Apt. 598", + "city": "Altenwerthshire", + "state": "Florida", + "postal_code": "98344-3699", + "country_id": null, "phone": "", "private_notes": "", "website": "", - "industry_id": null, - "size_id": null, - "is_deleted": 0, - "vat_number": "", - "id_number": "", - "custom_value1": null, - "custom_value2": null, - "shipping_address1": "41747 Amir Alley", - "shipping_address2": "Suite 001", - "shipping_city": "New Kurtis", - "shipping_state": "Maine", - "shipping_postal_code": "78995", - "shipping_country_id": 4, - "contacts": [ - { - "id": 8, - "company_id": 1, - "user_id": 1, - "client_id": 8, - "first_name": "Franco", - "last_name": "Lesch", - "phone": "429-808-3927", - "custom_value1": null, - "custom_value2": null, - "email": "mathias23@example.net", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "vquiql59laxsfrjglcd1vslkbiucwfwk" - } - ], - "settings": { - "currency_id": "1" - } - }, - { - "id": 9, - "company_id": 1, - "user_id": 1, - "name": "Johnathon Gorczany", - "balance": "58.66", - "paid_to_date": "164.78", - "address1": "1590 Hickle Flat", - "address2": "Suite 684", - "city": "Cummeratabury", - "state": "Kansas", - "postal_code": "33963", - "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", + "shipping_address1": null, + "shipping_address2": null, + "shipping_city": null, + "shipping_state": null, + "shipping_postal_code": null, + "shipping_country_id": null, + "contacts": [ + { + "id": 8, + "company_id": 1, + "user_id": 1, + "vendor_id": 8, + "first_name": "Carrie", + "last_name": "Pfannerstill", + "phone": "1-773-260-7429 x2477", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "skris@example.org", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:45", + "last_login": null, + "password": "", + "is_locked": false + } + ] + }, + { + "id": 9, + "company_id": 1, + "user_id": 1, + "name": "Oren Donnelly", + "address1": "35286 Hortense Orchard", + "address2": "Suite 525", + "city": "Mckennachester", + "state": "South Dakota", + "postal_code": "57439", + "country_id": null, + "phone": "", + "private_notes": "", + "website": "", + "is_deleted": 0, + "vat_number": null, + "id_number": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -724,49 +1800,47 @@ "id": 9, "company_id": 1, "user_id": 1, - "client_id": 9, - "first_name": "Ward", - "last_name": "Gleason", - "phone": "(628) 548-2926 x653", - "custom_value1": null, - "custom_value2": null, - "email": "lkub@example.com", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 9, + "first_name": "Johanna", + "last_name": "Hand", + "phone": "268-543-5781", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "krystina22@example.net", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:45", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "djrk3nc6djvyjf26ufwvs6xp3qxzc552" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 10, "company_id": 1, "user_id": 1, - "name": "Ms. Annetta O'Reilly", - "balance": "162.17", - "paid_to_date": "129.93", - "address1": "6483 Uriel Hills Suite 126", - "address2": "Suite 143", - "city": "West Eula", - "state": "District of Columbia", - "postal_code": "95323-6205", + "name": "Waldo Collins", + "address1": "53434 Hellen Club Suite 956", + "address2": "Suite 148", + "city": "South Noemiefort", + "state": "Delaware", + "postal_code": "66762-2818", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -778,49 +1852,47 @@ "id": 10, "company_id": 1, "user_id": 1, - "client_id": 10, - "first_name": "Jamey", - "last_name": "Gerlach", - "phone": "213-644-9471", - "custom_value1": null, - "custom_value2": null, - "email": "schamberger.malvina@example.net", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 10, + "first_name": "Kolby", + "last_name": "Reilly", + "phone": "784-216-3078 x462", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "jreynolds@example.org", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:45", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "za7ekxieazrjkvfzheonknhpdfimip5l" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 11, "company_id": 1, "user_id": 1, - "name": "Evangeline Cummings V", - "balance": "174.77", - "paid_to_date": "69.79", - "address1": "13895 Pollich Lakes Suite 293", - "address2": "Suite 781", - "city": "Haleyberg", - "state": "Mississippi", - "postal_code": "61068", + "name": "Mrs. Summer Ritchie", + "address1": "85792 Harmony Ford", + "address2": "Apt. 193", + "city": "Bauchside", + "state": "Wisconsin", + "postal_code": "37248", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -832,49 +1904,47 @@ "id": 11, "company_id": 1, "user_id": 1, - "client_id": 11, - "first_name": "Leanna", - "last_name": "Williamson", - "phone": "925.212.1806 x56302", - "custom_value1": null, - "custom_value2": null, - "email": "willis38@example.org", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 11, + "first_name": "Wade", + "last_name": "Hudson", + "phone": "926-991-8825 x257", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "cremin.violette@example.org", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:45", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "jt467chd3ywx3rkjoyfds1ih6lr4sokl" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 12, "company_id": 1, "user_id": 1, - "name": "Dr. Levi Boyer", - "balance": "12.58", - "paid_to_date": "7.36", - "address1": "6575 Dewitt Station", - "address2": "Suite 803", - "city": "West Hosea", - "state": "Texas", - "postal_code": "11731", + "name": "Arvel Harris", + "address1": "2717 Keshawn Dam", + "address2": "Suite 603", + "city": "North Katlynn", + "state": "Kansas", + "postal_code": "32700", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -886,49 +1956,47 @@ "id": 12, "company_id": 1, "user_id": 1, - "client_id": 12, - "first_name": "Reed", - "last_name": "Pouros", - "phone": "1-414-718-2161 x60573", - "custom_value1": null, - "custom_value2": null, - "email": "laney.spinka@example.org", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 12, + "first_name": "Trevion", + "last_name": "Cronin", + "phone": "1-945-491-6178 x9089", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "dickinson.randy@example.net", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:45", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "m0h7d4ygwsoiqdk82gk4esmdktcxng33" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 13, "company_id": 1, "user_id": 1, - "name": "Dr. Howard Stiedemann", - "balance": "0.14", - "paid_to_date": "6.09", - "address1": "583 Bria Wall", - "address2": "Suite 547", - "city": "East Chadrick", - "state": "Kansas", - "postal_code": "33626", + "name": "Mr. Jimmie Kemmer", + "address1": "78297 Medhurst Roads", + "address2": "Suite 585", + "city": "Maximillianborough", + "state": "North Dakota", + "postal_code": "05294", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -940,49 +2008,47 @@ "id": 13, "company_id": 1, "user_id": 1, - "client_id": 13, - "first_name": "Shanna", - "last_name": "Wisoky", - "phone": "1-517-593-2489", - "custom_value1": null, - "custom_value2": null, - "email": "schiller.ardith@example.net", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 13, + "first_name": "Myrtie", + "last_name": "Wyman", + "phone": "+1.961.834.2094", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "jacobson.assunta@example.net", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:45", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "ljtjwv9a9zahdbndu8mnr7nzwwikr8te" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 14, "company_id": 1, "user_id": 1, - "name": "Prof. Francesca Witting Sr.", - "balance": "1467.42", - "paid_to_date": "1470.42", - "address1": "2750 Quigley Curve", - "address2": "Suite 177", - "city": "Mitchelside", - "state": "Iowa", - "postal_code": "02473-4238", + "name": "Ms. Rosina Carroll", + "address1": "6098 Dorris Road Apt. 073", + "address2": "Apt. 922", + "city": "Lelatown", + "state": "New York", + "postal_code": "19369", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -994,49 +2060,47 @@ "id": 14, "company_id": 1, "user_id": 1, - "client_id": 14, - "first_name": "Reynold", - "last_name": "Yundt", - "phone": "594.618.9448", - "custom_value1": null, - "custom_value2": null, - "email": "torp.margarett@example.net", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 14, + "first_name": "Destany", + "last_name": "Cole", + "phone": "1-952-773-4706 x34869", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "mwillms@example.org", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:45", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "aj5tz2ukk8ti37aknhec4yetpsncdcdb" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 15, "company_id": 1, "user_id": 1, - "name": "Laurianne Walsh IV", - "balance": "1814.49", - "paid_to_date": "1617.82", - "address1": "30948 Elliot Ford", - "address2": "Apt. 993", - "city": "North Doug", - "state": "California", - "postal_code": "79057-6640", + "name": "Rickey Gusikowski", + "address1": "7053 Homenick Lane", + "address2": "Apt. 744", + "city": "Metzburgh", + "state": "Texas", + "postal_code": "86246-3423", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -1048,49 +2112,47 @@ "id": 15, "company_id": 1, "user_id": 1, - "client_id": 15, - "first_name": "Desmond", - "last_name": "Jenkins", - "phone": "780.630.9735", - "custom_value1": null, - "custom_value2": null, - "email": "else13@example.net", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 15, + "first_name": "Annabell", + "last_name": "Champlin", + "phone": "(972) 206-1353 x9560", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "jazlyn.heller@example.com", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:45", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "sfwscjiykliptf6sqhcamiymg6pye8cx" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 16, "company_id": 1, "user_id": 1, - "name": "Joan Quigley II", - "balance": "1473.97", - "paid_to_date": "1504.46", - "address1": "100 Iva Manor Apt. 513", - "address2": "Suite 427", - "city": "New Trentborough", - "state": "Pennsylvania", - "postal_code": "63466-4065", + "name": "Kody Kemmer", + "address1": "565 Berge Burg", + "address2": "Apt. 141", + "city": "Bogisichville", + "state": "North Carolina", + "postal_code": "82248-2857", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -1102,49 +2164,47 @@ "id": 16, "company_id": 1, "user_id": 1, - "client_id": 16, - "first_name": "Gabe", - "last_name": "Ebert", - "phone": "+1-359-701-1414", - "custom_value1": null, - "custom_value2": null, - "email": "keshaun.osinski@example.org", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 16, + "first_name": "Addie", + "last_name": "McDermott", + "phone": "(427) 447-6888", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "lbotsford@example.com", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:46", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "klxovle4mou6ev9at9cxnw5hkxkzzvht" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 17, "company_id": 1, "user_id": 1, - "name": "Neal Homenick IV", - "balance": "1441.19", - "paid_to_date": "1418.32", - "address1": "55558 Ethan Lake Suite 043", - "address2": "Suite 430", - "city": "Franeckiside", - "state": "Maryland", - "postal_code": "11168-5069", + "name": "Mariana Shanahan", + "address1": "25507 Reese Haven Apt. 452", + "address2": "Suite 568", + "city": "Leuschketown", + "state": "Virginia", + "postal_code": "27081-8482", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -1156,49 +2216,47 @@ "id": 17, "company_id": 1, "user_id": 1, - "client_id": 17, - "first_name": "Major", - "last_name": "Hartmann", - "phone": "+1-486-819-6552", - "custom_value1": null, - "custom_value2": null, - "email": "dwuckert@example.org", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 17, + "first_name": "Matt", + "last_name": "Koss", + "phone": "+1.296.565.8007", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "effertz.chadd@example.net", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:46", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "2rzdbbb2uupvbckah11t1x5ulgibxo9x" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 18, "company_id": 1, "user_id": 1, - "name": "Donato Block", - "balance": "1498.03", - "paid_to_date": "1630.15", - "address1": "55950 Buckridge Springs Suite 016", - "address2": "Apt. 571", - "city": "Waelchihaven", - "state": "South Carolina", - "postal_code": "20428-5992", + "name": "Margaret Boyer", + "address1": "5932 Larson Mall Apt. 068", + "address2": "Suite 354", + "city": "West Cesarstad", + "state": "Georgia", + "postal_code": "15726", "country_id": null, "phone": "", "private_notes": "", "website": "", - "industry_id": null, - "size_id": null, "is_deleted": 0, - "vat_number": "", - "id_number": "", + "vat_number": null, + "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -1210,49 +2268,47 @@ "id": 18, "company_id": 1, "user_id": 1, - "client_id": 18, - "first_name": "Kaci", - "last_name": "Pagac", - "phone": "414.878.6005", - "custom_value1": null, - "custom_value2": null, - "email": "araceli.bednar@example.com", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 18, + "first_name": "Aric", + "last_name": "Marvin", + "phone": "285-978-0069", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "otilia70@example.org", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:46", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "su77pwvy3qzwhpivragnnsmqnpb4q21o" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 19, "company_id": 1, "user_id": 1, - "name": "Josiane Kshlerin", - "balance": "1568.62", - "paid_to_date": "1368.55", - "address1": "413 King Isle", - "address2": "Suite 965", - "city": "Hodkiewiczbury", - "state": "Illinois", - "postal_code": "11321", + "name": "Asia Larkin", + "address1": "213 Brett Forges Suite 108", + "address2": "Suite 334", + "city": "Port Elizaland", + "state": "New Jersey", + "postal_code": "09930", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -1264,49 +2320,47 @@ "id": 19, "company_id": 1, "user_id": 1, - "client_id": 19, - "first_name": "Odessa", - "last_name": "Beier", - "phone": "1-562-930-9647 x63889", - "custom_value1": null, - "custom_value2": null, - "email": "wjast@example.net", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 19, + "first_name": "Eliza", + "last_name": "Abshire", + "phone": "(640) 544-2969 x008", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "lind.savion@example.net", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:46", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "ngvatvghetj5ywcujqguaanadbyjjsis" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } + ] }, { "id": 20, "company_id": 1, "user_id": 1, - "name": "Nellie Daniel", - "balance": "1454.81", - "paid_to_date": "1322.22", - "address1": "31173 McCullough Prairie", - "address2": "Suite 948", - "city": "West Tyson", - "state": "Georgia", - "postal_code": "38731", + "name": "Prof. Alden McGlynn III", + "address1": "62193 Kassulke Alley Apt. 765", + "address2": "Suite 084", + "city": "Johnsonborough", + "state": "Ohio", + "postal_code": "79249-5598", "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, + "phone": "", + "private_notes": "", + "website": "", "is_deleted": 0, "vat_number": null, "id_number": null, "custom_value1": null, "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "transaction_name": "", "shipping_address1": null, "shipping_address2": null, "shipping_city": null, @@ -1318,3542 +2372,3132 @@ "id": 20, "company_id": 1, "user_id": 1, - "client_id": 20, - "first_name": "Jettie", - "last_name": "Rippin", - "phone": "(698) 698-1867", - "custom_value1": null, - "custom_value2": null, - "email": "conn.murphy@example.org", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, + "vendor_id": 20, + "first_name": "Braulio", + "last_name": "Schneider", + "phone": "224.903.5682", + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "", + "email": "eloy02@example.org", + "is_primary": true, + "send_email": false, + "confirmed": true, + "email_verified_at": "2020-06-30 11:19:46", "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "uy6miuos1ljdq7tjpyovmzttcxtvmext" + "password": "", + "is_locked": false } - ], - "settings": { - "currency_id": "1" - } - }, + ] + } + ], + "projects": [ { - "id": 21, + "id": 1, "company_id": 1, - "user_id": 1, - "name": "Tessie Treutel", - "balance": "1284.53", - "paid_to_date": "1513.16", - "address1": "768 Jacobi Centers Apt. 518", - "address2": "Apt. 853", - "city": "Port Uniquechester", - "state": "Mississippi", - "postal_code": "74409-0639", - "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, - "is_deleted": 0, - "vat_number": null, - "id_number": null, + "client_id": 53, "custom_value1": null, "custom_value2": null, - "shipping_address1": null, - "shipping_address2": null, - "shipping_city": null, - "shipping_state": null, - "shipping_postal_code": null, - "shipping_country_id": null, - "contacts": [ - { - "id": 21, - "company_id": 1, - "user_id": 1, - "client_id": 21, - "first_name": "Harrison", - "last_name": "O'Keefe", - "phone": "1-772-527-0027 x124", - "custom_value1": null, - "custom_value2": null, - "email": "orland.gottlieb@example.org", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "47wpbyxfc8dijibo1hitrydvkefonfxm" - } - ], - "settings": { - "currency_id": "1" - } - }, - { - "id": 22, - "company_id": 1, + "custom_value3": null, + "custom_value4": null, + "budgeted_hours": 123, + "due_date": "2020-11-04", + "name": "Big Project", + "private_notes": "private notes", + "public_notes": "", + "task_rate": "321.0000", "user_id": 1, - "name": "Prof. Shad Kling II", - "balance": "1401.69", - "paid_to_date": "1714.78", - "address1": "38010 Pinkie Oval Suite 739", - "address2": "Suite 733", - "city": "Garnetttown", - "state": "Louisiana", - "postal_code": "35551-5944", - "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, "is_deleted": 0, - "vat_number": null, - "id_number": null, - "custom_value1": null, - "custom_value2": null, - "shipping_address1": null, - "shipping_address2": null, - "shipping_city": null, - "shipping_state": null, - "shipping_postal_code": null, - "shipping_country_id": null, - "contacts": [ - { - "id": 22, - "company_id": 1, - "user_id": 1, - "client_id": 22, - "first_name": "Shanna", - "last_name": "Batz", - "phone": "1-220-491-1694", - "custom_value1": null, - "custom_value2": null, - "email": "jlind@example.com", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "pakny7w8yulmqbxzcsvjry67spwbdpqu" - } - ], - "settings": { - "currency_id": "1" - } - }, - { - "id": 23, - "company_id": 1, - "user_id": 1, - "name": "Terrence Gottlieb", - "balance": "1420.52", - "paid_to_date": "1536.35", - "address1": "88309 Brant Throughway", - "address2": "Suite 372", - "city": "Darienborough", - "state": "Indiana", - "postal_code": "52533", - "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, - "is_deleted": 0, - "vat_number": null, - "id_number": null, - "custom_value1": null, - "custom_value2": null, - "shipping_address1": null, - "shipping_address2": null, - "shipping_city": null, - "shipping_state": null, - "shipping_postal_code": null, - "shipping_country_id": null, - "contacts": [ - { - "id": 23, - "company_id": 1, - "user_id": 1, - "client_id": 23, - "first_name": "Earl", - "last_name": "Ortiz", - "phone": "909-749-5390 x808", - "custom_value1": null, - "custom_value2": null, - "email": "marielle52@example.net", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "bnpnsvhehsb3z9a6wokoftthrcgce4jq" - } - ], - "settings": { - "currency_id": "1" - } - }, - { - "id": 24, - "company_id": 1, - "user_id": 1, - "name": "Kiera Klein", - "balance": "1698.01", - "paid_to_date": "1559.57", - "address1": "6681 Shaniya Avenue", - "address2": "Suite 414", - "city": "Rogahntown", - "state": "Virginia", - "postal_code": "50719", - "country_id": null, - "phone": null, - "private_notes": null, - "website": null, - "industry_id": null, - "size_id": null, - "is_deleted": 0, - "vat_number": null, - "id_number": null, - "custom_value1": null, - "custom_value2": null, - "shipping_address1": null, - "shipping_address2": null, - "shipping_city": null, - "shipping_state": null, - "shipping_postal_code": null, - "shipping_country_id": null, - "contacts": [ - { - "id": 24, - "company_id": 1, - "user_id": 1, - "client_id": 24, - "first_name": "Noel", - "last_name": "Johns", - "phone": "1-435-555-9515", - "custom_value1": null, - "custom_value2": null, - "email": "reynolds.penelope@example.com", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "zk33hprsygujrawrgplasd6cvgjf204r" - } - ], - "settings": { - "currency_id": "1" - } - }, - { - "id": 25, - "company_id": 1, - "user_id": 1, - "name": "Colin Klein III", - "balance": "1429.15", - "paid_to_date": "1383.96", - "address1": "892 Clifton Island Suite 616", - "address2": "Apt. 094", - "city": "Kerlukeland", - "state": "Montana", - "postal_code": "49798", - "country_id": null, - "phone": "", - "private_notes": "", - "website": "", - "industry_id": null, - "size_id": null, - "is_deleted": 0, - "vat_number": "", - "id_number": "", - "custom_value1": null, - "custom_value2": null, - "shipping_address1": null, - "shipping_address2": null, - "shipping_city": null, - "shipping_state": null, - "shipping_postal_code": null, - "shipping_country_id": null, - "contacts": [ - { - "id": 25, - "company_id": 1, - "user_id": 1, - "client_id": 25, - "first_name": "Jewel", - "last_name": "Feil", - "phone": "(306) 600-2965 x2850", - "custom_value1": null, - "custom_value2": null, - "email": "stanton.cesar@example.com", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "7sshly1ntinzafokrpqtoxzcx1dusgcz" - } - ], - "settings": { - "currency_id": "1" - } - }, - { - "id": 26, - "company_id": 1, - "user_id": 1, - "name": "b", - "balance": "0.00", - "paid_to_date": "0.00", - "address1": "", - "address2": "", - "city": "", - "state": "", - "postal_code": "", - "country_id": null, - "phone": "", - "private_notes": "", - "website": "", - "industry_id": null, - "size_id": null, - "is_deleted": 0, - "vat_number": "", - "id_number": "", - "custom_value1": null, - "custom_value2": null, - "shipping_address1": "", - "shipping_address2": "", - "shipping_city": "", - "shipping_state": "", - "shipping_postal_code": "", - "shipping_country_id": null, - "contacts": [ - { - "id": 26, - "company_id": 1, - "user_id": 1, - "client_id": 26, - "first_name": "", - "last_name": "", - "phone": "", - "custom_value1": null, - "custom_value2": null, - "email": "", - "is_primary": 1, - "send_invoice": 1, - "confirmed": false, - "last_login": null, - "password": null, - "remember_token": null, - "contact_key": "wvthy2q0k25hgdz8wbjuaoofyshfojvn" - } - ], - "settings": { - "currency_id": "1" - } + "created_at": "2020-10-30", + "updated_at": "2020-10-30", + "deleted_at": null } ], "products": [ { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "a", - "notes": "Incidunt aspernatur in quis quae quo voluptatibus et aut. Enim fugit nesciunt vel aut. Et provident qui et aut necessitatibus libero ut. Qui suscipit dolorem quibusdam. Ut corrupti sed vel quia.", - "cost": "8.3600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-11", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "1", - "notes": "", - "cost": "1.0000", - "quantity": "0.0000", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-11", - "updated_at": "2020-04-13", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "amet", - "notes": "Ab tempore qui ut ut praesentium. Non quia magni vel est qui et ipsum. Cupiditate voluptatibus maiores molestiae ex consequatur inventore hic.", - "cost": "8.8900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "itaque", - "notes": "Sit consequuntur iure sunt minus nostrum exercitationem blanditiis.", - "cost": "5.4800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "totam", - "notes": "Omnis nulla libero quasi ut illo. Cumque perspiciatis ipsum quasi nihil ut. Quo omnis dolorem neque.", - "cost": "8.4000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "perspiciatis", - "notes": "Aperiam fuga error qui. Eos necessitatibus adipisci ex. Temporibus alias unde illum beatae.", - "cost": "1.8000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "eos", - "notes": "Et placeat error consectetur nisi modi. Et aut error eum aliquid perspiciatis. Consequuntur earum deserunt dignissimos tempore maiores.", - "cost": "2.3400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "temporibus", - "notes": "Nulla in sit repellendus ipsa.", - "cost": "9.1100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "et", - "notes": "Omnis voluptas ullam vero laboriosam molestiae. Mollitia voluptatem voluptatem ut rerum occaecati fugit molestias. Perspiciatis praesentium similique hic. Sit harum dolores eum laborum sed est saepe. Ut nihil ducimus culpa dolor pariatur. Est quis est aut.", - "cost": "5.7700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "doloribus", - "notes": "Exercitationem sit officiis similique sit praesentium laboriosam ducimus. Quo nostrum labore qui magni tempore. Et sapiente et quia odit eum vel.", - "cost": "2.8400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "nulla", - "notes": "Aspernatur expedita in voluptate quis. Ducimus non dolores dolores neque.", - "cost": "6.4500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "voluptas", - "notes": "Rerum at et et corporis facere ipsa. Facere fugit non est. Dolore dolore et rerum odit.", - "cost": "8.5600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "qui", - "notes": "Consequatur itaque suscipit rerum officiis. Quod dignissimos nostrum unde consequuntur. Delectus et eos ut tenetur excepturi repellat qui.", - "cost": "3.7800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quis", - "notes": "Porro perferendis quia nesciunt modi. Molestiae assumenda qui recusandae ipsum aut.", - "cost": "7.0600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "non", - "notes": "Excepturi vero debitis commodi fugiat explicabo tenetur.", - "cost": "8.2400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quo", - "notes": "Est pariatur quo explicabo reiciendis iste eum.", - "cost": "1.7700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "eius", - "notes": "Qui maxime officiis vero minus ex occaecati.", - "cost": "8.1600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "commodi", - "notes": "Sit quibusdam iure sed porro aut sit. Unde repellat necessitatibus qui vitae ut corporis. Cumque magnam et praesentium velit corporis corporis ipsam consectetur.", - "cost": "9.3500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "eligendi", - "notes": "Laudantium odit quidem aut aut. Assumenda modi ab alias similique repellendus. Libero pariatur minus ut est. Et ex in deserunt minus. Tempore suscipit vel fugit sunt ducimus.", - "cost": "4.8100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "praesentium", - "notes": "Odit dolores iste facilis sequi sit mollitia.", - "cost": "8.4500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "necessitatibus", - "notes": "Id accusantium molestiae ipsum illo corporis. Eos impedit voluptatem ab. Minus a ratione voluptatem. Cum consectetur quaerat aut molestias voluptatem.", - "cost": "8.7600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "sint", - "notes": "Consequuntur id repellendus corrupti aliquam omnis optio.", - "cost": "1.4900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "dolor", - "notes": "Nulla ut eos deleniti nesciunt quia. Aperiam nisi omnis placeat nam quo magnam et. Quos quibusdam quia explicabo illum et.", - "cost": "4.9400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "repellendus", - "notes": "Quaerat enim perspiciatis autem voluptatem recusandae. Consequatur distinctio doloribus adipisci et architecto in. Voluptas et iusto eos vitae qui atque ipsum. Iste eum accusamus omnis et mollitia. Voluptatum unde est quia sed. Repellendus culpa quisquam dolore facilis.", - "cost": "3.7700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "odio", - "notes": "Possimus necessitatibus ad sunt laborum consequatur culpa. Voluptas autem ut libero vel. Fugit laudantium quia sit debitis suscipit. Eos inventore omnis aliquam fugiat.", - "cost": "2.5700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "nihil", - "notes": "Modi laboriosam et voluptas fuga aut totam. Ipsa reiciendis ab iusto est eius voluptatem.", - "cost": "6.5200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quaerat", - "notes": "Autem voluptates molestiae et incidunt non sit. Rem sint qui in magni. Officia amet autem nulla autem quas.", - "cost": "8.5800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quia", - "notes": "Eum deleniti esse veritatis explicabo modi omnis iste. Vel quam et velit beatae qui quaerat.", - "cost": "5.9800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "impedit", - "notes": "Nemo quidem aperiam fuga sed ullam ut. Error neque id iste quo. Illo quisquam eum voluptas eligendi explicabo. Sint autem laudantium unde et et qui consequatur possimus.", - "cost": "1.7900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "sapiente", - "notes": "Fugiat provident facere et aut. Ut porro saepe in. Voluptate voluptas aut nulla consequuntur nulla porro aperiam.", - "cost": "9.8500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "ratione", - "notes": "Rem cumque in voluptates qui rem exercitationem eos. Vel aliquid quisquam repudiandae veritatis. Nostrum incidunt numquam quia eum temporibus soluta sunt. Sit ipsum alias nam doloribus vel. Odio quod sit sed hic. Facere consequatur commodi enim consequatur et. Quas et nulla error.", - "cost": "1.9900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, + "custom_value1": "", + "custom_value2": "", "product_key": "ut", - "notes": "Dolores consequuntur molestiae laborum earum.", - "cost": "6.9800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "deserunt", - "notes": "Aut vitae dolor id. Id distinctio consequuntur nesciunt. Occaecati beatae itaque illum praesentium hic tempore inventore temporibus.", - "cost": "5.2900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "aut", - "notes": "Atque dolorum possimus hic aut illum voluptas et. Sunt velit saepe consequatur totam qui quis voluptatem. Aliquam eos repellendus perferendis eum inventore.", - "cost": "5.7600", + "notes": "Voluptatem voluptas tempore voluptatem eum velit sit. Commodi beatae veritatis ipsam molestiae odio. Soluta voluptas repellat omnis. Et sunt ratione molestiae quam. Doloremque quo ipsum aut laboriosam. Dolor omnis omnis eveniet optio. Aut ea eum aut.", + "cost": "6.9100", "quantity": "0.0000", "tax_name1": "", "tax_name2": "", "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-14", + "created_at": "2020-06-30", + "updated_at": "2020-09-26", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "labore", - "notes": "Sit ut ullam facilis cupiditate facere. Quia maiores voluptas optio et nobis voluptas. Nesciunt quam debitis esse itaque a est quam. Et minima illo commodi non aut. Et id nulla dolores veniam. Necessitatibus blanditiis natus in vel incidunt culpa laborum.", - "cost": "7.2300", + "custom_value1": "", + "custom_value2": "", + "product_key": "temporibus", + "notes": "Necessitatibus quos qui quia in autem perspiciatis harum. Omnis harum cumque nemo non cumque. Expedita corrupti ut aut aliquam nihil. Eum sit nesciunt quas odio alias beatae possimus.", + "cost": "8.1400", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "laboriosam", - "notes": "Dignissimos quia sunt est ratione voluptate. Nostrum necessitatibus itaque minima eveniet commodi architecto distinctio. Et saepe provident harum autem.", - "cost": "5.6100", + "custom_value1": "", + "custom_value2": "", + "product_key": "amet", + "notes": "Fugiat cumque cum quis rerum at officiis. Voluptas suscipit eaque ipsam omnis placeat dolores alias. Officia sunt maiores inventore iure.", + "cost": "3.9100", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "fugit", - "notes": "Commodi ducimus ut provident voluptates corporis. Rerum non doloribus tenetur non facere ut aperiam. Et dolorem omnis itaque vel.", - "cost": "2.9800", + "custom_value1": "", + "custom_value2": "", + "product_key": "cumque", + "notes": "Vitae animi debitis tempora consequatur. Aut quo deleniti qui libero pariatur voluptatum tenetur. Sit incidunt suscipit sit maiores.", + "cost": "2.0500", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "exercitationem", - "notes": "Ad soluta aut voluptatem beatae. Dolorem ullam aliquid nisi quo. Mollitia nihil aspernatur sed dolorem voluptates. Optio magnam ducimus pariatur magni. Autem ut maxime et velit. Aliquam ut est expedita alias vel.", - "cost": "8.6000", + "custom_value1": "", + "custom_value2": "", + "product_key": "qui", + "notes": "Voluptatem cum ullam quo esse cum. Enim sit quas suscipit tempore. Velit est sit et ex ratione facere.", + "cost": "9.8600", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, + "custom_value1": "", + "custom_value2": "", "product_key": "mollitia", - "notes": "Laborum odit accusamus fugiat vel impedit. Qui doloribus voluptatem est ipsum hic tempore.", - "cost": "4.5400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "cupiditate", - "notes": "Hic harum ut eius fugit. A et officia quis eum et delectus blanditiis. Eligendi totam laudantium sit. Ratione dolores voluptas molestias voluptatem voluptatem ut sunt. Natus quia suscipit eveniet sit consequuntur quos commodi. Et ad quia magnam ut numquam.", - "cost": "2.7000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "soluta", - "notes": "Exercitationem numquam incidunt quis quae quia qui. Culpa aliquam cum qui cum eos et dolores et. Aut temporibus culpa vel.", - "cost": "2.7600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "natus", - "notes": "Aut temporibus porro rerum assumenda. Fugit inventore accusamus natus exercitationem doloribus non. Doloremque quisquam quas quaerat et consectetur soluta. Nulla numquam expedita expedita rem ipsum nostrum officiis et.", - "cost": "7.6500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "sed", - "notes": "Quo cupiditate totam laudantium optio eos qui. Consectetur voluptate quis magnam optio explicabo perferendis. Esse nulla eum sint laboriosam non aliquid quis eum. Consequuntur fugit aut dolorem libero excepturi amet iste at. Est et minima aut ea adipisci.", - "cost": "4.8000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "consequatur", - "notes": "Voluptatem fugiat voluptatum animi unde. Quas ipsam est maxime sapiente. Odit deserunt rerum quia.", - "cost": "9.6100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "ea", - "notes": "Occaecati quaerat magni dolor labore vel. Nihil est ea eligendi blanditiis odit. Nobis occaecati qui quisquam eius. Iusto nisi nulla minima dolores.", - "cost": "5.9800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "minus", - "notes": "Ad molestias et autem voluptatem saepe ea. Corrupti porro praesentium blanditiis minima fugit fuga. Eaque tempore dicta et soluta.", - "cost": "7.1600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "velit", - "notes": "Odio in qui qui nihil dolor. Veniam rem vel praesentium rerum velit atque. Quo nihil voluptas alias dolorem aliquam voluptatem.", - "cost": "7.2800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "fuga", - "notes": "Et et expedita voluptas vel. Quisquam sint sunt debitis et. Veniam aspernatur animi et magni ipsa sed ea perferendis. Quo sint repellendus est placeat est fuga voluptates.", - "cost": "5.2900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "perferendis", - "notes": "Ut eum ab doloribus recusandae qui et aut. Est est illo in aut ipsum vel.", - "cost": "9.7900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "libero", - "notes": "Nemo eaque quo doloribus eligendi totam qui. Et nostrum sit repudiandae. Omnis quas fugit officia ut possimus. Et est ipsum labore voluptatem. Accusantium ratione delectus harum eligendi et praesentium. Veritatis ea aut non nihil pariatur itaque. Ut ducimus et et fugit ut quaerat qui animi.", - "cost": "2.1400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "placeat", - "notes": "Quia culpa non fugiat aut expedita veritatis est. Nesciunt dolor harum delectus consequatur possimus incidunt. Maiores eius aut aut nihil.", - "cost": "2.0200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "corporis", - "notes": "Sed beatae quo minus ipsa.", - "cost": "7.6800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "provident", - "notes": "Earum mollitia sapiente saepe vel et itaque. Pariatur dolor et consectetur architecto dolores.", - "cost": "7.0000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "ipsam", - "notes": "Reiciendis sit ipsa deleniti iste. Et unde magni iste pariatur fugiat sit. Suscipit qui minus non dicta.", - "cost": "5.6500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "reiciendis", - "notes": "Tempore qui delectus similique veritatis commodi. Sed quia et qui repudiandae.", - "cost": "6.6100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "minima", - "notes": "Distinctio ea molestiae sunt suscipit iste vitae cum.", - "cost": "9.7700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "error", - "notes": "Mollitia iste hic beatae sunt. Suscipit est doloribus et vitae consequatur perspiciatis dolor velit. Porro ea non veritatis culpa quaerat sit voluptas. Molestiae distinctio repellendus eius suscipit deleniti.", - "cost": "3.5000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "odit", - "notes": "Quae molestiae quis cum consequatur eius perspiciatis. Repudiandae aliquam voluptas nisi doloremque rerum quo quia. Odio sed a amet aperiam in ipsum placeat. Eos qui ut totam praesentium dignissimos.", - "cost": "6.6700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "nemo", - "notes": "Doloribus delectus aut id natus. Officiis tenetur alias architecto eum. Tenetur dignissimos sequi dolorem est ab velit dolores.", - "cost": "4.7600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "incidunt", - "notes": "Quas animi accusamus deleniti eum.", - "cost": "2.9400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "similique", - "notes": "Nobis quia dolor fugit. Sunt nulla sapiente eum sunt voluptatibus ea necessitatibus. Vel voluptates et aut mollitia.", - "cost": "7.5100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "veniam", - "notes": "Esse eveniet reprehenderit molestias provident harum sint.", - "cost": "5.1600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quisquam", - "notes": "Voluptas impedit saepe facilis est. Nobis in fugit asperiores in praesentium aut veniam. Ea minus autem ipsam sunt commodi.", - "cost": "9.1600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "excepturi", - "notes": "Quia ut et voluptatem consequatur. Quam consequatur ea velit sed. Fugiat voluptatibus eos laboriosam provident. Illo laudantium aperiam voluptatem sit quaerat magni.", - "cost": "6.2400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "id", - "notes": "Fuga laborum cupiditate tempora qui dolorem enim. Ut animi magnam harum quaerat accusamus ea. Dolor et fugiat et ullam illo.", - "cost": "3.1400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "tenetur", - "notes": "Quisquam voluptatibus dolorem minima ut eius et asperiores error. Aut delectus consequatur modi in rerum nisi dolore nihil. Ipsam facilis voluptas alias sed ipsa autem qui voluptatem.", - "cost": "9.4200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "ullam", - "notes": "Ea nulla quaerat aut et esse. Rerum et commodi enim aliquid. Consequatur sint aut occaecati rerum qui. Ut in nam rerum aut asperiores voluptate. Aliquid in velit est eos.", - "cost": "8.4900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "aliquid", - "notes": "Voluptatem voluptas amet dolorem labore voluptas. Et harum possimus saepe maxime. Numquam dolores dolores saepe quo.", - "cost": "7.3300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "aspernatur", - "notes": "Quam et et veritatis distinctio sit et. Sed repellendus qui expedita hic.", - "cost": "9.2800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quos", - "notes": "Et natus veniam illum ipsum voluptatem culpa. Asperiores rem et sapiente numquam nihil. Architecto rerum alias et hic velit deserunt unde.", - "cost": "9.7500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "illum", - "notes": "Aut dolor mollitia omnis. Et dolores fugit repellat libero explicabo. Impedit voluptas et non ut est.", - "cost": "2.7300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "optio", - "notes": "Aut similique qui aut magnam. Occaecati sint ut quos. Delectus non enim officiis maxime.", - "cost": "6.1900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "explicabo", - "notes": "Vitae totam enim iste. Reprehenderit ea exercitationem molestiae odio nemo error iusto. Fuga ea corrupti nesciunt dolorem officiis. Nostrum quis quo eaque debitis autem modi voluptatem et.", - "cost": "5.2300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "nam", - "notes": "Distinctio blanditiis nihil ea nihil quia. Sed aut sit quia provident eum.", - "cost": "2.1900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "autem", - "notes": "Est praesentium consequatur a occaecati ex. Voluptatum minus non numquam.", - "cost": "3.8700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "sit", - "notes": "Dicta assumenda natus a et. Ut pariatur et qui aperiam quo voluptatem. Sit corporis quia autem facere. Eligendi aliquid quas tempore voluptas consequatur odio eius omnis.", - "cost": "4.6500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "est", - "notes": "In et inventore totam. Deserunt voluptatem expedita asperiores reprehenderit dolorum. Soluta cumque impedit sunt quia id eos aperiam. Officia recusandae ut facilis maiores quibusdam repellat odio.", - "cost": "4.0100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "assumenda", - "notes": "Voluptas iusto recusandae possimus quisquam saepe sed laborum. Aut eum quod harum aperiam sit quis velit. Non iusto et enim laudantium aut nisi.", - "cost": "2.0200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "ab", - "notes": "Qui molestiae iste omnis quisquam facere quaerat et. Nam et ut voluptas sunt minus dolor doloremque esse. A soluta maxime et labore omnis aperiam at.", - "cost": "6.5800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "dolores", - "notes": "Sit molestiae et reiciendis in. Qui sunt culpa nemo error.", - "cost": "9.5000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "voluptate", - "notes": "Quia iure eos eum voluptatibus. At fugiat dolorum est pariatur saepe placeat. Illum aliquid nulla dolor hic ducimus quas consequatur exercitationem. Quis error sed ipsum aut debitis eos odio.", - "cost": "1.8100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "earum", - "notes": "Iure nesciunt temporibus ea non labore.", - "cost": "7.1800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "recusandae", - "notes": "Natus sed nisi dolor. Ea et rerum ea dolor mollitia. Eum aut sit sapiente voluptatem sint magni.", - "cost": "9.1400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "tempora", - "notes": "Et esse dolorem odit aliquam. Porro molestiae distinctio esse pariatur dolorem cum. Facilis non ipsam doloribus.", - "cost": "8.7900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "dignissimos", - "notes": "Est esse repellat doloremque temporibus ex voluptatibus. Eum velit repudiandae sequi quia et sunt et.", - "cost": "5.4700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "pariatur", - "notes": "Ullam quis dicta vel nostrum ut non aut. Aliquam quo et ipsum non. Odit est veniam eveniet odio quas dolor.", - "cost": "2.2200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "at", - "notes": "Neque quos aut temporibus impedit.", - "cost": "7.5400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "ipsum", - "notes": "Sit sit omnis reprehenderit. Eos odit saepe voluptas necessitatibus voluptate. Alias ut voluptatem mollitia nesciunt cumque ut qui. Illum qui atque dignissimos rerum sint consequuntur sunt.", - "cost": "6.4300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "asperiores", - "notes": "Error reiciendis est eum sit mollitia. Iste animi est sunt tenetur possimus ex sint.", - "cost": "3.3600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "facere", - "notes": "Qui tempora commodi voluptatem molestiae optio distinctio quidem optio.", - "cost": "3.4400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "sunt", - "notes": "Neque voluptas inventore rerum et et odit quia. Dolor et incidunt minima. Totam suscipit quia perferendis ratione earum ut nesciunt fugiat. Quibusdam et consequatur quas ut est cupiditate tempora.", - "cost": "2.0700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "officia", - "notes": "Accusamus reprehenderit illum aliquam culpa velit delectus. Omnis expedita quae est autem ut molestiae. Ex nisi dicta et ut est dicta.", - "cost": "8.4900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "magni", - "notes": "Aut omnis quo beatae consequatur sequi autem.", - "cost": "5.0700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "laborum", - "notes": "Aut at et earum. Quam quod maxime iure enim temporibus eos aut. Et et a voluptas ut autem.", - "cost": "4.3700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "laudantium", - "notes": "Laborum sequi odio in placeat consequatur. Atque tenetur quos sit quo tempora vel. Explicabo unde libero qui ab ut.", - "cost": "7.7200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "modi", - "notes": "At voluptatibus a minus. At beatae ut vel est quidem necessitatibus. Sunt illum sint quia.", - "cost": "1.2500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quibusdam", - "notes": "Labore veniam ipsa perferendis eos molestiae aut. Non enim occaecati magni in modi quo.", - "cost": "1.8600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "vel", - "notes": "Architecto molestiae praesentium ad et dolores voluptate. Doloribus dolor alias alias dolores asperiores fuga officiis eum. Fugit est in enim. Ipsam eum enim cupiditate voluptatum dolor et.", - "cost": "5.0700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quod", - "notes": "Consequatur harum dolorem autem molestias at.", - "cost": "5.4900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "porro", - "notes": "Quo sit aliquid quis harum.", - "cost": "4.8300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "vitae", - "notes": "Ratione recusandae quia et iure et laborum.", - "cost": "7.4200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "molestias", - "notes": "In adipisci corrupti quae ea. Unde itaque et quasi alias in.", - "cost": "7.8800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "rerum", - "notes": "Rerum explicabo ut et fuga est recusandae. Fuga ea id nostrum quis architecto. Illo porro temporibus ut.", - "cost": "1.9700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "iste", - "notes": "Qui qui quisquam vitae sed fuga id voluptatibus dolores. Nulla magni qui vel eveniet ut in. Quasi nostrum non soluta est eaque nostrum quis aut. Id in expedita consequatur.", - "cost": "6.8900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "distinctio", - "notes": "Odio asperiores temporibus quaerat aperiam aut iure cumque. Vero qui dolores eum numquam magnam.", - "cost": "6.5600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "saepe", - "notes": "Aliquid recusandae exercitationem nemo rerum non nulla.", - "cost": "1.8600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "ducimus", - "notes": "Voluptates voluptatum rem reiciendis labore occaecati aut vel. Ipsam et nulla ut odit. Et ab ipsa corrupti impedit omnis voluptas qui. Veritatis facilis et id ut omnis nihil.", - "cost": "8.7200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "enim", - "notes": "Qui ad impedit possimus ut quo eum qui.", - "cost": "2.7500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "delectus", - "notes": "Doloremque dolorem ut non et perferendis. Dolores velit commodi quibusdam aliquid repellat et. Voluptatem blanditiis possimus cupiditate vitae nobis excepturi. Sunt temporibus quasi voluptates nisi hic eos tempore ut. Aut repellendus aspernatur voluptatem neque aut non.", - "cost": "7.1300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "repellat", - "notes": "Officiis ipsa aut hic error explicabo saepe ipsa.", - "cost": "9.0100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "voluptatem", - "notes": "Dolorem consequatur vitae impedit aliquam dolores sed at officia. Voluptatem sint in voluptatem nemo excepturi modi. Sint accusamus deserunt velit esse sapiente qui.", - "cost": "7.7100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "dolorem", - "notes": "Omnis enim hic molestias rem iste. Dolorem natus et unde nam similique. Autem earum quis eum.", - "cost": "6.8700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "illo", - "notes": "Ad voluptatibus molestias repellat voluptates. Et sit laboriosam saepe aliquid. Consequuntur eligendi vitae deserunt aspernatur.", - "cost": "6.5000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-18", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "2", - "notes": "2", - "cost": "22.0000", - "quantity": "0.0000", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-21", - "updated_at": "2020-02-21", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "23", - "notes": "223", - "cost": "11.0000", - "quantity": "0.0000", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-02-21", - "updated_at": "2020-02-21", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "suscipit", - "notes": "Consequatur quae ea ut voluptatum et fugiat. Alias amet accusamus aperiam et.", - "cost": "7.3700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quas", - "notes": "Maiores alias quas cupiditate alias in hic dolor. Dolores harum omnis omnis non non temporibus.", - "cost": "1.3400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "accusamus", - "notes": "Ab ratione adipisci quo temporibus. Qui molestiae possimus voluptas qui quo sapiente. Dolor totam blanditiis doloremque.", - "cost": "8.8100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "inventore", - "notes": "Consequuntur quae eaque quos eveniet maiores. Animi repellendus ipsum quidem est incidunt dolorum non nostrum. Libero molestias vel maiores sit numquam iure facilis cum.", - "cost": "4.4200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "molestiae", - "notes": "Beatae tempora totam aut expedita cumque quo veniam. Impedit rerum commodi animi eos cupiditate quos. Animi quia explicabo quia ut magni ut.", - "cost": "2.5300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "neque", - "notes": "Sapiente dolorem ea pariatur impedit. Quae ut similique quod dolor. Quis facere qui ad.", - "cost": "9.7300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "reprehenderit", - "notes": "Consequatur qui hic quod qui. Ea nobis non sed nobis fugiat autem. Ad aliquid aut placeat ducimus dicta odit quidem. Et sunt sed et accusantium.", - "cost": "1.4500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "omnis", - "notes": "Beatae quibusdam fugit laborum modi. Quae at in est praesentium. Consequatur omnis ipsum ullam cum.", - "cost": "4.6500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "deleniti", - "notes": "Id alias rerum alias et. Optio facilis sit id.", - "cost": "1.5000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "atque", - "notes": "Laborum non exercitationem non vero et. Amet nostrum et quasi sint vel. Labore sit ullam non dolorum itaque voluptatem exercitationem nobis. Rem magnam doloremque qui qui.", - "cost": "2.6500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "eaque", - "notes": "Voluptates pariatur sequi natus voluptatem maxime nostrum natus. Nihil debitis autem magnam et. Fuga officia deleniti rem sunt doloribus veritatis quos modi. Ut sit illum quia sit voluptatum.", - "cost": "6.5800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "repudiandae", - "notes": "Fugiat doloribus enim deleniti amet similique sint. Consequuntur hic et fugiat enim officia at.", - "cost": "1.7200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "facilis", - "notes": "Et et voluptatem aspernatur recusandae impedit repellat labore. Ipsa a officiis amet nostrum error.", + "notes": "Id enim voluptatibus consectetur quidem aut neque earum. Odit perferendis at eos nam. Consequuntur aperiam ab vel fugit asperiores eos.", "cost": "3.1900", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, + "custom_value1": "", + "custom_value2": "", + "product_key": "aut", + "notes": "Autem eum reprehenderit et temporibus sint nobis.", + "cost": "2.5900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", "product_key": "culpa", - "notes": "Fugiat error distinctio consectetur. Libero sunt quis eius quae cumque officia et.", - "cost": "6.9500", + "notes": "Maxime dicta rerum doloremque saepe ullam nobis.", + "cost": "7.0700", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "esse", - "notes": "Occaecati illum aut tempore magni libero. Sit voluptatibus eos consectetur reiciendis. Molestiae corrupti qui et asperiores cumque. Ducimus qui maiores ad asperiores.", - "cost": "9.2500", + "custom_value1": "", + "custom_value2": "", + "product_key": "labore", + "notes": "Fugiat esse est amet. Ut repellendus hic sapiente est aut non magni. Perferendis repudiandae occaecati repellat cum doloribus.", + "cost": "3.1300", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "animi", - "notes": "Ut in aut dicta. Vel saepe alias ut. Reprehenderit in nesciunt placeat quia alias facilis.", - "cost": "6.7300", + "custom_value1": "", + "custom_value2": "", + "product_key": "et", + "notes": "Sequi est quasi amet aut consequuntur soluta.", + "cost": "2.8400", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "consectetur", - "notes": "Minus dolor eum animi recusandae molestiae suscipit molestiae. Ea cum omnis est ut optio. Consequatur similique quis magnam mollitia omnis ad voluptatem.", - "cost": "8.8100", + "custom_value1": "", + "custom_value2": "", + "product_key": "ea", + "notes": "Delectus sit dolorem saepe ratione non maxime fugit neque. Consequuntur provident fuga similique sed quos. Iure cumque officia est minima sunt magnam qui. Architecto hic nihil doloribus rerum.", + "cost": "2.2900", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "dicta", - "notes": "Dolorum debitis beatae id officia. Dolor in qui reiciendis debitis deserunt. Labore impedit voluptatem consequatur. Ut ut velit recusandae.", - "cost": "9.5400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "architecto", - "notes": "Fugit et minima ullam accusantium. Voluptas possimus saepe nihil dicta dicta veniam.", - "cost": "8.3700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "eum", - "notes": "Perferendis sint quo dolores vitae voluptas. Officiis omnis modi inventore sed. Dolorem non incidunt molestias iste.", - "cost": "8.7600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "doloremque", - "notes": "Quam repellat voluptatibus ut tempore odio est. Atque id consectetur voluptatibus velit fugit mollitia. Sapiente officia voluptas ducimus quo rerum eos est. Rerum repellendus aperiam ea eligendi.", - "cost": "2.1900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quam", - "notes": "Inventore laboriosam id sit amet ab dolorum. Eos iusto sint sit velit.", - "cost": "7.5100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "rem", - "notes": "Voluptatem omnis facilis ut ratione veritatis. Accusamus est magnam est quam veniam officia fugit non. Dignissimos voluptatibus consequatur perspiciatis non.", - "cost": "10.0000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "dolorum", - "notes": "Suscipit sed debitis ut omnis. Eum sunt illum est.", - "cost": "5.9800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "nobis", - "notes": "Porro at illo dicta vitae et necessitatibus molestias sit. Non et ullam expedita dolor dolorem praesentium vel doloremque. Repudiandae sint eveniet alias itaque cupiditate est id. Quas sint esse labore unde ex.", - "cost": "5.3700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "blanditiis", - "notes": "Omnis incidunt ad beatae quia omnis itaque assumenda sint.", - "cost": "2.5200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "maxime", - "notes": "Culpa est maiores neque fugit esse. Iure doloribus quod et voluptatibus et. Autem ratione autem minima vel delectus est quaerat. Nam nihil placeat exercitationem recusandae sint quis.", - "cost": "5.5200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quidem", - "notes": "Quia consectetur rem corrupti et et saepe sint aspernatur.", - "cost": "7.0000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "vero", - "notes": "Et ut ea qui corporis. Dolores id culpa tenetur impedit ab porro qui. Mollitia maxime qui porro et et incidunt. Eos sed quaerat itaque itaque magnam fugit.", - "cost": "7.7000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "consequuntur", - "notes": "Rem est magnam repellat.", - "cost": "1.9200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "veritatis", - "notes": "Dolore et quod amet inventore porro quia dolorem eos.", - "cost": "3.9600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "fugiat", - "notes": "Magni aut voluptatem alias possimus non omnis id. Nihil eum eveniet pariatur aspernatur quidem.", - "cost": "3.0300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "hic", - "notes": "Sint esse iure ullam id. Voluptatem animi nobis delectus dolores magnam officiis. Tempore nemo libero quia quia fuga asperiores voluptatem.", - "cost": "3.0200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "cum", - "notes": "Eligendi et deserunt aliquid sunt. Molestiae aperiam est sapiente tempora.", - "cost": "4.1100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "maiores", - "notes": "Voluptate ipsum maiores asperiores veritatis praesentium nihil soluta. Perspiciatis deserunt eum nulla debitis voluptate. Accusantium autem ipsam expedita assumenda eaque magni hic. Inventore alias dolorem assumenda et.", - "cost": "4.1500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "alias", - "notes": "Rerum reiciendis iusto dolores et nihil atque. Voluptatum officia necessitatibus laborum soluta cumque aperiam. Ab reiciendis aut vitae. Est nisi quidem eaque harum et aut.", - "cost": "9.8100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "debitis", - "notes": "Et facere ea aut. Cupiditate iusto quaerat incidunt corporis sunt hic. Voluptatum et voluptas laudantium harum voluptas nisi.", - "cost": "4.1300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "tempore", - "notes": "Est adipisci vel animi possimus pariatur ratione assumenda.", - "cost": "2.1800", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "harum", - "notes": "Quibusdam temporibus quae laborum ut culpa. A necessitatibus sint culpa illum id aspernatur vel vel. Velit et eveniet id voluptatum labore ad in. A ratione nesciunt modi aliquam explicabo et perspiciatis voluptate.", - "cost": "1.6900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "officiis", - "notes": "Cupiditate reprehenderit blanditiis ullam reprehenderit sequi et et.", - "cost": "9.0000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quae", - "notes": "Et placeat nulla eos ut aliquid aut. Error vitae numquam asperiores deserunt. Quaerat aut eum necessitatibus consequatur.", - "cost": "4.0500", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "unde", - "notes": "Provident aut quod necessitatibus qui harum. Vel autem nulla id vel corrupti et qui.", - "cost": "7.9100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "voluptatibus", - "notes": "Corporis voluptates est dolorum. Illo eveniet iure sunt. Dolor consequuntur assumenda occaecati. In magni velit consequatur ad eos deleniti omnis reprehenderit.", - "cost": "1.7000", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "ex", - "notes": "Facilis non a quidem delectus quae est molestiae. Reiciendis voluptas veniam vitae non natus. Non perferendis earum dolore pariatur qui.", - "cost": "7.6100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "sequi", - "notes": "Et enim itaque nisi voluptas vel.", - "cost": "1.1900", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "nostrum", - "notes": "Alias aut saepe est voluptas quo a rerum. Tenetur consectetur consectetur accusantium. Et id molestiae asperiores eius.", - "cost": "2.2400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "occaecati", - "notes": "Laudantium minima placeat et distinctio officia. Sed similique ut iure reiciendis et sint delectus.", - "cost": "3.3100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "possimus", - "notes": "Et aliquam ut blanditiis adipisci temporibus quisquam est consectetur.", - "cost": "1.4400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "in", - "notes": "Reprehenderit consequuntur aliquid est quae. Sint et eos fuga eveniet. Adipisci voluptate incidunt atque et laborum.", - "cost": "9.1200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "expedita", - "notes": "Autem veritatis a repellendus voluptatum. Beatae commodi sit necessitatibus animi omnis. Rerum aut commodi totam voluptatem. Et deleniti dolores sed voluptatem a accusamus. Labore est fugiat eum dolores voluptas hic. Est similique sit sed maiores.", - "cost": "3.0100", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "aperiam", - "notes": "At enim iste voluptas enim aut qui. Qui animi ipsam cupiditate vel.", - "cost": "3.5300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "iure", - "notes": "Illum sit illo facilis et sunt modi. Aut magnam asperiores ut quibusdam id dignissimos. Ab tempora aut est cumque.", - "cost": "9.7300", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "nisi", - "notes": "Et nisi qui aut atque quos. Nihil ex laborum sunt. Autem quibusdam nulla est omnis perspiciatis et dolores.", - "cost": "2.0400", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "nesciunt", - "notes": "Unde consequatur ea consequuntur hic pariatur fuga et. Itaque consequuntur consectetur sunt sit cumque.", - "cost": "3.8700", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "ipsa", - "notes": "Sequi nobis ea quae. Minima dolores corrupti et dolor. Qui ipsum quod labore hic.", - "cost": "6.3600", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "ad", - "notes": "Minima et vel itaque non facere. A rerum aut nesciunt non mollitia doloribus. Ex quod quae veritatis tempore.", - "cost": "2.3200", - "quantity": "0.0000", - "tax_name1": null, - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - }, - { - "company_id": 1, - "user_id": 1, - "custom_value1": null, - "custom_value2": null, + "custom_value1": "", + "custom_value2": "", "product_key": "corrupti", - "notes": "Nihil quibusdam dolor doloremque sed. Laudantium alias ipsum doloribus inventore. Omnis omnis qui est mollitia. Quo dolore non nulla adipisci ipsa.", - "cost": "3.2300", + "notes": "Quam repudiandae et sunt quasi. Iusto veniam a consequatur qui laborum adipisci. Similique ut officiis maiores sunt. In repudiandae et voluptatem temporibus dolores expedita.", + "cost": "5.2000", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "aliquam", - "notes": "Voluptatibus deserunt blanditiis omnis aut.", - "cost": "3.5600", + "custom_value1": "", + "custom_value2": "", + "product_key": "veritatis", + "notes": "Ipsam dignissimos corrupti voluptate delectus et. Qui omnis voluptatem ullam.", + "cost": "2.2200", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "quasi", - "notes": "Autem quis et soluta magnam dolores blanditiis.", - "cost": "1.4000", + "custom_value1": "", + "custom_value2": "", + "product_key": "est", + "notes": "Itaque exercitationem minus quidem nostrum quia quo in dolor. Et aut ut quod et. Rerum et distinctio autem quibusdam magni quaerat. Fugiat nihil consequatur odio nam illo adipisci libero. Voluptas ut velit modi non.", + "cost": "5.3500", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "eveniet", - "notes": "Omnis minima et ullam culpa. Alias laborum ut sunt temporibus eum eveniet quod. Voluptatem optio ipsum dignissimos optio porro minima qui veritatis. Perspiciatis eius hic dicta harum. Dolores omnis quia harum aut neque reprehenderit autem.", - "cost": "7.0300", + "custom_value1": "", + "custom_value2": "", + "product_key": "possimus", + "notes": "Est totam consequatur voluptatem ad et autem ducimus. Reiciendis architecto modi quia occaecati. Molestias nisi sunt eum est blanditiis.", + "cost": "3.8200", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "magnam", - "notes": "Qui dolores molestiae ut optio. Velit provident maiores dolorem libero provident molestiae. Eos soluta in praesentium vitae nam laborum saepe. Qui veniam laboriosam quam corporis enim blanditiis. Quia reprehenderit dolore reprehenderit est.", - "cost": "8.7200", + "custom_value1": "", + "custom_value2": "", + "product_key": "ipsam", + "notes": "Voluptate reprehenderit sed dolores eos voluptatem. Qui odit inventore omnis quam voluptas.", + "cost": "2.7900", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "adipisci", - "notes": "Voluptas repudiandae consequuntur illum. Aut facere est sint et. Et cumque nobis similique corrupti odio suscipit.", - "cost": "3.2900", + "custom_value1": "", + "custom_value2": "", + "product_key": "a", + "notes": "Voluptas autem iste dicta ut. Officiis velit et totam eius error recusandae atque. Rem dolore ut aliquid non. Unde accusamus quidem quaerat.", + "cost": "5.8500", + "quantity": "0.0000", + "tax_name1": "", + "tax_name2": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-10-05", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "itaque", + "notes": "Earum velit omnis ut quas ratione aut repudiandae. Eum nihil incidunt ut officiis cupiditate laudantium qui. Nulla error officiis molestiae explicabo eaque. Maiores sed quis sunt aut est modi est.", + "cost": "8.1200", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "numquam", - "notes": "Deserunt necessitatibus corrupti animi odio impedit maxime asperiores.", - "cost": "2.1700", + "custom_value1": "", + "custom_value2": "", + "product_key": "odio", + "notes": "Autem vel et voluptatem. Quaerat non dolore facere et. Natus aperiam sint ratione iste earum consequatur deserunt. Rerum ducimus temporibus totam neque. Non quas deserunt rerum. Aut temporibus dolorem ut blanditiis. Error et mollitia impedit sunt.", + "cost": "8.9000", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "accusantium", - "notes": "Voluptatem sed optio aut eum sunt quod quod. Ut qui aliquid numquam iure consequatur quo. Ea omnis sit minus nostrum autem.", - "cost": "5.7900", + "custom_value1": "", + "custom_value2": "", + "product_key": "dolorem", + "notes": "Est voluptas quod laboriosam atque cumque. Et ut optio adipisci aspernatur in omnis. Quia quam a dignissimos ducimus optio labore. Consequatur iste voluptas incidunt.", + "cost": "6.0400", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, + "custom_value1": "", + "custom_value2": "", + "product_key": "laboriosam", + "notes": "Dolores atque omnis similique modi.", + "cost": "2.5000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "voluptatibus", + "notes": "Voluptatem alias qui architecto. Saepe est nostrum perferendis voluptatem. Quasi magni error voluptas consequatur qui vel. Voluptatibus atque facilis sed tenetur veniam.", + "cost": "3.1700", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "dolores", + "notes": "Eveniet impedit ut sunt tempore qui laudantium. Sequi ea eius et eius. Quos dolores qui animi similique.", + "cost": "3.2700", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "occaecati", + "notes": "Quae repudiandae harum iusto est. Rerum autem consequatur eligendi voluptas est vel. Sint ipsa officiis eaque commodi pariatur tempore. Ipsum necessitatibus eos est et.", + "cost": "2.2700", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "rerum", + "notes": "Illum est voluptates perspiciatis ex necessitatibus. Veritatis laborum veritatis laborum non. Impedit aut quis impedit autem ut libero.", + "cost": "2.9500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "voluptates", + "notes": "Similique molestias fugiat ut ad et. Est expedita enim voluptatibus quia quo. Assumenda saepe voluptatem aut culpa consequatur provident.", + "cost": "5.8200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "excepturi", + "notes": "Eveniet aliquid veniam dolorem adipisci molestiae nulla soluta. Omnis dicta vero praesentium exercitationem. Non eius consequuntur quia quibusdam earum laborum. Eius maiores est vitae quam voluptate.", + "cost": "1.4900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", "product_key": "voluptatum", - "notes": "Voluptas nulla et numquam eos deleniti quibusdam. Adipisci dicta id et. Omnis non tenetur dignissimos beatae ea.", - "cost": "8.5000", + "notes": "Veritatis hic est cum qui aut. Aliquam aliquam nisi voluptatem esse ullam. Alias voluptatem perferendis numquam vero.", + "cost": "3.4500", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "dolore", - "notes": "Aliquid quia aliquam dicta porro distinctio id. Tempora neque voluptatem magnam est temporibus nam cum. Alias cumque quaerat consequatur rerum ad labore sint. Esse illum facere laboriosam.", - "cost": "1.6800", + "custom_value1": "", + "custom_value2": "", + "product_key": "dolor", + "notes": "Hic laudantium ipsam blanditiis est. Nisi et exercitationem a aspernatur minima. Impedit quia ex ut quis doloremque.", + "cost": "4.6300", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "beatae", - "notes": "Provident possimus dolore sequi. Qui inventore in tenetur doloribus molestiae eaque asperiores. Excepturi est ratione laboriosam tenetur iste qui odio. Exercitationem ut accusantium veritatis voluptatem quia.", + "custom_value1": "", + "custom_value2": "", + "product_key": "laborum", + "notes": "Repellat temporibus impedit autem quas aut corporis. Neque ea nam ducimus velit inventore. Et architecto soluta molestiae aut natus ut. Nihil blanditiis consequuntur et libero ex. Quae adipisci unde totam vero velit. Tenetur quia similique voluptatem.", + "cost": "6.8900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "officia", + "notes": "Quam neque voluptatum ea enim et. Sed rem ipsam repellendus. Quidem a minus dolorem quisquam. Sunt rerum tempore nisi dicta iste vero.", "cost": "1.2400", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "cumque", - "notes": "Unde delectus quis aliquid saepe rerum unde. Aut ipsa voluptatibus ut quas et ut et. Quos laudantium sint et et.", + "custom_value1": "", + "custom_value2": "", + "product_key": "dolorum", + "notes": "Provident sunt perspiciatis perspiciatis et soluta neque. Omnis repellat voluptatem laborum nostrum. Et quidem laudantium maxime iste hic enim possimus.", + "cost": "8.7800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "consequatur", + "notes": "Ut autem voluptatem minus. Vel dolor eligendi ut itaque. Eaque illum impedit atque odit placeat quia dolore quaerat. Quia illo et eveniet enim.", + "cost": "7.3600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "minima", + "notes": "Perspiciatis ullam ea et rerum deleniti vitae. Voluptas voluptate mollitia aspernatur ut. Excepturi est ex sapiente.", + "cost": "8.1000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "facilis", + "notes": "Dolore sunt fuga libero. Dicta nihil et quam molestiae laboriosam. Voluptatum porro quia quos.", + "cost": "5.4800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "eveniet", + "notes": "Dolor ut harum quia voluptatibus. Ut eaque voluptatem vero occaecati. Minima numquam facilis et omnis cum. Perferendis sed itaque autem. Dignissimos eligendi voluptas nesciunt distinctio. Quod esse libero voluptatibus et. Explicabo eos molestias delectus voluptatem enim voluptatem.", + "cost": "2.4400", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "rem", + "notes": "Et ut voluptatem veritatis. Commodi nostrum quo velit iure ratione molestiae et. Et magnam provident sed rerum accusantium qui. Est beatae et id ut et id rerum.", + "cost": "8.0000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "autem", + "notes": "Dicta ut ut et sunt.", "cost": "9.0900", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, - "product_key": "voluptates", - "notes": "Aspernatur fuga quis eius et qui quam voluptas. Cum reprehenderit magni illo saepe sapiente sint. Saepe voluptates veniam sapiente consequatur. Et quos exercitationem voluptatibus in perspiciatis.", - "cost": "3.0100", + "custom_value1": "", + "custom_value2": "", + "product_key": "tenetur", + "notes": "Ea quod magnam quidem enim nemo laborum. Quae et nemo veniam. Consequatur corporis maiores modi alias quia qui animi.", + "cost": "9.6700", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { "company_id": 1, "user_id": 1, - "custom_value1": null, - "custom_value2": null, + "custom_value1": "", + "custom_value2": "", + "product_key": "id", + "notes": "Occaecati magnam voluptatibus voluptates soluta ut. Labore numquam inventore sed eos maiores repellat ut. Veniam odit qui aspernatur.", + "cost": "2.3500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quos", + "notes": "Dolor eligendi quam qui commodi ut ut et. Nesciunt nobis officiis eum dolores est. Est nemo minus omnis nostrum itaque.", + "cost": "7.5800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "tempore", + "notes": "Esse quasi ut totam occaecati. A est ratione voluptate maiores omnis. Porro quis aut nihil saepe maiores deleniti.", + "cost": "2.5800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "atque", + "notes": "Ut et officiis voluptas ullam neque adipisci eos. Nihil tempore sequi aliquam sed explicabo iusto quia ab. Eveniet voluptas repudiandae quaerat ad.", + "cost": "1.5900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "sit", + "notes": "Quo omnis quia perspiciatis quia aut labore. Est id officiis qui maxime facere. Omnis ut reprehenderit et inventore aut consequatur quas reprehenderit. Molestias quae optio nam qui aut alias.", + "cost": "7.9800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "nobis", + "notes": "Eaque est omnis ipsam deleniti atque qui. Necessitatibus et non accusantium sequi. Dicta similique et illo. Harum est quis doloribus. Cupiditate magni harum eius expedita. Quis voluptate laboriosam error porro.", + "cost": "3.7800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "voluptas", + "notes": "Atque nemo aliquam sunt. Quo porro ad dicta ut corrupti.", + "cost": "3.7800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "aliquam", + "notes": "Consequatur laboriosam laudantium dolor et nihil.", + "cost": "2.2200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "molestiae", + "notes": "Reiciendis consequatur aut est consequatur. Labore dolorum sint sapiente quia dicta facere totam ut. Aliquid fuga possimus eaque voluptas.", + "cost": "6.0800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "consectetur", + "notes": "Provident qui omnis id rem ut eligendi. Officia in ut sit et illo dolores laborum. Qui magni adipisci nulla ad qui ipsa. Consectetur nobis itaque delectus nesciunt.", + "cost": "7.7700", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "esse", + "notes": "Quae magnam quod consequatur qui esse animi. Qui et laboriosam sit asperiores eum. Incidunt numquam sed aperiam accusantium quidem minus. Est voluptas temporibus at doloribus.", + "cost": "3.5300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "blanditiis", + "notes": "Aliquid quia nam accusantium. Voluptas quae molestias recusandae sunt natus. Aut nam est placeat distinctio quam.", + "cost": "7.5000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "distinctio", + "notes": "Similique officiis consequatur quae magni quis. In dicta id minus quae ut.", + "cost": "9.1800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "vitae", + "notes": "Eligendi sunt autem quidem debitis aliquid suscipit. Minima sunt ad et voluptatem alias ad. Quia minima earum sequi dolorum alias. Enim molestiae explicabo quia ratione rem delectus.", + "cost": "2.0100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "deleniti", + "notes": "Deleniti incidunt autem veniam nesciunt nisi qui quos. Nesciunt non doloremque voluptates eius in qui iure. Nesciunt et fuga sed ea.", + "cost": "3.1300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "non", + "notes": "Repellendus ut quasi quia incidunt est impedit esse.", + "cost": "3.7200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "fugit", + "notes": "Sint voluptatem eligendi nostrum minus. Harum odit et qui qui vel. Facere dicta omnis suscipit facilis inventore dolor pariatur. Reprehenderit deleniti optio neque architecto incidunt illum vitae.", + "cost": "3.8000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "aspernatur", + "notes": "Beatae cum soluta fugiat facilis eveniet est magnam.", + "cost": "3.2000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quod", + "notes": "Rerum est autem dolores dolor. Sint ex ipsum placeat modi voluptatem cupiditate non error. Illo et alias omnis debitis officia.", + "cost": "3.2200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "neque", + "notes": "Ipsam atque voluptas possimus velit ratione ea.", + "cost": "3.2300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "nulla", + "notes": "In iure et hic provident dolorem. Ducimus id sit sint dolorum. Iste fugit suscipit temporibus vero id non rerum.", + "cost": "9.6600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "enim", + "notes": "Quaerat commodi eos voluptas.", + "cost": "3.4100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "ullam", + "notes": "Ea sunt assumenda consequatur aspernatur velit. Fugit tenetur laborum nihil.", + "cost": "3.6500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "eos", + "notes": "Non veniam reprehenderit beatae ea eos dolor. Sed reiciendis et fuga provident suscipit quia. Aut est qui quia quo reiciendis magnam qui. Debitis fugit et et saepe magnam. Natus amet ut ut et vitae aliquam et. Aut architecto quasi occaecati qui dolorem.", + "cost": "5.3900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "voluptatem", + "notes": "Et ipsam veritatis quia iure. Ducimus libero aspernatur beatae aperiam voluptatem vel.", + "cost": "4.2300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "nesciunt", + "notes": "Sequi tempore voluptas pariatur dolorum et. Maiores est aut dolore esse quam eius rerum. Mollitia occaecati quod non cumque error voluptas quia.", + "cost": "8.2500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "impedit", + "notes": "Ut voluptate sunt voluptatem recusandae rerum. Qui beatae assumenda eaque dolorem.", + "cost": "6.1200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "reiciendis", + "notes": "Molestias pariatur et consequatur. Eos ipsum id laboriosam illo culpa inventore aspernatur. Reiciendis laboriosam suscipit rerum a aut laudantium. Non exercitationem tempora est autem provident consequatur.", + "cost": "3.0600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "omnis", + "notes": "Quaerat amet ut voluptatem. Itaque placeat voluptatibus repellat fugiat animi. Dicta iure iure ea. Ut laborum sint distinctio nam quos.", + "cost": "4.5500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quis", + "notes": "Unde rerum consectetur molestias laborum ducimus. Voluptatum rem molestiae vel sequi eaque magni placeat. Nostrum iste earum laboriosam iusto voluptatum est quia. Perspiciatis est omnis eum in illo et facilis.", + "cost": "9.2000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "ratione", + "notes": "Tempore aspernatur rem et officia et voluptatibus.", + "cost": "6.7100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "eaque", + "notes": "Error quo nobis quia reprehenderit excepturi adipisci. Autem doloribus reiciendis vitae repellendus. Qui est ad qui laudantium accusantium.", + "cost": "2.9500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "dicta", + "notes": "Quibusdam mollitia facere ratione molestiae.", + "cost": "3.9700", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "nihil", + "notes": "Numquam distinctio sed voluptas id unde. Rerum nam est ea dolor libero quos. Et repellat sed ut ex maiores magnam.", + "cost": "1.5000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quasi", + "notes": "Soluta dolor ut eius laboriosam. Nemo a qui aut voluptas. Iure quia deserunt ut recusandae deleniti illum vitae.", + "cost": "6.2800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "officiis", + "notes": "Et illum officia exercitationem similique fugit labore velit. Totam consequuntur ex id aut ducimus.", + "cost": "5.7600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "sunt", + "notes": "Quos facilis nam dolores. Animi eum qui ea ut. Adipisci hic labore qui voluptatum debitis temporibus. Aspernatur quis voluptatem minus ab. Quia ut qui iusto molestias maxime. Perferendis maxime aliquam temporibus a id reiciendis.", + "cost": "7.8800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "molestias", + "notes": "Sit in sed eveniet vel et ea consequuntur.", + "cost": "8.6400", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quia", + "notes": "Ut illum aliquam magnam est. Quod quidem veniam laborum nostrum omnis reprehenderit illum facilis. Laudantium vel aut dolores.", + "cost": "9.0800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "accusantium", + "notes": "Nam aliquam aliquid dignissimos accusamus aut consequatur ex.", + "cost": "9.5700", + "quantity": "0.0000", + "tax_name1": "", + "tax_name2": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-10-05", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "similique", + "notes": "Eaque quae molestiae sit sint modi praesentium. Cum et est velit ullam nobis voluptatem eaque. Nam velit sed libero est. Quam eos est totam est vero quaerat optio fuga.", + "cost": "3.4200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "consequuntur", + "notes": "Delectus quam sit consectetur veritatis. Excepturi odio dolore eos laborum placeat. Eos iste illo numquam dolor id et eaque incidunt.", + "cost": "6.6200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "architecto", + "notes": "Tempora architecto earum eum aspernatur tempore est in veritatis. Sit aut quos eum omnis. Voluptate amet alias illo asperiores blanditiis laudantium numquam.", + "cost": "5.7300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "eum", + "notes": "Et blanditiis est aut et consectetur fuga. Aperiam molestiae praesentium optio sed sunt non. Laboriosam ipsum alias maxime reprehenderit aperiam natus voluptas. Debitis quidem sed nam rerum molestias id.", + "cost": "7.5500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "iure", + "notes": "Qui enim dolorem rerum facilis. Veniam magnam ex quidem. Ipsa et repellat et.", + "cost": "9.3000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "vel", + "notes": "Quasi ipsam consequuntur quaerat qui vel similique sapiente vitae. Ea consequatur nihil veniam sed et. Quia id occaecati cum unde placeat et exercitationem itaque.", + "cost": "1.8100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "maiores", + "notes": "Dolorem fugiat suscipit debitis nam voluptate necessitatibus.", + "cost": "2.2500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "exercitationem", + "notes": "Excepturi deleniti odit earum est nemo sed minus qui. Fuga necessitatibus officiis quibusdam laborum voluptatum quo enim esse. Voluptates nihil autem facilis est.", + "cost": "2.8000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "nam", + "notes": "Ullam velit eius odio doloribus quia unde. Quaerat sit et ad. Quia et laborum facere quod quia rerum ea.", + "cost": "3.1300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "suscipit", + "notes": "Dolores deserunt eum sit. Ratione deserunt corrupti sunt in ducimus sunt.", + "cost": "5.5700", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "doloribus", + "notes": "Est deleniti est reiciendis ex quos quisquam. Non esse ut minus. Nihil eaque consectetur velit sed excepturi et sed.", + "cost": "6.8400", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "ipsa", + "notes": "Et sapiente quidem quos amet velit earum. Non officiis et voluptas eius corporis qui. Aspernatur voluptatem ea nostrum enim a alias asperiores non. Est consectetur possimus maxime deleniti. Error quidem voluptate sed aut suscipit.", + "cost": "6.4600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "velit", + "notes": "Harum a eum omnis. Eligendi totam voluptatibus qui enim aspernatur.", + "cost": "8.0000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "saepe", + "notes": "Vel quae minima laborum aliquid accusamus. Ea laboriosam vel eum sequi sed.", + "cost": "6.7200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "deserunt", + "notes": "Qui voluptas voluptate voluptatem consectetur repudiandae.", + "cost": "9.8300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "sed", + "notes": "Rerum eligendi praesentium culpa quod. Et iusto velit est dolores praesentium aut eos. Placeat facilis enim dolorum aut.", + "cost": "8.9500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "repellat", + "notes": "Et maiores quo soluta perspiciatis dicta. Sit magni omnis exercitationem aliquid dolorem quaerat velit.", + "cost": "7.0900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "soluta", + "notes": "Nihil est veniam facilis quod. Aut officia facilis reiciendis est repellendus illum. Omnis id quos ipsa veritatis asperiores. Corrupti voluptates sed ex voluptatum vitae dolorum dolor.", + "cost": "2.5800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "illo", + "notes": "Nostrum sapiente aut at. Maxime non aspernatur a eligendi amet ut. Quod repellat magnam explicabo sunt quis id quia.", + "cost": "4.9100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "perferendis", + "notes": "Iste itaque dolores placeat accusantium provident nam quisquam est. Nemo eius sint pariatur vero quas nemo. Ea numquam inventore eveniet itaque distinctio ratione.", + "cost": "3.2800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "incidunt", + "notes": "Qui sed itaque exercitationem neque sit. Quibusdam soluta nostrum id accusantium aliquam. Saepe cum sed nobis cum doloribus. Accusamus nihil et eos quae. Repellat aut provident beatae commodi ipsa ut distinctio.", + "cost": "3.4200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "aperiam", + "notes": "Tempore exercitationem et in magni. Perspiciatis nihil minima beatae nulla tempore suscipit veniam. Voluptas delectus et impedit quas.", + "cost": "2.8000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "modi", + "notes": "In magnam aut non ipsum consequuntur. Aut exercitationem qui at error harum nulla in dolores. Quidem quo iure quibusdam odit animi. Numquam occaecati laudantium saepe optio.", + "cost": "4.0700", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "inventore", + "notes": "Quis blanditiis dolorum cum nulla aliquam. Et omnis similique perferendis laudantium sed. Pariatur non laborum possimus nostrum voluptatum recusandae autem.", + "cost": "3.7500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "veniam", + "notes": "Et neque necessitatibus excepturi exercitationem similique non quasi. Distinctio veniam libero sit quaerat. Eius dolores sint quasi ut.", + "cost": "9.6200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "unde", + "notes": "Et autem voluptatem ex voluptate accusamus. Voluptatem odio enim accusamus quo dolorum. Est repudiandae quia minima quos voluptas sint et beatae. Sequi et itaque delectus. Iusto nobis et a vel vel rerum tempora.", + "cost": "6.0600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "porro", + "notes": "Laboriosam voluptas maxime ut similique sed voluptas. Repellat saepe illo explicabo velit voluptates quidem. Est iusto magnam hic iste.", + "cost": "4.6900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "optio", + "notes": "Molestiae aliquid nobis sit soluta illo.", + "cost": "6.4900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quam", + "notes": "Dicta exercitationem rerum saepe et. Omnis reprehenderit nulla culpa. Laudantium eos amet voluptatum magni corrupti sequi. Et nam fuga et assumenda.", + "cost": "4.5400", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "at", + "notes": "Quae quis fugit ea voluptatibus. Ut in at dolorem aut qui. Minus quisquam tempore ratione numquam.", + "cost": "6.6000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quidem", + "notes": "Ea assumenda rerum quia. Ab magni porro iusto. Amet cupiditate ducimus totam ipsam. Dolorum dolorem ut temporibus nisi quas. Eum animi ut quos.", + "cost": "8.2100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "hic", + "notes": "Vero ea ut et id. Cumque et et sed ab alias nemo. Et accusamus illo perferendis id atque ad quidem.", + "cost": "7.3900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "in", + "notes": "Dolor nulla repudiandae tenetur qui beatae sunt deserunt. Dolor non corporis ut voluptatem dolores. Qui fugiat qui magni sapiente vero.", + "cost": "6.2000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "fugiat", + "notes": "Corrupti autem ut maxime veniam autem nostrum fuga ab. Dignissimos et rerum eligendi adipisci praesentium fugiat ea ad. Totam iusto quisquam sit rerum repellat perspiciatis dolores.", + "cost": "6.1800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", "product_key": "iusto", - "notes": "Voluptate in et quaerat est consequatur rerum. Corporis fuga quia illo voluptatem hic dolorum cum. Voluptatem sit fuga accusantium et tempore.", - "cost": "5.9300", + "notes": "Nesciunt dignissimos nulla alias fugit. Et eius et libero. Repellendus illo qui eos facere dolores laudantium.", + "cost": "2.5900", "quantity": "0.0000", "tax_name1": null, "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", - "created_at": "2020-03-12", - "updated_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "odit", + "notes": "Voluptatem sunt nisi et. Quaerat quia autem labore tempore. Ab pariatur optio suscipit impedit perspiciatis illum.", + "cost": "1.1100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "adipisci", + "notes": "Ut sunt quas est esse. Cumque blanditiis et sed eos minus. Nemo fugiat accusantium impedit nobis. Excepturi laudantium ipsa corrupti recusandae et optio.", + "cost": "5.4300", + "quantity": "0.0000", + "tax_name1": "", + "tax_name2": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-10-05", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "harum", + "notes": "Nisi officiis expedita qui voluptatem omnis iure. Libero nihil rerum ad ipsum dolor. Quidem quas officiis accusantium nesciunt quidem nobis sequi libero. Enim ipsa non eligendi nihil.", + "cost": "1.6900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "ducimus", + "notes": "Pariatur tempore corrupti labore quis dolor debitis laboriosam. Alias tenetur reprehenderit aut sit est sint et aut. Nostrum voluptatum quas velit aut voluptatem id aut.", + "cost": "3.2000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "cupiditate", + "notes": "Doloribus laudantium laudantium id sit minus necessitatibus. Repellendus consequatur et voluptates accusamus ut. Dignissimos ipsam quia dolorem ut voluptas iste quis.", + "cost": "1.2800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "ex", + "notes": "Pariatur est cum similique amet animi. Illo mollitia voluptatem neque aut dignissimos corporis sint. Reiciendis praesentium possimus illum laborum sed.", + "cost": "5.9600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "ipsum", + "notes": "Tenetur vitae eos corporis earum eum. Qui totam modi quisquam illo voluptas. Recusandae magnam consequatur quaerat rerum.", + "cost": "2.2800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "cum", + "notes": "Ipsa et esse et ut illum et quis.", + "cost": "3.0300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quo", + "notes": "Perspiciatis est fugit rerum quaerat possimus.", + "cost": "4.4200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "repudiandae", + "notes": "Corrupti qui et et aut consequatur.", + "cost": "8.5600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "perspiciatis", + "notes": "Consequatur tempore cumque tempore laborum velit in incidunt. Quia deserunt qui ut ut nulla autem. Excepturi saepe corporis quia laboriosam ea suscipit amet et. In quis voluptas expedita dolores.", + "cost": "2.4800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "numquam", + "notes": "Consectetur tenetur quo ex eum at a. Sunt et et deleniti non assumenda est veritatis. Ut dolorem molestiae et deleniti ullam ut ut.", + "cost": "2.4000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "aliquid", + "notes": "Est sunt qui officia sunt illo veritatis aut. Culpa unde non veritatis autem hic autem. Inventore qui veritatis aut omnis natus aut.", + "cost": "6.9300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "sapiente", + "notes": "Laudantium enim non nobis voluptatem eum. Culpa error numquam mollitia rerum dolorum. Totam veniam consequatur voluptate qui. Beatae sed quia dolores magni quia. Consequatur explicabo commodi recusandae consequuntur in id. Minima enim officiis in laborum cum sit.", + "cost": "3.5300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "nisi", + "notes": "Repellendus hic et eligendi sequi eum sunt est. Sunt iure sequi earum sit architecto. Voluptas esse et vel. Velit quasi blanditiis deserunt error ipsam.", + "cost": "4.5900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "commodi", + "notes": "Saepe sapiente quia aspernatur molestiae. Adipisci magni ex sunt qui error. Excepturi nihil totam ut quia repellendus commodi omnis dolorum. In vel iusto illo debitis quidem.", + "cost": "3.6000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "expedita", + "notes": "Molestiae sit asperiores et enim. Eos excepturi sint et ut odio dicta eveniet. Consequatur est et animi aliquid illo. Ab a magni quis aut enim. Sed nostrum qui vero omnis temporibus.", + "cost": "9.3700", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "facere", + "notes": "A consequatur autem fuga ut aut officiis velit. Odio magni unde voluptatum consectetur esse ut. Minima qui autem ipsum dolorum. Repudiandae et nostrum est aspernatur officia sit omnis. Quae dolorum aut omnis aperiam.", + "cost": "7.6800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quibusdam", + "notes": "Ducimus animi rerum similique repellat et. Dolorem hic molestiae et rerum necessitatibus.", + "cost": "5.8800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "eius", + "notes": "Saepe veritatis perspiciatis eos ullam. Nihil repellendus voluptatem incidunt sunt. Harum qui quia temporibus et nihil delectus exercitationem. Aut eius possimus labore voluptas suscipit aut.", + "cost": "6.3100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "repellendus", + "notes": "Velit illo cum rerum quidem necessitatibus nihil. Enim provident et illo non rerum eius.", + "cost": "1.8500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "illum", + "notes": "Pariatur aut quia quia accusamus. A ex quia temporibus culpa. Voluptas ab minus accusamus hic expedita cumque et veniam.", + "cost": "6.1100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quaerat", + "notes": "Quas ipsum quia itaque accusamus rerum.", + "cost": "5.4000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "asperiores", + "notes": "Sequi fugiat eaque rerum. Quia quaerat natus sunt aut inventore nobis nostrum aut. Et occaecati ut unde corrupti. Aut minus quia nisi sit dignissimos totam. Reiciendis eum nisi veniam quas aut. Nostrum dolor quam et.", + "cost": "3.6400", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quae", + "notes": "Qui doloremque nostrum ut non qui voluptas. Error eos voluptatibus id culpa. Eum qui in dolores qui est velit.", + "cost": "7.2000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "assumenda", + "notes": "Voluptates ut in ipsa deleniti odio. Praesentium quia iusto voluptatem ullam. Beatae sint et iste voluptate repellat est.", + "cost": "5.9800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "animi", + "notes": "Sint aut quibusdam iure qui omnis quam. Officia rem aut qui voluptatem. Id asperiores quia totam non.", + "cost": "1.9000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "debitis", + "notes": "Et asperiores ut impedit sunt. Consequuntur a eos ad. Qui minus et et sit. Omnis aut molestias aut.", + "cost": "8.1600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "delectus", + "notes": "Sed dolor molestiae error illo harum ut voluptates nisi. Voluptas aliquid consequatur quos magni ullam deserunt. Quo mollitia sapiente occaecati.", + "cost": "6.2400", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "libero", + "notes": "Incidunt veritatis ea aut dolore. Ratione recusandae et eaque animi omnis quam unde in.", + "cost": "1.0600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "dolore", + "notes": "Laborum expedita sed totam hic dolor fugit. Nisi delectus quod ea voluptatum. Voluptatem eligendi dolorem provident sed molestiae mollitia. Et quasi aperiam nam eligendi quis qui.", + "cost": "8.3100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "provident", + "notes": "Modi itaque tenetur mollitia assumenda quia.", + "cost": "1.7400", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "totam", + "notes": "Maiores voluptatem consectetur distinctio ut earum voluptatem. Illum deleniti provident quia cumque. Voluptatibus sit architecto maxime ab quia qui. Omnis culpa asperiores assumenda distinctio eum.", + "cost": "2.3100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quas", + "notes": "Nam asperiores optio eaque.", + "cost": "8.2800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "explicabo", + "notes": "Quas sunt quia aperiam accusantium. Repudiandae rerum quae possimus debitis repudiandae dolores qui dolores. Est perspiciatis qui ut dolor. Aliquid et maxime corporis ullam ducimus esse et.", + "cost": "4.4600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "necessitatibus", + "notes": "Sunt voluptate nihil explicabo eligendi ab ut.", + "cost": "3.3500", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "corporis", + "notes": "Enim adipisci quia consequatur consequatur. Ea et et omnis quis.", + "cost": "2.5300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "doloremque", + "notes": "Laborum deserunt ut voluptatem voluptas tenetur est ut.", + "cost": "5.8000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "sint", + "notes": "Non quae earum totam dignissimos tempore sint culpa. Enim nulla est at rem eos. Unde esse sit autem iure beatae. Perspiciatis harum accusantium adipisci enim. Sed consectetur et aut molestiae ex rerum iste.", + "cost": "6.5100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "praesentium", + "notes": "Vero ut autem in quibusdam. Eius placeat nostrum consequatur. Similique qui quam nostrum voluptas odio. Error nihil dolore hic voluptatem recusandae quidem. Porro minima corrupti et quia.", + "cost": "6.8800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "error", + "notes": "Quasi dolor earum delectus perspiciatis sed. Sed et aliquam modi ratione praesentium placeat ipsa. Quia saepe optio facilis qui id.", + "cost": "1.0300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "voluptate", + "notes": "Nesciunt dignissimos aut ad quasi rerum. Magnam laboriosam sed est omnis dolores. Qui repudiandae esse molestiae nihil rerum.", + "cost": "7.6600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "maxime", + "notes": "Consequuntur quia ipsa sapiente ab iure et. Quo et rem et eligendi omnis ut ducimus omnis. Est laboriosam ipsum et a numquam sed. Consequuntur odio accusamus quisquam fuga vel veniam delectus.", + "cost": "2.7400", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "reprehenderit", + "notes": "Quibusdam deserunt itaque non et exercitationem voluptatem eum.", + "cost": "5.4900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "pariatur", + "notes": "Aut rerum distinctio laborum minima a est ipsum.", + "cost": "2.1600", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "natus", + "notes": "Autem autem doloribus qui sunt veritatis fugit optio. Quidem est doloremque distinctio eum labore dignissimos. Velit vero rem quas omnis aliquid quaerat quas. Est id et necessitatibus repellendus nesciunt commodi vitae.", + "cost": "6.8200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "earum", + "notes": "Accusamus distinctio voluptas odit occaecati possimus et quidem. Nobis cumque sunt repellendus voluptate ut quisquam omnis accusantium. Reiciendis vel odit commodi ex qui ipsum itaque.", + "cost": "9.2200", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "quisquam", + "notes": "Eos architecto quod adipisci. Voluptas omnis est aut sunt iusto sit. Aut animi quia sunt et.", + "cost": "1.6800", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "fuga", + "notes": "Aut excepturi corrupti quo cumque. Quidem dicta praesentium distinctio. Accusantium similique quia magni facilis. Minima deserunt ducimus quos amet hic nesciunt quas. Qui excepturi distinctio veniam. Sunt voluptates atque suscipit omnis quaerat mollitia.", + "cost": "3.5100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "nostrum", + "notes": "Quae at doloribus doloribus earum natus quia.", + "cost": "4.2700", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "placeat", + "notes": "Sed quos corrupti nihil. Dolor cupiditate impedit et dolores. Dolorem impedit illum aut.", + "cost": "4.2400", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "magni", + "notes": "Totam et aut dolorum fugiat ut. Quia dignissimos accusantium inventore doloremque eligendi.", + "cost": "3.0000", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "dignissimos", + "notes": "Consequatur sapiente ad ea ea. Quos aliquid maiores similique et. Velit magnam non ut in modi.", + "cost": "9.2300", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "iste", + "notes": "Molestiae et soluta odio qui.", + "cost": "6.0100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "laudantium", + "notes": "Voluptatum sed delectus fugit dolore nesciunt est. Voluptatem et ut quia. Nihil molestias neque voluptas non dolore placeat sed. Reiciendis a ut voluptatibus doloremque.", + "cost": "9.4900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "vero", + "notes": "Eveniet in aut eaque. Nobis ut voluptas est repudiandae amet. Maxime expedita aut ut sapiente. Officia dolor inventore odit sed voluptatem odit in. Sit dolores et nemo consequuntur voluptas. Similique sit nemo mollitia dolorem unde.", + "cost": "3.2900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "ad", + "notes": "Sed esse ad at eos aut repellendus. Et omnis velit ut omnis nesciunt quam. Est quas occaecati sunt ipsa reiciendis. Aut aut rem architecto ex.", + "cost": "8.6700", + "quantity": "0.0000", + "tax_name1": "", + "tax_name2": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-10-07", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "alias", + "notes": "Impedit vel aut facere quae. Recusandae dolorem et sint esse earum eius. Ratione rerum et est enim vitae occaecati quod delectus. Vero nihil quia at voluptatem nobis.", + "cost": "9.8100", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "recusandae", + "notes": "Rerum quam iste eius non vero incidunt hic. Dolorum quod rem omnis doloremque ad sunt qui. Perspiciatis molestiae delectus explicabo qui sapiente adipisci placeat.", + "cost": "5.9700", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "nemo", + "notes": "Voluptate maxime voluptatem aliquid nulla quas. Asperiores totam delectus dolorem fugiat ea officia ipsam. Qui maxime et quia sapiente.", + "cost": "9.1900", + "quantity": "0.0000", + "tax_name1": null, + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "company_id": 1, + "user_id": 1, + "custom_value1": "", + "custom_value2": "", + "product_key": "1", + "notes": "1", + "cost": "-1000.0000", + "quantity": "0.0000", + "tax_name1": "", + "tax_name2": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "created_at": "2020-10-18", + "updated_at": "2020-10-18", "deleted_at": null } ], "invoices": [ { - "id": 2, - "client_id": 1, + "id": 10358, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 5, + "status_id": 3, + "design_id": 1, + "number": "0001", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "12321", + "date": "2020-05-07", + "last_sent_date": null, + "due_date": "2020-04-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "The invoice footer", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.55", + "balance": "6.99", + "partial": "0.00", + "partial_due_date": null, + "line_items": [ + { + "id": 11159, + "quantity": 5, + "cost": 6.91, + "product_key": "ut", + "notes": "Voluptatem voluptas tempore voluptatem eum velit sit. Commodi beatae veritatis ipsam molestiae odio. Soluta voluptas repellat omnis. Et sunt ratione molestiae quam. Doloremque quo ipsum aut laboriosam. Dolor omnis omnis eveniet optio. Aut ea eum aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-09-26 20:59:59.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-09-26", + "deleted_at": null + }, + { + "id": 10359, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 3, "design_id": 1, "number": "0002", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-11", - "last_sent_date": "2020-03-14", - "due_date": null, + "date": "2020-05-08", + "last_sent_date": null, + "due_date": "2020-06-10", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", "private_notes": "", "terms": "", - "tax_name1": "Tax 1", - "tax_name2": "Tax 2", - "tax_rate1": "10.000", - "tax_rate2": "20.000", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "201.50", - "balance": "46.50", - "partial": "0.00", + "amount": "36.66", + "balance": "29.14", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2583, - "quantity": 155, - "cost": 1, - "product_key": "1", - "notes": "", + "id": 10359, + "quantity": 6, + "cost": 6.11, + "product_key": "temporibus", + "notes": "Tenetur nisi minima molestiae similique. Aperiam dolor et quo quo ut.", "discount": 0, "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-27 07:50:18.000000", + "date": "2020-06-30 11:19:16.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -4862,45 +5506,24 @@ "line_item_type_id": 1 } ], - "created_at": "2020-02-11", - "updated_at": "2020-03-27", - "deleted_at": null, - "invitations": [ - { - "id": 2, - "company_id": 1, - "user_id": 1, - "client_contact_id": 1, - "invoice_id": 2, - "key": "8xkvjsfaci0b1nzxneslksba51bsjxje", - "transaction_reference": "pay_tok_48CC3451-5905-4FF8-BABD-1B5DE8CF3892", - "message_id": "0", - "email_error": "Address in mailbox given [fc25edcae7464ff5998b] does not comply with RFC 2822, 3.6.2.", - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-11 20:44:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-11", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 3, - "client_id": 1, + "id": 10360, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 6, + "status_id": 3, "design_id": 1, "number": "0003", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-16", - "last_sent_date": "2020-03-14", - "due_date": null, + "date": "2020-08-29", + "last_sent_date": null, + "due_date": "2020-08-19", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", @@ -4908,28 +5531,32 @@ "private_notes": "", "terms": "", "tax_name1": "", - "tax_name2": "", + "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "155.00", - "balance": "0.00", - "partial": "0.00", + "amount": "45.71", + "balance": "20.10", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 3, - "quantity": 155, - "cost": 1, - "product_key": "1", - "notes": "", + "id": 10360, + "quantity": 7, + "cost": 6.53, + "product_key": "amet", + "notes": "Nihil ut pariatur tenetur excepturi. Quod molestiae et similique incidunt possimus culpa non. Ea esse quia ipsum assumenda quis ut incidunt exercitationem.", "discount": 0, "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-02-16 06:14:33.000000", + "date": "2020-06-30 11:19:16.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -4938,45 +5565,24 @@ "line_item_type_id": 1 } ], - "created_at": "2020-02-16", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 3, - "company_id": 1, - "user_id": 1, - "client_contact_id": 1, - "invoice_id": 3, - "key": "vsprzka316feruvatpaeoaqet9lbjswg", - "transaction_reference": "pay_tok_C37E7CBC-D967-4B09-AD22-02AA07CA0A2B", - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-16 06:14:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-16", - "updated_at": "2020-02-16", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 4, - "client_id": 1, + "id": 10361, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 6, + "status_id": 3, "design_id": 1, "number": "0004", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-16", - "last_sent_date": "2020-04-13", - "due_date": null, + "date": "2020-06-26", + "last_sent_date": null, + "due_date": "2020-09-22", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", @@ -4984,38936 +5590,6 @@ "private_notes": "", "terms": "", "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "155.00", - "balance": "0.00", - "partial": "0.00", - "partial_due_date": null, - "line_items": [ - { - "id": 2587, - "quantity": 155, - "cost": 1, - "product_key": "1", - "notes": "", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-04-13 06:05:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-16", - "updated_at": "2020-04-13", - "deleted_at": null, - "invitations": [ - { - "id": 4, - "company_id": 1, - "user_id": 1, - "client_contact_id": 1, - "invoice_id": 4, - "key": "k720gx2ubqujpvg5fpfrhfrjrs1i1dvy", - "transaction_reference": "pay_tok_358C3C47-03F4-4CA0-BDFA-91048A13B27D", - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-16 06:17:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-16", - "updated_at": "2020-02-16", - "deleted_at": null - } - ] - }, - { - "id": 5, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0005", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.00", - "balance": "2.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 5, - "quantity": 4, - "cost": 1, - "product_key": "amet", - "notes": "Quis odit quidem ut voluptates. Ea distinctio voluptatem est sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 5, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "invoice_id": 5, - "key": "wblbr7fyz5mibwrvdjdxetag4x89mudw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:37:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 6, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0006", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.23", - "balance": "15.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 6, - "quantity": 9, - "cost": 7.47, - "product_key": "itaque", - "notes": "Qui inventore voluptas quia iusto delectus vel. Cum molestiae voluptatem sed a qui ex molestiae. Quia minima nihil placeat repellendus in. In iure accusamus autem magni sint ratione. Cumque et temporibus adipisci eaque laborum. Velit minus assumenda maiores itaque voluptatum voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 6, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "invoice_id": 6, - "key": "rquhuqjbwpvkcoxrov69glzy1247vpj8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:37:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 7, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0007", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.48", - "balance": "1.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 7, - "quantity": 2, - "cost": 1.24, - "product_key": "totam", - "notes": "Iure aliquam omnis voluptatibus nulla incidunt. Laudantium quasi eaque illo libero maiores qui. Dolorem temporibus modi hic. Hic ullam quaerat cumque ut ipsa incidunt accusamus quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 7, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "invoice_id": 7, - "key": "es3deezihjaxoyaenw844n7bzvimdgjw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:37:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 8, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0008", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-11", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.62", - "balance": "1.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 8, - "quantity": 1, - "cost": 2.62, - "product_key": "perspiciatis", - "notes": "Eveniet sit et nisi ducimus omnis non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 8, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "invoice_id": 8, - "key": "gxv3vqomujik0jtr6guagqgutlvuzxww", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:38:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 9, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0009", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-22", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.64", - "balance": "2.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 9, - "quantity": 4, - "cost": 3.41, - "product_key": "eos", - "notes": "Sapiente consectetur nam autem occaecati rem fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 9, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "invoice_id": 9, - "key": "ly8cmyhngsja6czrmlcpw8vjzguxemjz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:38:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 10, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0010", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "76.60", - "balance": "31.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 10, - "quantity": 10, - "cost": 7.66, - "product_key": "temporibus", - "notes": "Dolorum commodi fugit libero. Enim error soluta consequuntur aspernatur. Magnam consequatur et fugiat a ut natus assumenda dolore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 10, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "invoice_id": 10, - "key": "dofkxeorvhtlbc70bgxojnqcojxstdjq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:38:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 11, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0011", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.12", - "balance": "1.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 11, - "quantity": 1, - "cost": 6.12, - "product_key": "et", - "notes": "Sunt nisi aliquam doloribus nobis ipsam fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 11, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "invoice_id": 11, - "key": "nj3s2xvh4wiwzztddgalgzmaozqkbymg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:39:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 12, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0012", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "84.96", - "balance": "75.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 12, - "quantity": 9, - "cost": 9.44, - "product_key": "doloribus", - "notes": "Aliquam nobis tenetur sed voluptatem et soluta eaque quo. Eum eos illo et ipsam quas culpa sit. Deserunt dolor placeat reiciendis et ad. Nesciunt culpa et et non totam. Vitae rerum praesentium nam esse blanditiis et et officiis. Mollitia labore sed sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 12, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "invoice_id": 12, - "key": "spfiuxi61uzu95qg9pegirasbx0et9a1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:39:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 13, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0013", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-14", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.58", - "balance": "0.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 13, - "quantity": 2, - "cost": 9.79, - "product_key": "nulla", - "notes": "Numquam eos qui sunt inventore aut est consequatur consequatur. Tempora magni soluta consequatur et excepturi. In eos reiciendis laudantium autem accusamus quod totam. Exercitationem similique et reiciendis voluptas culpa magni.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 13, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "invoice_id": 13, - "key": "u5hg8kebvco89c3sip8hjalorkxrbntd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:39:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 14, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0014", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-25", - "last_sent_date": "2020-03-14", - "due_date": "2019-11-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.88", - "balance": "2.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 14, - "quantity": 8, - "cost": 4.36, - "product_key": "voluptas", - "notes": "Doloremque doloremque et exercitationem sapiente soluta earum. Voluptates et praesentium in. Dolor eum hic inventore fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 14, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "invoice_id": 14, - "key": "gv77ocgxczygv1uofiauvvrofumswfyh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:39:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 25, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0025", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-12", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.12", - "balance": "20.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 25, - "quantity": 4, - "cost": 9.28, - "product_key": "necessitatibus", - "notes": "Animi sint quis ut. Debitis ut autem consequatur ipsam quia. Sed dignissimos labore magni vel. Distinctio eos suscipit sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 25, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "invoice_id": 25, - "key": "fcrlvacsvtapzlxa5bvyetxhx0azjeaa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 26, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0026", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.70", - "balance": "23.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 26, - "quantity": 6, - "cost": 7.95, - "product_key": "sint", - "notes": "Vitae ullam eum suscipit reprehenderit. Quaerat cupiditate est optio sequi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 26, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "invoice_id": 26, - "key": "3hakw4w5psjuzneu5pmq46umpkoz34jn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 27, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0027", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-09", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.00", - "balance": "6.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 27, - "quantity": 3, - "cost": 8, - "product_key": "dolor", - "notes": "Quibusdam quia eveniet autem fugiat quas fugit minima. Et sit exercitationem vitae eum tempora repellendus. Voluptates vitae laborum fugit animi nesciunt. Laudantium neque fugiat dolore. Enim aut aut et aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 27, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "invoice_id": 27, - "key": "gdqjzzrj2eqtevabgxtkleubtakvem6p", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 28, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 10, - "number": "0028", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": "", - "terms": "", - "tax_name1": "Tax 1", - "tax_name2": "", - "tax_rate1": "10.000", - "tax_rate2": "0.000", - "custom_value1": "1.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.54", - "balance": "25.07", - "partial": "0.00", - "partial_due_date": null, - "line_items": [ - { - "id": 220, - "quantity": 6, - "cost": 8.87, - "product_key": "voluptas", - "notes": "Quis iusto et aliquam hic id ducimus. Quibusdam ipsa voluptatem quibusdam voluptate. In perferendis sit placeat sit amet sunt. Consequatur atque deserunt nihil omnis rerum dolorem.", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-02-28 21:10:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 28, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "invoice_id": 28, - "key": "66picsafv62dfgzpknjguvsfnhaqqgr2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 29, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0029", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-16", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.52", - "balance": "2.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 29, - "quantity": 4, - "cost": 6.63, - "product_key": "repellendus", - "notes": "Illum est pariatur voluptate. Repellat adipisci rerum quia voluptas. Voluptatum labore minima alias quia saepe rem dolore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 29, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "invoice_id": 29, - "key": "y4pepwtxwvsjbepfdv2bfvehslch7pyn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 30, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0030", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-01", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.64", - "balance": "6.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 30, - "quantity": 9, - "cost": 5.96, - "product_key": "odio", - "notes": "Quia excepturi placeat reprehenderit dicta. Voluptatem sit maiores qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 30, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "invoice_id": 30, - "key": "6cz5sb7gj8uc4veyrudshlcb8p1xua3w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 31, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0031", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.76", - "balance": "13.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 31, - "quantity": 4, - "cost": 8.69, - "product_key": "non", - "notes": "Nam ut aliquam natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 31, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "invoice_id": 31, - "key": "8rinxmrklh2mmlkijmmhqb0um6nym2vg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 32, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0032", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-26", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.86", - "balance": "32.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 32, - "quantity": 6, - "cost": 6.31, - "product_key": "nihil", - "notes": "Velit provident enim voluptates quisquam. Non facilis omnis architecto beatae beatae maiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 32, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "invoice_id": 32, - "key": "lny9s7eubdlqhxzutig5jaagspbrsddi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 33, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0033", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.98", - "balance": "10.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 33, - "quantity": 2, - "cost": 6.49, - "product_key": "quaerat", - "notes": "Quia animi placeat sequi eaque corrupti saepe ipsa amet. Inventore ab sapiente officia consequatur dolorem aut. Occaecati voluptatem et fugit ipsa reiciendis omnis fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 33, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "invoice_id": 33, - "key": "rt5frkthp8h20fittvoe2yqldqsv3owf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 34, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0034", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.07", - "balance": "6.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 34, - "quantity": 3, - "cost": 5.69, - "product_key": "quia", - "notes": "Id consequatur molestiae in quasi fugit minima sapiente. Est expedita magni qui aut reiciendis. Repudiandae alias rerum atque ea nulla.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 34, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "invoice_id": 34, - "key": "l4l00obbuo9gnqpxdj0g72wqxovukilv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 45, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0045", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-28", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.60", - "balance": "20.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 45, - "quantity": 8, - "cost": 2.95, - "product_key": "fugit", - "notes": "Iste qui rerum nostrum eum autem enim eveniet voluptates. Consequuntur sequi rerum aspernatur nemo qui ipsum. Id suscipit voluptatibus aspernatur ut deleniti. Et temporibus nihil ea voluptatum eligendi in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 45, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "invoice_id": 45, - "key": "p03yfdaauisadlesg9zchlfhih5qzh8s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:42:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 46, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0046", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.55", - "balance": "25.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 46, - "quantity": 7, - "cost": 4.65, - "product_key": "exercitationem", - "notes": "Beatae quis sint amet corrupti. Occaecati ut qui nobis quos. Eos perferendis eos autem magni laborum illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 46, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "invoice_id": 46, - "key": "8pieznf3t4dkr9y9v68vllxrtb1kvrhe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:42:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 47, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0047", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.26", - "balance": "23.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 47, - "quantity": 6, - "cost": 5.71, - "product_key": "dolor", - "notes": "Beatae harum voluptatem voluptatem. Laudantium ipsam voluptates rem natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 47, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "invoice_id": 47, - "key": "hjhoijjqutpcutaloucqfgmsahwxdenc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:42:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 48, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0048", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": "2020-03-14", - "due_date": "2019-11-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "83.40", - "balance": "13.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 48, - "quantity": 10, - "cost": 8.34, - "product_key": "fugit", - "notes": "Tempore alias illo quidem sapiente et quia. Corrupti nemo sunt neque consectetur tenetur asperiores in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 48, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "invoice_id": 48, - "key": "zag6isuxb9gpnhn4b1t9gqnfk1awupsl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:43:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 49, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0049", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.59", - "balance": "29.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 49, - "quantity": 7, - "cost": 6.37, - "product_key": "odio", - "notes": "Doloremque consectetur quaerat neque vero. Distinctio esse corporis repellat possimus. Illo aut alias eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 49, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "invoice_id": 49, - "key": "mkzchx8lmwp8emubd6q5g4zggimuxgnq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:43:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 50, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0050", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-13", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.95", - "balance": "0.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 50, - "quantity": 1, - "cost": 5.95, - "product_key": "mollitia", - "notes": "Doloribus laboriosam et omnis esse magnam quia. Autem officia omnis qui possimus. Voluptates quasi consequatur nisi fuga quae blanditiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 50, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "invoice_id": 50, - "key": "0smxcuhp9gap8gdvagucltppyo47fsfp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:43:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 51, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0051", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-15", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.69", - "balance": "3.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 51, - "quantity": 1, - "cost": 3.69, - "product_key": "cupiditate", - "notes": "Numquam qui cumque quod. Veniam consequatur sunt nemo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 51, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "invoice_id": 51, - "key": "ncbfowvo43e1ynt8lp6jwbejgveuouy2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:43:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 52, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0052", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-07", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.70", - "balance": "2.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 52, - "quantity": 5, - "cost": 3.14, - "product_key": "soluta", - "notes": "Omnis qui quibusdam a eveniet sint sint. Dolor corporis pariatur error eum quia ut. Atque ullam repudiandae rerum quo et non molestiae voluptatum. Rem excepturi aut facilis vero id laborum. Est reprehenderit cupiditate est enim et error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 52, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "invoice_id": 52, - "key": "rbcfmdgnlawgrzju6rmwdep2wgvijmee", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:44:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 53, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0053", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-25", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.24", - "balance": "6.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 53, - "quantity": 6, - "cost": 5.04, - "product_key": "natus", - "notes": "Delectus assumenda possimus a. Ipsam officiis ipsam temporibus ut modi velit fuga odit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 53, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "invoice_id": 53, - "key": "5jfbcegrlcl2zciq56x3mcitpmo5i8pi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:44:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 54, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0054", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.82", - "balance": "5.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 54, - "quantity": 2, - "cost": 5.41, - "product_key": "sed", - "notes": "Fuga voluptatem mollitia dolores alias aut dolores repudiandae. Quod et eaque corporis. Cupiditate voluptatum et a enim consequatur in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 54, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "invoice_id": 54, - "key": "o5yt4bfd9z5empm79jt8oydwjmdbhaiq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:44:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 65, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0065", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.48", - "balance": "12.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 65, - "quantity": 6, - "cost": 4.08, - "product_key": "odio", - "notes": "Ipsum placeat sed et. Non amet praesentium aut repellat. Corrupti minus quas aut expedita fugit illo modi. Qui in provident possimus maxime eaque quo omnis rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 65, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "invoice_id": 65, - "key": "pjffwm68qf8ds28qmf99sr0h7sm7onw8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:45:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 66, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0066", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.28", - "balance": "17.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 66, - "quantity": 6, - "cost": 3.38, - "product_key": "fuga", - "notes": "Autem in fugit suscipit sequi. Aut harum culpa illo nihil velit accusantium similique minima. At molestias quod qui architecto omnis consequuntur. Fugit libero molestiae expedita nulla dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 66, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "invoice_id": 66, - "key": "qaugi2yy8ppvbltu1fdoybmlefdanz7c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:45:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 67, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0067", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.18", - "balance": "11.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 67, - "quantity": 3, - "cost": 7.06, - "product_key": "perferendis", - "notes": "Non quibusdam consequuntur nisi expedita. Illo ipsum velit repudiandae velit itaque dolores et. Sint quod voluptas perspiciatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 67, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "invoice_id": 67, - "key": "9oldlenpfkawan5ma6eromxxajvstc8c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:45:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 68, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0068", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-26", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.10", - "balance": "20.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 68, - "quantity": 5, - "cost": 6.02, - "product_key": "et", - "notes": "Non est et expedita et quos repudiandae. Vitae eius omnis animi. Accusamus sapiente officia iusto rerum sapiente dolor laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 68, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "invoice_id": 68, - "key": "ptihanwet38fjvwtujqrzuz1hswqy3xt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:45:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 69, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0069", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-10", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.19", - "balance": "32.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 69, - "quantity": 7, - "cost": 5.17, - "product_key": "libero", - "notes": "Dicta cum aut accusantium cum sit distinctio asperiores. Est molestiae aut exercitationem dicta aut sit repellat. In omnis velit non doloribus molestias. Minus eaque sit quisquam est autem repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 69, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "invoice_id": 69, - "key": "zaxfykojzfehibzeva9nsejli9xr2adq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:46:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 70, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0070", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.21", - "balance": "3.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 70, - "quantity": 7, - "cost": 1.03, - "product_key": "placeat", - "notes": "Animi quo qui enim ut aut. Maiores nostrum dolorem eos ut qui voluptas. Ut aspernatur quia sit saepe ea amet. Aliquam et officia sed aperiam. Sit laborum unde quas repellendus quas dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 70, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "invoice_id": 70, - "key": "nuyemaxbvxn4fweilz69ozjsxdkmlpeg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:46:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 71, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0071", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.60", - "balance": "25.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 71, - "quantity": 6, - "cost": 9.6, - "product_key": "a", - "notes": "Quis quisquam repudiandae aliquid nihil eum occaecati sed. Fugit a omnis sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 71, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "invoice_id": 71, - "key": "gdxyx36tvrsblm4i6fcarvxubvuo2r39", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:46:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 72, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0072", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.55", - "balance": "0.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 72, - "quantity": 5, - "cost": 3.51, - "product_key": "minus", - "notes": "Ut voluptates magni porro cupiditate ad nihil fuga. Quia quia quis sit aut eveniet eum. Mollitia consequuntur repellendus officia atque. Ex sunt sed autem amet quas voluptas soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 72, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "invoice_id": 72, - "key": "vrbfpxdvtibes6tat3uv7r2lkwd4feql", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:47:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 73, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0073", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.58", - "balance": "11.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 73, - "quantity": 6, - "cost": 1.93, - "product_key": "corporis", - "notes": "Et sunt aut veniam et minima. Corporis odio facere veniam sequi quibusdam omnis repudiandae. Dicta et rem molestiae voluptas sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 73, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "invoice_id": 73, - "key": "gqxq9pje4u43h12fntz8padumqyvig63", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:47:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 74, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0074", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.74", - "balance": "5.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 74, - "quantity": 1, - "cost": 8.74, - "product_key": "provident", - "notes": "Inventore harum quisquam ratione ut iusto. Maiores dicta corrupti voluptas ut eveniet. Veniam impedit aut sit incidunt harum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 74, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "invoice_id": 74, - "key": "4is9nnlffgkvmrje4ntrxibltnto9gf2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:47:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 85, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0085", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": "2020-03-14", - "due_date": "2019-11-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.35", - "balance": "23.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 85, - "quantity": 5, - "cost": 7.27, - "product_key": "error", - "notes": "Enim nisi eveniet quasi consequatur. Voluptatem sint molestias harum fugiat aut. Maiores sit dignissimos aliquid et ut. Ea sed ut ea est totam. Laboriosam beatae est veniam. Aut eos necessitatibus et libero. Esse sit blanditiis est sed totam. Ullam at fugit voluptatem voluptates.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 85, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "invoice_id": 85, - "key": "7jbxr1fx36lfgzzczqonjqgvzyxojvfu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:47:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 86, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0086", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.80", - "balance": "11.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 86, - "quantity": 4, - "cost": 6.7, - "product_key": "qui", - "notes": "Aut facilis temporibus rem ratione voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 86, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "invoice_id": 86, - "key": "u62pgbo8b6vawxtdxkekgd7phiuxc8vx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:48:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 87, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0087", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.20", - "balance": "8.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 87, - "quantity": 10, - "cost": 5.52, - "product_key": "soluta", - "notes": "Est fugit tempore voluptas aperiam officiis facilis harum. Quod aperiam velit enim et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 87, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "invoice_id": 87, - "key": "2mqd7iktxoyp1ogui9fapf144xglmshn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:48:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 88, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0088", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.14", - "balance": "12.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 88, - "quantity": 2, - "cost": 9.07, - "product_key": "qui", - "notes": "Ex animi itaque reiciendis tempora et neque. Dolores molestiae sequi molestiae qui veniam sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 88, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "invoice_id": 88, - "key": "6e0llaphrfpcxgbfsoa990v5tm8fgk3x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:48:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 89, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0089", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-30", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.40", - "balance": "1.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 89, - "quantity": 10, - "cost": 5.24, - "product_key": "odit", - "notes": "Voluptatem error et voluptas excepturi explicabo natus commodi. Earum sequi aliquam eum eius sed. Sint voluptatem earum harum debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 89, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "invoice_id": 89, - "key": "orxiqnuru4uhqqn9dbz0junuwxvnrq5m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:49:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 90, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0090", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.90", - "balance": "1.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 90, - "quantity": 5, - "cost": 5.18, - "product_key": "nemo", - "notes": "Eaque optio voluptatem eos occaecati reprehenderit fuga non. Ut necessitatibus odit provident ea ea quia fugiat ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 90, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "invoice_id": 90, - "key": "nlza2sgfesgedftea6xzz84sfiuekjln", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:49:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 91, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0091", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.88", - "balance": "8.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 91, - "quantity": 2, - "cost": 4.94, - "product_key": "incidunt", - "notes": "Necessitatibus ipsa facere sunt omnis excepturi illo earum. Similique culpa adipisci porro rerum tempore commodi. Autem ratione itaque rerum earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 91, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "invoice_id": 91, - "key": "lzhvudaekdhjab139tslcymzragfceus", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:49:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 92, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0092", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.90", - "balance": "8.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 92, - "quantity": 5, - "cost": 9.18, - "product_key": "similique", - "notes": "Distinctio eos possimus commodi omnis reiciendis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 92, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "invoice_id": 92, - "key": "ibskcoh9coerd0gjvykyz2dvp6o2yr08", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:50:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 93, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0093", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.68", - "balance": "9.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 93, - "quantity": 1, - "cost": 9.68, - "product_key": "et", - "notes": "Iusto unde dicta nemo rerum libero. Amet quia fugit voluptas voluptatem aspernatur. Voluptas enim eos ut totam id qui. Quis voluptas et esse consequatur error possimus laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 93, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "invoice_id": 93, - "key": "jnatkjlakvcdvgy0sjebkt0c2mybgviv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:50:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 94, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0094", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-13", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.15", - "balance": "33.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 94, - "quantity": 5, - "cost": 8.63, - "product_key": "et", - "notes": "Quidem sed quis incidunt eum sit sit inventore tenetur. Velit ut beatae recusandae excepturi odio aut in. Cum eos rerum dolorem qui qui aspernatur natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 94, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "invoice_id": 94, - "key": "zjvmc7xrbhyl1bhbfo9oiaduobt5svqd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:50:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 105, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0105", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.09", - "balance": "10.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 105, - "quantity": 9, - "cost": 6.01, - "product_key": "sapiente", - "notes": "Est ratione doloremque quod enim et. Soluta maiores ab assumenda facilis. Suscipit soluta consectetur saepe. Laborum numquam debitis impedit deleniti sequi quaerat voluptas recusandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 105, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "invoice_id": 105, - "key": "cpkq872bysz2t6pkoyxd3ud7prowk4an", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:50:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 106, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0106", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-10", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "96.00", - "balance": "79.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 106, - "quantity": 10, - "cost": 9.6, - "product_key": "aliquid", - "notes": "Consectetur omnis possimus omnis officia praesentium. Repellat fugiat nemo numquam. Qui repellat qui sit aliquid quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 106, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "invoice_id": 106, - "key": "7ekbttr4majqi8lch58ktc89e7m27ktz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:51:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 107, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0107", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-13", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.40", - "balance": "21.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 107, - "quantity": 7, - "cost": 6.2, - "product_key": "qui", - "notes": "Sed enim enim facere dolore officia voluptas unde iste.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 107, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "invoice_id": 107, - "key": "k8nagqxxdptce5lrxta5eicyrdrvksis", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:51:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 108, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0108", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-09", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.32", - "balance": "16.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 108, - "quantity": 8, - "cost": 6.04, - "product_key": "et", - "notes": "Voluptas recusandae distinctio et ipsum sed distinctio. Veniam quia tenetur rerum ut. Excepturi eos rerum sed repudiandae. Rem distinctio aperiam amet vel eum ea autem nostrum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 108, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "invoice_id": 108, - "key": "ntjensmbwakfwoeqyfhqu4mjcx4vvgus", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:51:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 109, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0109", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.58", - "balance": "0.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 109, - "quantity": 6, - "cost": 1.43, - "product_key": "veniam", - "notes": "Laudantium asperiores voluptatibus est tempore pariatur enim ipsa. Dolores ipsam perferendis suscipit molestias ab. Perspiciatis autem quos enim molestiae voluptates ipsum rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 109, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "invoice_id": 109, - "key": "kjm29kfscsaykhuerioa613qee30vdmu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:52:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 110, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0110", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": "2020-03-14", - "due_date": "2019-11-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "93.20", - "balance": "79.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 110, - "quantity": 10, - "cost": 9.32, - "product_key": "aspernatur", - "notes": "Deserunt omnis iure exercitationem. Voluptatum itaque delectus vero aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 110, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "invoice_id": 110, - "key": "eeawbubvkzue8gnubp9c5zgb5uijb1uj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:52:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 111, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0111", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.71", - "balance": "1.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 111, - "quantity": 1, - "cost": 2.71, - "product_key": "quos", - "notes": "Non rerum esse optio doloremque asperiores rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 111, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "invoice_id": 111, - "key": "omxgi4qpb1kgvi0yfrr8kcjvchcglhat", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:52:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 112, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0112", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-14", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.50", - "balance": "3.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 112, - "quantity": 10, - "cost": 2.35, - "product_key": "fugit", - "notes": "Iure odit est nostrum beatae numquam ex. Eligendi culpa quibusdam et in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 112, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "invoice_id": 112, - "key": "ljba4b1huacals7ekpxqpzu2rrfhwzzq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:52:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 113, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0113", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": "2020-03-14", - "due_date": "2019-11-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.95", - "balance": "18.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 113, - "quantity": 5, - "cost": 3.99, - "product_key": "illum", - "notes": "Saepe ut nisi ipsam corporis. Quia ut quod aliquid qui ut quis ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 113, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "invoice_id": 113, - "key": "7fjzzlmxbm0hetcnl10em7fxbgz8qfmx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:53:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 114, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0114", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-04", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.04", - "balance": "2.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 114, - "quantity": 7, - "cost": 4.72, - "product_key": "optio", - "notes": "Et aut nostrum sit nemo. Et aut voluptates tenetur ea ipsum eligendi harum. Qui inventore necessitatibus exercitationem quae ea. Rerum eos dolores quaerat dolor. Quaerat aut odit ipsa sit ea beatae minus. Quia repellat eius omnis porro.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 114, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "invoice_id": 114, - "key": "gm3zw6q5kthza8rkyvxnexwbotgiqgma", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:53:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 125, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 6, - "design_id": 1, - "number": "0125", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-26", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.75", - "balance": "0.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 125, - "quantity": 5, - "cost": 8.75, - "product_key": "illum", - "notes": "Rerum beatae vero ipsum qui natus autem aliquid.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 125, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "invoice_id": 125, - "key": "injygznggwoskf88gnozasduuat7ljpj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:53:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 126, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0126", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.00", - "balance": "5.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 126, - "quantity": 3, - "cost": 9, - "product_key": "est", - "notes": "Porro aut eum illum. Voluptas accusantium temporibus qui ut esse nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 126, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "invoice_id": 126, - "key": "cyxcfsge6suqj3zmr5kjvpvt4uwenpsn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:54:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 127, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0127", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-11", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.39", - "balance": "5.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 127, - "quantity": 9, - "cost": 1.71, - "product_key": "qui", - "notes": "Et quam hic hic itaque debitis tempore pariatur. Ex dolor omnis aut sed architecto libero eos. Explicabo numquam maxime odio quam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 127, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "invoice_id": 127, - "key": "iaqakgii4bzuxpnuo6m8ijm5i4yrttr7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:54:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 128, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0128", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.60", - "balance": "23.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 128, - "quantity": 5, - "cost": 5.12, - "product_key": "sint", - "notes": "Dolorem error assumenda sunt non occaecati qui. Voluptas magni eligendi aut eum aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 128, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "invoice_id": 128, - "key": "u3njd61bpjywaq0aky8kbn2lilrbf8q9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:54:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 129, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0129", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-10", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.98", - "balance": "37.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 129, - "quantity": 6, - "cost": 9.33, - "product_key": "assumenda", - "notes": "Iusto ut consequuntur quod distinctio autem suscipit harum. Quae officia eius nesciunt consequatur vel fugiat. Iusto ut consectetur eos quis atque quia aliquam. Earum quis sed reiciendis eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 129, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "invoice_id": 129, - "key": "zaj62okvl3iqnac26efwfvtqizsjo7fo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:54:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 130, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0130", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.64", - "balance": "9.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 130, - "quantity": 2, - "cost": 7.82, - "product_key": "labore", - "notes": "Nemo esse dolor est. Est optio ab aut sed. Iure doloremque quos nulla id et. Omnis minus accusantium ad optio numquam unde atque. Sunt possimus incidunt vero. Assumenda vero ea non ut maiores repudiandae temporibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 130, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "invoice_id": 130, - "key": "tw5gmejrinhtskguvadloq0zcumwgfxa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:55:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 131, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0131", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-16", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "86.76", - "balance": "29.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 131, - "quantity": 9, - "cost": 9.64, - "product_key": "ab", - "notes": "Quia totam recusandae excepturi earum et qui. Et soluta dolore non numquam ut cumque. Delectus hic ut et ut omnis magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 131, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "invoice_id": 131, - "key": "6tn5mw0wl6gj8bt3o7zhw8kv1ufho3o2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:55:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 132, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0132", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.08", - "balance": "14.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 132, - "quantity": 4, - "cost": 4.52, - "product_key": "dolores", - "notes": "Aliquam impedit labore eum corporis. Quia voluptates nam ducimus tempore corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 132, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "invoice_id": 132, - "key": "lnzdkhzabj8tgnkv7alejuk8okzdzgcd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:55:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 133, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0133", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-02", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.02", - "balance": "8.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 133, - "quantity": 2, - "cost": 9.51, - "product_key": "voluptate", - "notes": "Blanditiis a blanditiis dignissimos et. Adipisci similique et quaerat voluptatem eveniet. Natus voluptatem molestiae molestiae voluptatem quis similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 133, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "invoice_id": 133, - "key": "hvnusli09advkssos5bocwmapi4ykejz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:56:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 134, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0134", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.68", - "balance": "26.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 134, - "quantity": 7, - "cost": 4.24, - "product_key": "earum", - "notes": "Cum odio quaerat error ullam qui. Incidunt nesciunt ipsum nostrum neque quod assumenda voluptatem. Eum et ex et itaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 134, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "invoice_id": 134, - "key": "yrbxuwq39o0y49bcrwz6fjmwsqukqcy4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:56:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 145, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0145", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-15", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.40", - "balance": "4.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 145, - "quantity": 8, - "cost": 8.55, - "product_key": "ipsum", - "notes": "Deserunt doloribus ut officiis aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 145, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "invoice_id": 145, - "key": "6avy0muzv5pb8z39xkbs705v1w2k21t6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 146, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0146", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.35", - "balance": "7.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 146, - "quantity": 5, - "cost": 1.67, - "product_key": "asperiores", - "notes": "Sunt quis non occaecati est totam ut. Et reiciendis sapiente quasi qui perferendis. Voluptatibus rerum saepe dolor laudantium id quo error. Aut natus et dolorem fugiat est voluptate. Nihil dolorem distinctio sint vero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 146, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "invoice_id": 146, - "key": "dbdfjzhnld3r72kuse8gpnyf8qrvr43x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 147, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0147", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-18", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.56", - "balance": "1.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 147, - "quantity": 4, - "cost": 7.14, - "product_key": "nihil", - "notes": "Fuga error officiis est molestiae eum quis. Laborum architecto natus perspiciatis repellat est at labore. Qui exercitationem nesciunt a optio praesentium eum consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 147, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "invoice_id": 147, - "key": "kkxvm1wmbzpvnizowyifkkhg6ouuhznj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 148, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0148", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-13", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.14", - "balance": "15.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 148, - "quantity": 2, - "cost": 9.57, - "product_key": "a", - "notes": "Recusandae aspernatur voluptatem est dolor. Sunt rerum laboriosam aperiam debitis et dicta dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 148, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "invoice_id": 148, - "key": "bwdsskzrcw15zdo2ki7txfxrpsrpq76q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 149, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0149", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.68", - "balance": "7.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 149, - "quantity": 2, - "cost": 6.34, - "product_key": "quia", - "notes": "Neque perferendis rerum omnis dolorum consequatur. Numquam qui cupiditate quod laboriosam ut eveniet voluptas. Dolores praesentium architecto et autem eveniet commodi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 149, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "invoice_id": 149, - "key": "tf0j2aipauxd3dz2x9hqnwejydahwwex", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 150, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0150", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-17", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.48", - "balance": "3.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 150, - "quantity": 8, - "cost": 3.06, - "product_key": "sit", - "notes": "Sit eum fuga incidunt sit quasi nobis rerum accusamus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 150, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "invoice_id": 150, - "key": "f57hajdyuzeldwin3amemzoppud7nhfi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 151, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0151", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": "2020-03-14", - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.92", - "balance": "4.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 151, - "quantity": 4, - "cost": 6.73, - "product_key": "et", - "notes": "Sunt nihil incidunt et deserunt non dicta. Vel aut non ratione qui enim id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 151, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "invoice_id": 151, - "key": "nxfbvsr3h5nkg3kggjujk9huythlaahc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 152, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0152", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-13", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.52", - "balance": "5.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 152, - "quantity": 2, - "cost": 4.76, - "product_key": "aut", - "notes": "Amet minus magnam mollitia ad. Inventore explicabo eum neque ut voluptas. Cum quo doloribus corporis amet et dignissimos id ducimus. Voluptatum et aut ullam inventore alias reiciendis explicabo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 152, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "invoice_id": 152, - "key": "iphje4kcqfswgtviefpe2jud5xsyzmse", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 153, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0153", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-25", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.40", - "balance": "1.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 153, - "quantity": 2, - "cost": 7.7, - "product_key": "facere", - "notes": "Aut ut sit expedita deserunt. Velit aut sunt voluptas cupiditate. Expedita quis consequuntur est consequuntur aliquam voluptas non assumenda. Voluptates nisi vero a aut optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 153, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "invoice_id": 153, - "key": "dauwxnubeoln7tj9p3gtssdonkefuvhb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 154, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0154", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-20", - "last_sent_date": "2020-03-14", - "due_date": "2019-11-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.99", - "balance": "7.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 154, - "quantity": 1, - "cost": 9.99, - "product_key": "provident", - "notes": "Quia maxime ex et asperiores et id. Non itaque doloremque est qui consequatur dolore. Facere commodi est explicabo error est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 154, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "invoice_id": 154, - "key": "bqy9skjw0ulnsnvd79xqnpsghzz48hkz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 165, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0165", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.98", - "balance": "12.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 165, - "quantity": 9, - "cost": 3.22, - "product_key": "magni", - "notes": "Voluptatem commodi et rerum praesentium illo occaecati. Accusamus quod aperiam amet. Doloribus inventore aut quia earum in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 165, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "invoice_id": 165, - "key": "9766nwoefaobdr8dufbpvefefykxboek", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:58:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 166, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0166", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.54", - "balance": "39.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 166, - "quantity": 6, - "cost": 9.59, - "product_key": "quibusdam", - "notes": "Quia iure omnis ullam qui. Reiciendis earum et et alias fuga recusandae velit. Placeat et voluptas voluptatibus architecto et qui. Sunt nihil consequatur facilis fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 166, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "invoice_id": 166, - "key": "9kb0vcyltrkynlrqhltfqd450fwxvtyj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:59:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 167, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0167", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.71", - "balance": "8.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 167, - "quantity": 7, - "cost": 1.53, - "product_key": "vel", - "notes": "Animi quaerat excepturi rem cumque et voluptas ab et. Iure quia et et. Quisquam et beatae quae delectus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 167, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "invoice_id": 167, - "key": "ugrqsfqntcbyqoixhjxrzlsxyxreiozu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:59:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 168, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0168", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-20", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "87.30", - "balance": "66.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 168, - "quantity": 9, - "cost": 9.7, - "product_key": "quo", - "notes": "Accusamus aut quis illum. Sit consectetur doloremque aliquam libero qui. Reprehenderit quos consequatur non asperiores voluptatem ullam. Esse voluptas consequuntur sed et qui sit voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 168, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "invoice_id": 168, - "key": "n9jbo7hswcdiw3086ch08unlrfoskga3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:59:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 169, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0169", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.76", - "balance": "0.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 169, - "quantity": 1, - "cost": 4.76, - "product_key": "ipsum", - "notes": "Dolores repellendus ut doloribus possimus. Ut ut sit blanditiis et libero. Est quas culpa eveniet blanditiis ipsum a rerum sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 169, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "invoice_id": 169, - "key": "stxdccs2dkftrhyodrcwr2pnnb2oqr64", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:59:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 170, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 6, - "design_id": 1, - "number": "0170", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-02", - "last_sent_date": "2020-03-14", - "due_date": "2020-04-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.10", - "balance": "0.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 170, - "quantity": 5, - "cost": 4.22, - "product_key": "explicabo", - "notes": "Sunt fugit quis voluptatem eos fugiat. Dolor earum assumenda ea eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-04-04", - "deleted_at": null, - "invitations": [ - { - "id": 170, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "invoice_id": 170, - "key": "ufavgiunio3js0j63kyqdjvaste37ped", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:00:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 171, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0171", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-12", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.12", - "balance": "8.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 171, - "quantity": 4, - "cost": 7.28, - "product_key": "praesentium", - "notes": "Magni fugit at fuga in qui non tenetur. Quia adipisci natus qui. Quibusdam mollitia et laborum dignissimos ut tempora. Esse id dolor vel animi atque dolorem inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 171, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "invoice_id": 171, - "key": "k8utcxofpxzrgkrpfk9mkv69ry5wvyyv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:00:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 172, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0172", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.06", - "balance": "2.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 172, - "quantity": 3, - "cost": 5.02, - "product_key": "quod", - "notes": "Commodi placeat modi aut alias sed. Aut tempore earum labore est et. Veniam illum eum officiis dicta similique labore placeat deleniti. Soluta perspiciatis aspernatur saepe in rerum magni inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 172, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "invoice_id": 172, - "key": "6h6iah5jvmhv7xzm4j7lhtgnyivfaevn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:00:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 173, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0173", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.39", - "balance": "2.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 173, - "quantity": 3, - "cost": 3.13, - "product_key": "porro", - "notes": "Omnis inventore earum ab aut cumque. Dolore quia et qui quia mollitia quia ea. Accusantium error similique et totam porro non possimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 173, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "invoice_id": 173, - "key": "wlkx0p5sympjbiabywykkttlxaze4jja", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:01:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 174, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0174", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-26", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.14", - "balance": "20.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 174, - "quantity": 6, - "cost": 4.69, - "product_key": "eos", - "notes": "Repellat porro aut nam. Cum quia praesentium provident consectetur aut. Cum dignissimos aspernatur dicta voluptatem. Sapiente velit harum molestias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 174, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "invoice_id": 174, - "key": "knpy8h4kaodhxxbdvtr7gzg746x2ofm4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:01:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 185, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0185", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": "2020-03-14", - "due_date": "2019-11-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.75", - "balance": "16.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 185, - "quantity": 5, - "cost": 5.15, - "product_key": "ducimus", - "notes": "Libero totam sed et repellat eum quos. Ullam non maxime et vel sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 185, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "invoice_id": 185, - "key": "ijorx6l36yb80qdu577kx6kzu6em9hki", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:01:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 186, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0186", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": "2020-03-14", - "due_date": "2020-02-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.70", - "balance": "21.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 186, - "quantity": 10, - "cost": 4.57, - "product_key": "reiciendis", - "notes": "Est qui incidunt qui. Id ipsum explicabo laboriosam repellat ut adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 186, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "invoice_id": 186, - "key": "suvkgsex1vjx4qjatlomeecwfmonsn0a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:02:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 187, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0187", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-04", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.49", - "balance": "6.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 187, - "quantity": 1, - "cost": 9.49, - "product_key": "ut", - "notes": "Sed perferendis minima culpa ducimus iste rerum. Tempore recusandae qui adipisci autem quo. Assumenda dolor quas blanditiis quas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 187, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "invoice_id": 187, - "key": "1b4roxa2kh3qhoqjhmeycafxle1mx9tb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:02:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 188, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0188", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": "2020-03-14", - "due_date": "2020-05-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.41", - "balance": "22.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 188, - "quantity": 9, - "cost": 4.49, - "product_key": "nihil", - "notes": "Earum aliquam voluptas vitae repellendus. Ut in ex corrupti officiis esse. Dolorum hic ut dolorem. Nobis repellat animi veniam cum facere error earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 188, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "invoice_id": 188, - "key": "5vqq6fv6enjzlrhvzzjrxt9bhwpvv6mq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:02:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 189, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0189", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.88", - "balance": "3.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 189, - "quantity": 4, - "cost": 1.47, - "product_key": "enim", - "notes": "Facilis rerum ab ipsam provident. Est et voluptatibus molestiae. Quae iste tempore vitae aut consequatur magnam. Voluptas magnam accusamus molestiae expedita recusandae. Sit alias quisquam illum provident. Odio velit eveniet placeat aliquam. Aliquam tenetur eaque dolorum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 189, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "invoice_id": 189, - "key": "m2kida4cus32zvxatyiyymtfpw43fcyl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:02:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 190, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0190", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-10", - "last_sent_date": "2020-03-14", - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.20", - "balance": "39.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 190, - "quantity": 10, - "cost": 4.02, - "product_key": "delectus", - "notes": "Id temporibus molestias porro recusandae. Consequatur et aut aut ad repellat. Debitis sequi tenetur vitae tenetur quisquam aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 190, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "invoice_id": 190, - "key": "rqaadf0mygqeii1kwwbxmefo4jxqkspx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:03:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 191, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0191", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.11", - "balance": "15.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 191, - "quantity": 7, - "cost": 2.73, - "product_key": "minima", - "notes": "Saepe aut distinctio velit saepe et. Aut non voluptas reiciendis. Autem nisi consequuntur sunt fugiat minima.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 191, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "invoice_id": 191, - "key": "n1lcfybekf9ka1hxyvipb2qb9g6tyyy1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 22:03:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 192, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0192", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2020-04-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.48", - "balance": "11.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 192, - "quantity": 3, - "cost": 4.16, - "product_key": "modi", - "notes": "Suscipit dignissimos tempore totam omnis deserunt aut. Incidunt culpa voluptas earum praesentium. Ratione quia vel accusamus possimus officiis ipsum rem. Magni voluptas reiciendis quis tempore. Velit ut placeat repellat omnis molestiae perferendis voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 192, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "invoice_id": 192, - "key": "92gox6ifnysip6kmfpzm87wnmzacpg2l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 193, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0193", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.24", - "balance": "22.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 193, - "quantity": 6, - "cost": 4.54, - "product_key": "repellat", - "notes": "Qui nostrum quia rerum illo et voluptas. Nulla eius et accusantium. Omnis nulla pariatur consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 193, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "invoice_id": 193, - "key": "7laffn9dgqog32pwpgthto7c1d0ftfdo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 194, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0194", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.30", - "balance": "16.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 194, - "quantity": 10, - "cost": 1.83, - "product_key": "voluptatem", - "notes": "Vero sint dolores sapiente doloremque laborum. Aut a et in perspiciatis et. Dolores officia ut minima amet est sint qui. Sed qui quod porro aliquam quis suscipit voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 194, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "invoice_id": 194, - "key": "kuyhkdjqnzjltmvzumj5fmf4zbtiayti", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 205, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 1, - "design_id": 1, - "number": "1582329314.217049", - "discount": "2.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "0000-00-00", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": "", - "terms": "", - "tax_name1": "Tax 2", - "tax_name2": "", - "tax_rate1": "20.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "607.99", - "balance": "607.99", - "partial": "0.00", - "partial_due_date": null, - "line_items": [ - { - "id": 217, - "quantity": 22, - "cost": 22, - "product_key": "2", - "notes": "2", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-02-21 23:55:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - }, - { - "id": 218, - "quantity": 3, - "cost": 11, - "product_key": "23", - "notes": "223", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-02-21 23:55:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-21", - "updated_at": "2020-02-21", - "deleted_at": null, - "invitations": [ - { - "id": 205, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "invoice_id": 205, - "key": "uuepwucgwsmc65vpo1mxgagtvsj6if2r", - "transaction_reference": null, - "message_id": null, - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": null, - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-21", - "updated_at": "2020-02-21", - "deleted_at": null - } - ] - }, - { - "id": 207, - "client_id": 1, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0206", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": null, - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": "", - "terms": "", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "155.00", - "balance": "155.00", - "partial": "0.00", - "partial_due_date": null, - "line_items": [ - { - "id": 221, - "quantity": 155, - "cost": 1, - "product_key": "", - "notes": "", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-03-06 22:18:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-06", - "updated_at": "2020-03-06", - "deleted_at": "2020-03-06", - "invitations": [ - { - "id": 207, - "company_id": 1, - "user_id": 1, - "client_contact_id": 1, - "invoice_id": 207, - "key": "1s7retk1ibkputpghfoauz6cvuohvm36", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-06 22:18:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-06", - "updated_at": "2020-03-06", - "deleted_at": null - } - ] - }, - { - "id": 208, - "client_id": 12, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0207", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.94", - "balance": "12.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 223, - "quantity": 2, - "cost": 9.97, - "product_key": "aut", - "notes": "Ipsum voluptate rem quis necessitatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:19:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 208, - "company_id": 1, - "user_id": 1, - "client_contact_id": 12, - "invoice_id": 208, - "key": "uuda8rbbleo5w9kxhcu4txw2dt7qo0dp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:19:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 210, - "client_id": 13, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0209", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-04-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.23", - "balance": "0.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 225, - "quantity": 1, - "cost": 6.23, - "product_key": "necessitatibus", - "notes": "Possimus eveniet perspiciatis provident. Est qui eligendi nemo. Beatae praesentium ea nisi culpa et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 210, - "company_id": 1, - "user_id": 1, - "client_contact_id": 13, - "invoice_id": 210, - "key": "f1avf3dryt0ddavurpmko6imfreqbhy8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 212, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0211", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-04-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.00", - "balance": "16.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 227, - "quantity": 10, - "cost": 2.6, - "product_key": "rerum", - "notes": "Et consequatur ducimus repellat id et vitae maiores. Expedita aliquam quis earum voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 212, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 212, - "key": "yrkxkevhvlitddxfi3fg8sopa9vy1ffm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 213, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0212", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.84", - "balance": "22.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 228, - "quantity": 3, - "cost": 8.28, - "product_key": "quaerat", - "notes": "Aut autem fuga molestiae. Voluptate omnis omnis aperiam dolore in aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 213, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 213, - "key": "es8mezewdde5praq6n8w9v6hspn98zu4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 214, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0213", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-17", - "last_sent_date": null, - "due_date": "2020-02-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.02", - "balance": "10.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 229, - "quantity": 9, - "cost": 1.78, - "product_key": "dolores", - "notes": "Voluptas natus odio optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 214, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 214, - "key": "jtqwglxqmvqjcmi0horeodutiolcgfpw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 215, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0214", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2020-05-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.10", - "balance": "6.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 230, - "quantity": 10, - "cost": 3.01, - "product_key": "quas", - "notes": "Quod ut ducimus consequuntur. Repellendus qui hic corporis sequi. Qui ut omnis unde incidunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 215, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 215, - "key": "vpyidfxa51l0o7ptxot7d1jaztzwlolb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 216, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0215", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.08", - "balance": "17.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 231, - "quantity": 8, - "cost": 2.26, - "product_key": "autem", - "notes": "Quia nobis maiores consequatur impedit dolorem autem esse. Officia possimus illum omnis et et quod. Illum odit numquam facere amet sed nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 216, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 216, - "key": "sj75rqgmt2lcdltpzm4jmjgsmrxwheco", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 217, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0216", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2019-12-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.65", - "balance": "3.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 232, - "quantity": 1, - "cost": 5.65, - "product_key": "magni", - "notes": "Voluptates harum sunt ex nemo. Et harum quibusdam maiores non magnam. Accusamus iste earum quaerat et. Perferendis iusto quibusdam voluptatem ad aut cum ullam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 217, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 217, - "key": "v4tjclxtbsgxogs33fxhpjw2563rfc9x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 218, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0217", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.15", - "balance": "30.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 233, - "quantity": 7, - "cost": 6.45, - "product_key": "aut", - "notes": "Laboriosam laudantium aut rerum soluta qui aut. Soluta odit est repellat corrupti illum ea. Et ut placeat sit ipsa asperiores laboriosam. Voluptates facere enim rerum corrupti. Saepe nobis nostrum iure atque. Quos et excepturi minus unde.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 218, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 218, - "key": "erpubky84zv2imfvenzjwsozhierzv3l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 219, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0218", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-13", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.07", - "balance": "0.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 234, - "quantity": 1, - "cost": 1.07, - "product_key": "voluptas", - "notes": "Debitis ea est qui illo. Quia perspiciatis velit officia dolor quia magni. Facilis id ut tempora ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 219, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 219, - "key": "eggjixevw4ugv1fgliexvurzqyjidyvh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 220, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0219", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-02", - "last_sent_date": null, - "due_date": "2020-02-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.56", - "balance": "2.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 235, - "quantity": 4, - "cost": 9.14, - "product_key": "nihil", - "notes": "Qui aliquam at quia sunt. Magni ducimus qui dignissimos nisi tempore aperiam recusandae exercitationem. Quisquam id itaque praesentium quis similique corrupti harum. Aut aliquid hic est quos rem ullam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 220, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 220, - "key": "5mlwahvr38jju680wwifv0teqgdzvgpx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 221, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0220", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.49", - "balance": "13.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 236, - "quantity": 9, - "cost": 6.61, - "product_key": "aut", - "notes": "Est similique temporibus velit ratione error autem facilis. Maiores modi blanditiis ratione velit. Ut ab et velit illo architecto eaque maxime. Quae dolor veritatis odio assumenda.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 221, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 221, - "key": "hpxze0v4lny9xnpvxbnmpi7lurnixudq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 222, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0221", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-29", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.97", - "balance": "9.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 237, - "quantity": 7, - "cost": 1.71, - "product_key": "dolores", - "notes": "Et nostrum eius similique perspiciatis. Ipsa odio animi iusto. Itaque vero reiciendis quasi sequi corrupti eos autem quam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 222, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 222, - "key": "2udjhllmmyjvhwmphjrfrnhbcn6xhqsz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 223, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0222", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-11", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.61", - "balance": "3.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 238, - "quantity": 1, - "cost": 6.61, - "product_key": "assumenda", - "notes": "Tenetur quia et occaecati et ut tenetur. Quia voluptatem dolore animi odit. Aut libero deleniti voluptatum repudiandae distinctio velit. Corporis excepturi qui omnis non vitae delectus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 223, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 223, - "key": "8zzdurzttfubmwqbxztvl0byjwd3f8uc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 224, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0223", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "56.46", - "balance": "12.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 239, - "quantity": 6, - "cost": 9.41, - "product_key": "accusamus", - "notes": "Distinctio tenetur quisquam sequi magni doloribus illo quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 224, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 224, - "key": "fwjppd0c9k781za2jszqognk4wyeqjyc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 225, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0224", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-13", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.65", - "balance": "0.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 240, - "quantity": 9, - "cost": 1.85, - "product_key": "sit", - "notes": "Sint voluptas rerum odit nesciunt. Vero odit eum nobis est. Et ratione sequi non non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 225, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 225, - "key": "218cxtqn1rqwefeg21i91qrdyksayxzq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 226, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0225", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.83", - "balance": "2.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 241, - "quantity": 1, - "cost": 9.83, - "product_key": "veniam", - "notes": "Et maiores est corporis mollitia voluptatem. Quis dolorum ab neque nisi ipsam. Quae magni maiores sequi. Iste ut et et ea. Officia et dolore minus. Voluptates distinctio vel animi rerum expedita quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 226, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 226, - "key": "nx0eacwxycxphgcvnuonsmnw0t4x2xdq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 227, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0226", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.35", - "balance": "0.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 242, - "quantity": 1, - "cost": 4.35, - "product_key": "distinctio", - "notes": "Necessitatibus aut magni dolor debitis modi qui nihil. Similique magnam nesciunt eos ullam. Sed id quisquam laborum et et. Eos debitis velit quam aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 227, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 227, - "key": "vctl209spnp6rsywx63jkxxmqx6i78kb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 228, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0227", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2020-02-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.27", - "balance": "1.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 243, - "quantity": 1, - "cost": 4.27, - "product_key": "inventore", - "notes": "Consequatur consectetur totam sed est enim et eos. Laudantium doloribus corrupti asperiores eius sed sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 228, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 228, - "key": "1qfuqbgwwplf0zejefnk6hjdk5p2opr5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 229, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0228", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.66", - "balance": "2.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 244, - "quantity": 6, - "cost": 1.11, - "product_key": "dignissimos", - "notes": "Non ab qui autem consectetur. Autem debitis sed assumenda et aut et. Voluptas tenetur quibusdam soluta placeat pariatur quas. Et ab sed sed aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 229, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 229, - "key": "jo73h8xugb9rwwjopbw492x9rt7pdpsp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 230, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0229", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-19", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.60", - "balance": "13.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 245, - "quantity": 2, - "cost": 7.3, - "product_key": "molestiae", - "notes": "Odit et recusandae deleniti est veniam consequatur necessitatibus. Animi eaque excepturi aut commodi. Voluptatum qui tempore quam eum saepe.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 230, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 230, - "key": "kmw7blusead0bplpguge6imf1qbev8f9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 231, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0230", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.78", - "balance": "0.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 246, - "quantity": 2, - "cost": 2.89, - "product_key": "aut", - "notes": "Asperiores veniam ab molestiae tenetur consequatur omnis quia. Eum ut dolor est et ducimus ut et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 231, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 231, - "key": "7srttmuqdxra8rafmcgdzt9xbs94zi6m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 232, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0231", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.42", - "balance": "20.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 247, - "quantity": 7, - "cost": 5.06, - "product_key": "perferendis", - "notes": "Neque quo doloremque aut dicta ipsa dolorem. Consequatur recusandae laborum rerum sapiente aut. Id pariatur aut esse commodi quia rerum. Fugiat et est modi molestiae nobis. Enim doloribus qui eaque. Quia ut eos iste ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 232, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 232, - "key": "szh5fqhtfzgk4pufplorxohus9d9btqa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 233, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0232", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-15", - "last_sent_date": null, - "due_date": "2020-01-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.40", - "balance": "0.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 248, - "quantity": 10, - "cost": 3.34, - "product_key": "pariatur", - "notes": "Natus totam sit autem qui cupiditate voluptates voluptatem. Eligendi voluptatem non et aut est architecto. Ut vel aspernatur aperiam cum nihil enim nisi. Assumenda ullam officia non omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 233, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 233, - "key": "mfkun8jwaiaxzbfml7nbilkzyv6k6jgm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 234, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0233", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2020-03-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.50", - "balance": "9.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 249, - "quantity": 10, - "cost": 1.85, - "product_key": "repellat", - "notes": "Aut voluptatibus sit veritatis voluptates sed qui. Reprehenderit voluptatum dolor soluta quam. Consequuntur sint consequuntur quis et numquam facere.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 234, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 234, - "key": "tiwuhyj3nz9vx8iqkd0pgbqaxdpuc2t2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 235, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0234", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.62", - "balance": "6.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 250, - "quantity": 6, - "cost": 5.77, - "product_key": "dolores", - "notes": "Temporibus quo et excepturi esse omnis tenetur necessitatibus. Esse temporibus dignissimos laboriosam commodi voluptatum. Qui sit sequi earum sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 235, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 235, - "key": "9qshosbmoc5cpvif6w0wbbum3zwge32c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 236, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0235", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-04-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.68", - "balance": "8.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 251, - "quantity": 2, - "cost": 7.84, - "product_key": "quisquam", - "notes": "Et perferendis eligendi sed sed. Suscipit corporis quidem nobis quibusdam ut itaque et. Rerum illum omnis consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 236, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 236, - "key": "bo7717revuftalb6o2osljodbyu3bkwm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 237, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0236", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.00", - "balance": "16.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 252, - "quantity": 2, - "cost": 8.5, - "product_key": "aliquid", - "notes": "Minus porro voluptas aliquam corporis. Aperiam autem deserunt porro rerum. Sed iusto eos quo dolores labore id hic error. Reiciendis quia sed ut magni molestiae doloremque aut. Officia aliquam accusantium similique doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 237, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 237, - "key": "m4jydcxzu1xuiimxkrriz7vqz3esei4p", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 238, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0237", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.85", - "balance": "5.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 253, - "quantity": 3, - "cost": 1.95, - "product_key": "neque", - "notes": "Vero sint aut qui molestiae. Labore recusandae autem provident totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 238, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 238, - "key": "ienzdovm7vibk5cn3tbmvrwbfub3medh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 239, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0238", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-21", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.50", - "balance": "11.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 254, - "quantity": 10, - "cost": 3.55, - "product_key": "tempora", - "notes": "Pariatur maiores possimus et esse quisquam. Odio est autem excepturi sequi aut mollitia rerum. Dolore nulla voluptate possimus hic ea. Et sed tempore molestiae ut est corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 239, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 239, - "key": "vsnbhrt6q8v3ycbyfs6rbmjczhvxxzh5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 240, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0239", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2019-12-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.01", - "balance": "1.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 255, - "quantity": 1, - "cost": 3.01, - "product_key": "reprehenderit", - "notes": "Quia omnis maxime delectus. Tempora consectetur aut nostrum id numquam odit vel. Ipsa ab et doloremque voluptatem et asperiores. Expedita maxime velit in natus. Accusantium sequi aspernatur dolores temporibus est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 240, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 240, - "key": "9sjmgsmm79zdtblyqxq1vcygu8nlsvgq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 241, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0240", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-02-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.42", - "balance": "2.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 256, - "quantity": 2, - "cost": 2.21, - "product_key": "rerum", - "notes": "Quo odio reiciendis velit eos. Sit et nobis voluptatum sit. Magni tempora delectus non dignissimos illum aut ea. Vitae dicta eligendi quasi voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 241, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 241, - "key": "s7t1qii8v75rzuvufmosyfkiigqo7bvz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 242, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0241", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.60", - "balance": "18.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 257, - "quantity": 6, - "cost": 3.6, - "product_key": "cupiditate", - "notes": "Sapiente animi et temporibus corporis voluptas recusandae quo. Architecto non et modi in. Corrupti dignissimos est perferendis ad voluptas ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 242, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 242, - "key": "bxhvlspyluwox1c5ewoo7vid7piotpmt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 243, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0242", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.98", - "balance": "20.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 258, - "quantity": 3, - "cost": 7.66, - "product_key": "recusandae", - "notes": "Aut quas sed aut assumenda quidem aut. Suscipit illum non nam quia et. Amet sit laboriosam quam quia aut. Iusto tempore iste sapiente et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 243, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 243, - "key": "nwvvzgwii9c111edcpajmtrfrrogykhc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 244, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0243", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.04", - "balance": "37.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 259, - "quantity": 7, - "cost": 7.72, - "product_key": "sint", - "notes": "Distinctio sunt molestiae iste est inventore. Culpa asperiores fuga aut voluptatem dolor accusantium. Nihil quo vitae qui numquam optio sint. Commodi esse repellendus soluta corrupti deserunt sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 244, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 244, - "key": "bccyz1m16ewhmdacti7l7iq1bgutuezl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 245, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0244", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.44", - "balance": "7.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 260, - "quantity": 8, - "cost": 3.43, - "product_key": "iste", - "notes": "Sit quia architecto nisi voluptatem optio illo. Quasi ipsum expedita et quo cumque. Ea atque commodi labore dolorem quia omnis explicabo. Quaerat consequatur vitae sit libero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 245, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 245, - "key": "n9ldmuqce1ulf5bs9ezecctaosjs8t9m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 246, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0245", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.24", - "balance": "10.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 261, - "quantity": 6, - "cost": 7.54, - "product_key": "porro", - "notes": "Eligendi nihil aut architecto rerum harum et. Provident iusto voluptas sit dolore qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 246, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 246, - "key": "qtfr8xpzy019nnaaeejlzmrbusprdzix", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 247, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0246", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-12", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.10", - "balance": "24.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 262, - "quantity": 10, - "cost": 3.61, - "product_key": "omnis", - "notes": "At et commodi ex culpa dolore et nemo ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 247, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 247, - "key": "ta3vid8t7dkrcruhuapnkyrpw3kntyqc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 248, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0247", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.08", - "balance": "2.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 263, - "quantity": 1, - "cost": 4.08, - "product_key": "optio", - "notes": "Sed non molestias tenetur consequatur dolorem unde magni. Totam vel non ducimus et nihil. Fugiat vero et perferendis velit nihil omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 248, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 248, - "key": "69s3xkk1ozggboh0c0v8drulfzztt8hh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 249, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0248", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.20", - "balance": "14.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 264, - "quantity": 10, - "cost": 3.72, - "product_key": "deleniti", - "notes": "Nihil quo voluptates aut aliquid magni. Enim et sunt optio id porro incidunt in molestiae. Impedit qui corporis nihil modi voluptatem. Sit omnis quae ab officia earum nam ut voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 249, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 249, - "key": "snoidtxqcfahxwshu51yckquzxzjuwak", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 250, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0249", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.24", - "balance": "6.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 265, - "quantity": 2, - "cost": 3.62, - "product_key": "atque", - "notes": "Odit illo non iure. Aliquam ut omnis quia doloribus ut aut repellat mollitia. Consequatur dicta et dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 250, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 250, - "key": "55lvghirnzntvi9nxznk7jrsvoub3lgb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 251, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0250", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.20", - "balance": "24.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 266, - "quantity": 6, - "cost": 8.2, - "product_key": "velit", - "notes": "Quod tenetur omnis facilis sit. Rerum rerum fugit voluptatem ad. Impedit nulla nemo magni eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 251, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 251, - "key": "r1exbdmczx5vocmohdgh2vmytmaorxyi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 252, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0251", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.15", - "balance": "1.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 267, - "quantity": 1, - "cost": 8.15, - "product_key": "eaque", - "notes": "Hic quam ut corporis ipsam. Cupiditate accusantium alias debitis voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 252, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 252, - "key": "mhvllgtmb0qosf7izniiet5yzodujvfm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 253, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0252", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2019-12-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.48", - "balance": "47.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 268, - "quantity": 6, - "cost": 9.58, - "product_key": "eius", - "notes": "Non saepe voluptas similique aliquid ducimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 253, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 253, - "key": "mpag83jswdiueywhor3ip6xcfirta3wd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 254, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0253", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2020-03-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.34", - "balance": "21.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 269, - "quantity": 3, - "cost": 7.78, - "product_key": "dignissimos", - "notes": "Impedit inventore vel ut placeat eligendi doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 254, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 254, - "key": "duzyjxcaydeganv9c2qezxnfndyxfkhd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 255, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0254", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-31", - "last_sent_date": null, - "due_date": "2019-12-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.40", - "balance": "14.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 270, - "quantity": 5, - "cost": 8.48, - "product_key": "repudiandae", - "notes": "Nemo omnis odio tenetur fuga aut. Non vitae cum voluptatem optio tempora sapiente illum. Harum quos libero optio veritatis dolor error. Enim perferendis saepe tempora corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 255, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 255, - "key": "7kskvtjaimnp3ghkdo3a1k39svg1twth", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 256, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0255", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "2020-04-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.30", - "balance": "35.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 271, - "quantity": 7, - "cost": 7.9, - "product_key": "dolorem", - "notes": "Vel sunt odio ea. Placeat sed distinctio ex ipsum quisquam in. Adipisci aspernatur cupiditate culpa enim nesciunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 256, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 256, - "key": "cxbj98f6vbkvszneb9xkg1oahczpn9kf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 257, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0256", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2019-12-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.98", - "balance": "1.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 272, - "quantity": 6, - "cost": 7.33, - "product_key": "facilis", - "notes": "Deserunt deserunt quo voluptas ipsa natus. Aperiam minima asperiores voluptates enim ipsam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 257, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 257, - "key": "gcrwc0fjq97frly5esratyvhwgqkwgeo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 258, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0257", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "79.10", - "balance": "70.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 273, - "quantity": 10, - "cost": 7.91, - "product_key": "aut", - "notes": "Maxime atque corrupti omnis error. Quia et perspiciatis et ullam voluptate molestiae sed. Itaque eligendi labore expedita perferendis vero in et. Sed et magnam esse veniam odit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 258, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 258, - "key": "flzuajdxh8p1aivtoln0rvfiwh9ynsgw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 259, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0258", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.90", - "balance": "23.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 274, - "quantity": 5, - "cost": 7.78, - "product_key": "culpa", - "notes": "Laudantium deleniti quo fugiat hic accusantium. Fugit atque fugit animi commodi harum vitae voluptate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 259, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 259, - "key": "iyz9vnm1rzmtibdon45qrowqevcl4uft", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 260, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0259", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.09", - "balance": "5.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 275, - "quantity": 1, - "cost": 6.09, - "product_key": "esse", - "notes": "At porro iure velit nihil. Necessitatibus voluptas assumenda modi commodi voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 260, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 260, - "key": "vevrortclcbttoalqco7lnbzwaduaggx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 261, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0260", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.58", - "balance": "29.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 276, - "quantity": 6, - "cost": 7.93, - "product_key": "quis", - "notes": "Quia enim deleniti odio quia aut. Voluptates reprehenderit doloremque reprehenderit laborum aut. Ratione non totam qui autem inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 261, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 261, - "key": "fksbyk8hhfmylpkpzl4uso1ssdijaoie", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 262, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0261", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.86", - "balance": "4.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 277, - "quantity": 2, - "cost": 4.43, - "product_key": "a", - "notes": "Sunt temporibus consequatur et et ipsum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 262, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 262, - "key": "y6heduioi0tlzjvhy7awft7vwaekxiz0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 263, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0262", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-02-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.16", - "balance": "25.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 278, - "quantity": 3, - "cost": 9.72, - "product_key": "illum", - "notes": "Quisquam officiis et et harum sunt. Aut voluptates et tempora debitis et non. Voluptatem rerum ullam aut laboriosam. In nam saepe reprehenderit est ut ut. Nemo esse officiis non quia possimus dignissimos. Eveniet rerum repellat eos autem ex vitae voluptas qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 263, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 263, - "key": "ebypltat5lhcdavixnytphwwpcwha6xg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 264, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0263", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.06", - "balance": "0.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 279, - "quantity": 1, - "cost": 1.06, - "product_key": "animi", - "notes": "A iste facere eum accusantium. Quia voluptatum neque doloremque illum repellat soluta quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 264, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 264, - "key": "loqqhdzyn4j5emo23nu6opglb5b6j61b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 265, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0264", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2020-06-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.85", - "balance": "29.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 280, - "quantity": 5, - "cost": 9.17, - "product_key": "consectetur", - "notes": "Aut commodi deleniti eum qui distinctio et itaque. Exercitationem harum dolore illum ut sunt ipsa. Quisquam et ducimus corporis perferendis quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 265, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 265, - "key": "zgryp4zit0o9soglsrxhg0l12vlqg37u", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 266, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0265", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.58", - "balance": "10.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 281, - "quantity": 2, - "cost": 6.29, - "product_key": "dolores", - "notes": "Qui expedita sed cum voluptas explicabo quo. Occaecati dolore porro nisi ducimus aliquam quos non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 266, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 266, - "key": "igyhtugcmltrjq2is4iogtkbsvtkpnqq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 267, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0266", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "2020-06-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.21", - "balance": "18.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 282, - "quantity": 9, - "cost": 4.69, - "product_key": "laudantium", - "notes": "In aut cumque temporibus omnis repudiandae ad amet. Quia vitae sint ipsa et consequuntur. Eos molestiae et alias et est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 267, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 267, - "key": "ipse69zwivhikv6nhnlfeywijjcrkiji", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 268, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0267", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.27", - "balance": "12.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 283, - "quantity": 7, - "cost": 4.61, - "product_key": "sed", - "notes": "Provident repellendus autem repellendus esse aliquam omnis. Quia ullam veritatis reprehenderit esse eius architecto magni. Deleniti ea voluptatibus est eveniet nisi labore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 268, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 268, - "key": "cm9nnz5c099hp0xrndjzt9bylebdogd3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 269, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0268", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-27", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.44", - "balance": "12.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 284, - "quantity": 3, - "cost": 6.48, - "product_key": "dicta", - "notes": "Iste sit mollitia magnam optio maxime.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 269, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 269, - "key": "bsr0gvfzktdpuk2ldels5amkkglxphoe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 270, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0269", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.75", - "balance": "2.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 285, - "quantity": 5, - "cost": 1.35, - "product_key": "architecto", - "notes": "Et dicta sint ipsum et. Rem voluptas illum autem et mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 270, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 270, - "key": "dlvwcpfxmzvnq3q5nalehanirwl5c2sn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 271, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0270", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-08", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.80", - "balance": "0.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 286, - "quantity": 1, - "cost": 9.8, - "product_key": "eum", - "notes": "Error natus vero hic sed vero ut recusandae. Accusantium recusandae qui odit mollitia maiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 271, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 271, - "key": "hva0docomzzwdvhbrkrivquoj0nivoem", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 272, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0271", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2019-12-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.20", - "balance": "9.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 287, - "quantity": 8, - "cost": 1.4, - "product_key": "ut", - "notes": "Eveniet blanditiis est explicabo soluta dolor culpa veritatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 272, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 272, - "key": "uc2rxserd5qkmbcsa02ajhmcxdm207lv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 273, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0272", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.03", - "balance": "2.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 288, - "quantity": 1, - "cost": 6.03, - "product_key": "quia", - "notes": "Explicabo quam est fuga veniam minus suscipit. Ut totam maiores id sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 273, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 273, - "key": "drkdug66vmjzeuqopltpqpobzzcpsy4i", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 274, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0273", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "69.00", - "balance": "11.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 289, - "quantity": 10, - "cost": 6.9, - "product_key": "labore", - "notes": "Autem deleniti eum iure quia suscipit tenetur. Iste eveniet vitae quasi blanditiis velit aut id. Alias quia voluptas laborum id quia. Quia quia in totam eligendi numquam aut rem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 274, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 274, - "key": "5anapku4ewgaouenyit51mls90it9l6j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 275, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0274", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.30", - "balance": "14.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 290, - "quantity": 5, - "cost": 4.66, - "product_key": "doloremque", - "notes": "Alias sit voluptatibus fugiat nulla. Ipsa dolore voluptatem dolor sint. Maiores rerum et velit et perspiciatis. Illo tempora et quam voluptatem magni. Officia qui cumque rem dolore ut. Qui quibusdam temporibus quia eveniet. Voluptas nesciunt in nemo exercitationem in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 275, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 275, - "key": "iyyuuo1nh3uham7t06rjcermiimjgmkr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 276, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0275", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "89.28", - "balance": "25.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 291, - "quantity": 9, - "cost": 9.92, - "product_key": "quo", - "notes": "Dolor est consequatur quia quibusdam eveniet. Enim beatae illum quasi eligendi ab saepe ut natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 276, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 276, - "key": "3dudtpqxwinbyppnrg87e84iqp4go2vc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 277, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0276", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-09", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "97.60", - "balance": "96.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 292, - "quantity": 10, - "cost": 9.76, - "product_key": "repellendus", - "notes": "Rerum est ratione non deleniti natus. Provident consequatur fugit odio et rem ab eos harum. Amet cumque sequi natus rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 277, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 277, - "key": "4ctzv3zxgnrlzrccpqlkj2q6zrqkzh0x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 278, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0277", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.40", - "balance": "1.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 293, - "quantity": 1, - "cost": 5.4, - "product_key": "quisquam", - "notes": "Ut sit dolore et sit. Quisquam dolorum dolore ut aspernatur architecto iusto voluptas. Tempora aliquam cumque facere qui. Magni cumque non id modi architecto. Et qui rerum dolores accusantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 278, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 278, - "key": "6osmvrnpbzjxyqsdiffu6o7orqyilmmz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 279, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0278", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.57", - "balance": "14.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 294, - "quantity": 9, - "cost": 2.73, - "product_key": "autem", - "notes": "Ratione quos ea eaque incidunt ex omnis. Beatae necessitatibus doloribus non ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 279, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 279, - "key": "7zujtgwdbdbdcow7nczx9ikh6yyizj9h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 280, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0279", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-31", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.32", - "balance": "0.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 295, - "quantity": 4, - "cost": 1.33, - "product_key": "est", - "notes": "Sit fuga suscipit et a totam. Ut magni exercitationem sapiente unde voluptas placeat. Explicabo debitis autem necessitatibus sint nisi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 280, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 280, - "key": "snobdxws6qt237wtjmwk85drlgtrxzjr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 281, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0280", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.08", - "balance": "14.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 296, - "quantity": 6, - "cost": 5.18, - "product_key": "et", - "notes": "Atque ut placeat enim inventore. Beatae vitae vero velit inventore deserunt nam hic facere. Dicta pariatur nisi eaque consequuntur quos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 281, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 281, - "key": "xx8tssioma58rkhf8oiylmxskqjdukuq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 282, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0281", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.02", - "balance": "27.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 297, - "quantity": 3, - "cost": 9.34, - "product_key": "corporis", - "notes": "Rerum aut modi aliquam. Perferendis velit in ad. Non ipsum exercitationem et minima quia praesentium. Non dolor nihil facilis. Suscipit culpa illo et enim libero. Voluptas unde ex voluptate repellat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 282, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 282, - "key": "o4xcklzimgn2l6bsrdifav5t3zsuqtm7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 283, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0282", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.65", - "balance": "29.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 298, - "quantity": 5, - "cost": 8.13, - "product_key": "magni", - "notes": "Enim harum et sapiente nemo aut est eveniet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 283, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 283, - "key": "aa38hdpxh54gxa5vmb09y4xbmpojgwur", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 284, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0283", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2020-05-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.63", - "balance": "13.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 299, - "quantity": 9, - "cost": 6.07, - "product_key": "pariatur", - "notes": "Suscipit dolorum vel distinctio repellat sit. Incidunt eum et ab laboriosam dolores. Ex quidem similique qui dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 284, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 284, - "key": "1j8yjbhur4571v3pjpj64mjhrqizfyr0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 285, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0284", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-12", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.95", - "balance": "3.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 300, - "quantity": 1, - "cost": 3.95, - "product_key": "autem", - "notes": "Fuga eum iste corrupti nobis. Adipisci at occaecati a animi rerum delectus voluptatem illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 285, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 285, - "key": "a7l7ggzi0wnrmtqc6jsihnd1rlbza5qx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 286, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0285", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.79", - "balance": "15.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 301, - "quantity": 7, - "cost": 3.97, - "product_key": "nemo", - "notes": "Ipsum voluptatum ut rerum voluptatibus qui animi. Consequatur ut asperiores explicabo dolor ut id. Culpa rem est et omnis omnis non repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 286, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 286, - "key": "hx39rqhnz83vhadc87nlzppweitjsu7h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 287, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0286", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.17", - "balance": "18.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 302, - "quantity": 9, - "cost": 2.13, - "product_key": "quam", - "notes": "Et laudantium placeat quibusdam veritatis qui omnis. Ut pariatur ducimus a amet. Tenetur itaque est odit fugit. Nemo voluptas a tenetur qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 287, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 287, - "key": "7eowzzcklu742ipgkdtgmnh3z5hszpac", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 288, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0287", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-28", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.16", - "balance": "2.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 303, - "quantity": 4, - "cost": 9.79, - "product_key": "rem", - "notes": "Animi ullam et totam assumenda. Rerum aliquam aut sit sed sed necessitatibus non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 288, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 288, - "key": "1fofpvjlcbboseq9ajzllrvsmwyb1v0i", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 289, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0288", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-05-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.34", - "balance": "12.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 304, - "quantity": 6, - "cost": 3.89, - "product_key": "et", - "notes": "Qui sint dolor et asperiores repudiandae. Error impedit nesciunt qui sed. Natus non minus soluta natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 289, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 289, - "key": "oe006ngplg91m36nquoz7q4tss7bxbod", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 290, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0289", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-11", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.74", - "balance": "40.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 305, - "quantity": 6, - "cost": 7.79, - "product_key": "libero", - "notes": "Iste veniam pariatur aliquid distinctio. Dolores est enim earum et praesentium facere voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 290, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 290, - "key": "kbxsja5wuntm4sdc24lj2fzoohagzi8k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 291, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0290", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-09", - "last_sent_date": null, - "due_date": "2019-12-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.98", - "balance": "2.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 306, - "quantity": 7, - "cost": 2.14, - "product_key": "enim", - "notes": "Nihil repellat aspernatur iste et dolore distinctio quasi. Reiciendis iste eum doloribus hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 291, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 291, - "key": "lfwefb2r13y2bibg8r9yznyaha8yx9u3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 292, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0291", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2019-12-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.68", - "balance": "0.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 307, - "quantity": 2, - "cost": 2.34, - "product_key": "sapiente", - "notes": "Est minima nihil eos eum sequi. Quis commodi dicta quae. Alias in ipsam nisi ab odio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 292, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 292, - "key": "rkfpkhialiif2satcseclfazcdekxr9n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 293, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0292", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2020-05-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.60", - "balance": "4.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 308, - "quantity": 4, - "cost": 6.4, - "product_key": "vel", - "notes": "Voluptatem enim earum nulla autem commodi. Omnis numquam esse in dolorem ut. Illo necessitatibus voluptas ratione ipsa. Quia non facilis mollitia omnis magnam molestiae voluptate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 293, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 293, - "key": "nqn1wadvpfpvhorivldvmcf0hnxojlbr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 294, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0293", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.68", - "balance": "12.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 309, - "quantity": 4, - "cost": 6.67, - "product_key": "doloribus", - "notes": "Repudiandae aliquid molestias aut qui ipsam et recusandae sit. Cumque eligendi quos qui tenetur quia est. Rerum nisi ea eum necessitatibus excepturi. Nihil molestiae explicabo eveniet tempora cumque vero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 294, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 294, - "key": "u0kyyw3zjgvhhumawlxrnpsgfjiafewx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 295, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0294", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.95", - "balance": "3.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 310, - "quantity": 7, - "cost": 5.85, - "product_key": "perspiciatis", - "notes": "Numquam dignissimos laboriosam numquam sed similique aspernatur nihil. Debitis sequi sed facilis eos ipsam optio enim. Ipsum accusantium ratione eaque vel ut sed labore. Et assumenda expedita qui totam quae omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 295, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 295, - "key": "2630kleoya3fryd3vege2cbuhkfvs518", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 296, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0295", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.22", - "balance": "17.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 311, - "quantity": 7, - "cost": 9.46, - "product_key": "molestiae", - "notes": "Magnam ut sapiente soluta minima in. Qui quia non saepe quo est. Aliquam iste culpa ea exercitationem et ut harum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 296, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 296, - "key": "akts9f5vbkixanq4wbxkast7xarwyflz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 297, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0296", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.30", - "balance": "12.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 312, - "quantity": 10, - "cost": 6.33, - "product_key": "repellat", - "notes": "Velit a explicabo et quia. Quaerat nihil non natus sequi sunt dignissimos. Ut voluptatum laborum harum vitae veniam molestias nam. Aut cupiditate ea delectus reiciendis quae nihil. In labore nisi ipsa ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 297, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 297, - "key": "l1ac86uvnsngpownzqbquuv0syovrqe8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 298, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0297", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-11", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.80", - "balance": "8.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 313, - "quantity": 8, - "cost": 1.6, - "product_key": "id", - "notes": "Eligendi ea consectetur dolore est. Ut doloribus iusto dolorem cumque ducimus velit. Voluptas dolorem esse quos porro suscipit dolorem nemo excepturi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 298, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 298, - "key": "1ol26nzcztpumetixaqpwldhqzrloajj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 299, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0298", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.20", - "balance": "5.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 314, - "quantity": 8, - "cost": 2.15, - "product_key": "voluptas", - "notes": "Excepturi temporibus rerum ducimus rerum ut tenetur. Deleniti quam quos mollitia amet omnis. Voluptas quis soluta sit qui aliquam qui dolores. Voluptates ea non velit voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 299, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 299, - "key": "xwke5yqazqfoz2iee6rmu1cdt1swzcb6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 300, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0299", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2019-12-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "74.50", - "balance": "60.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 315, - "quantity": 10, - "cost": 7.45, - "product_key": "dolorum", - "notes": "Officiis ut esse libero amet quos odit ut. Dolores itaque et quo illo iste eveniet. Vel consequuntur maiores cum ut. Iste ab ipsa placeat nihil iste minima velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 300, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 300, - "key": "upwbems4bjvehldner0lbjjxh8ptuqli", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 301, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0300", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2019-12-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.98", - "balance": "4.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 316, - "quantity": 7, - "cost": 7.14, - "product_key": "nobis", - "notes": "Quis consequatur inventore repudiandae provident consectetur libero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 301, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 301, - "key": "efuios3jd7ywlcnecxlxsdxaxnsazmwx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 302, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0301", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.32", - "balance": "48.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 317, - "quantity": 6, - "cost": 9.22, - "product_key": "cupiditate", - "notes": "Assumenda et totam amet itaque. Autem eius aperiam reprehenderit asperiores enim. Sit assumenda ut minima quibusdam vitae. Sequi aperiam labore nemo quaerat sed id aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 302, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 302, - "key": "1rojzg0kbehgk3u0egs1sigfqcxhu2fk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 303, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0302", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-22", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.60", - "balance": "29.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 318, - "quantity": 8, - "cost": 6.7, - "product_key": "est", - "notes": "Est quo saepe at commodi. At labore voluptate sint voluptatibus sunt ipsum. Similique vero recusandae dolore et maiores et doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 303, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 303, - "key": "v2zuvm3lxbidz8vuegdo3csxov4dloeg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 304, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0303", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-16", - "last_sent_date": null, - "due_date": "2020-04-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.91", - "balance": "19.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 319, - "quantity": 7, - "cost": 5.13, - "product_key": "minima", - "notes": "Sunt non in cumque ea porro et. Laborum et harum cumque exercitationem. Molestiae aut ullam labore incidunt veniam. Eveniet sed deleniti perferendis et aut minus eveniet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 304, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 304, - "key": "vsavynpa35zbu7cwitcwkpt1tdaftlux", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 305, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0304", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-01-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.71", - "balance": "29.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 320, - "quantity": 9, - "cost": 7.19, - "product_key": "blanditiis", - "notes": "Ea alias repellendus ad rem. Excepturi alias eveniet animi neque molestiae. Et aspernatur aspernatur dicta et dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 305, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 305, - "key": "zlvkkln2kjmpn6madswt4tybmllknaei", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 306, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0305", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-20", - "last_sent_date": null, - "due_date": "2020-02-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.13", - "balance": "17.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 321, - "quantity": 3, - "cost": 9.71, - "product_key": "eligendi", - "notes": "Minima odio dolores quos nobis iusto est beatae. Eum quia qui molestias molestiae soluta animi. Quasi est et id eius repellat et deserunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 306, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 306, - "key": "28ntxp9pgtlrhxzgumza8fxdvdxh83l3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 307, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0306", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2019-12-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.33", - "balance": "20.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 322, - "quantity": 9, - "cost": 3.37, - "product_key": "quo", - "notes": "Vel quo labore sed et maiores nesciunt quis qui. Incidunt velit iste deleniti eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 307, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 307, - "key": "adt1bxlb3dwoelmo1swgiiaoqfseiwx2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 308, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0307", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-13", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.46", - "balance": "12.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 323, - "quantity": 2, - "cost": 7.23, - "product_key": "sed", - "notes": "Est est facere et nihil qui. Aperiam repellendus corporis nesciunt doloremque quibusdam. Qui velit esse corporis odit vitae voluptatem et. Quia dignissimos necessitatibus rerum suscipit occaecati est quia ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 308, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 308, - "key": "bgx4fslxxqfvnz0qb96hr5gdkxcl7sr2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 309, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0308", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2019-12-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.70", - "balance": "10.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 324, - "quantity": 10, - "cost": 5.57, - "product_key": "neque", - "notes": "Nostrum unde velit perspiciatis saepe. Et accusamus sit veritatis ex vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 309, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 309, - "key": "igjmuq9oxdmxrrdqqhszzsgqqdro7u0t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 310, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0309", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.00", - "balance": "0.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 325, - "quantity": 7, - "cost": 3, - "product_key": "ut", - "notes": "Ea minus aut aperiam quas. Sit voluptas et rem totam. Ut sit provident officiis officia hic et. Et ratione accusantium sint corporis consequatur tempore iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 310, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 310, - "key": "ld42row3t3mrbianpnrfchck6uoue4tz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 311, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0310", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.60", - "balance": "4.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 326, - "quantity": 2, - "cost": 7.8, - "product_key": "omnis", - "notes": "Fuga rem ipsam est quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 311, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "invoice_id": 311, - "key": "u93ozppb5lljdoz6o1qjuqhnjisd6dkt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 412, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0411", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.36", - "balance": "49.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 427, - "quantity": 9, - "cost": 7.04, - "product_key": "molestias", - "notes": "Provident voluptate voluptate omnis quas id qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 412, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 412, - "key": "7oaaeaz4qxe1wvjpkar62brm6bsarrs1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 413, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0412", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-06", - "last_sent_date": null, - "due_date": "2020-01-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.90", - "balance": "12.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 428, - "quantity": 5, - "cost": 6.18, - "product_key": "laboriosam", - "notes": "Ipsum a ut voluptatem asperiores in labore sequi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 413, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 413, - "key": "4vsg4cbd12ddoffmtxqvidapljxh25b7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 414, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0413", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.62", - "balance": "4.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 429, - "quantity": 3, - "cost": 5.54, - "product_key": "repellendus", - "notes": "Voluptas delectus iusto dolorum qui ipsa. Praesentium excepturi aliquid quis. Illo eligendi a error quibusdam deleniti ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 414, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 414, - "key": "t7tofkj70aqnqwiqb2jmkionsmrdxmyz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 415, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0414", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-18", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.22", - "balance": "13.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 430, - "quantity": 6, - "cost": 2.87, - "product_key": "itaque", - "notes": "Ea veniam voluptas quod qui. Ea ipsum reiciendis ipsa. Vitae et fugit maiores et ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 415, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 415, - "key": "qgunqazynzpgmqdkzcp8a0lcilcie15l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 416, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0415", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-05", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.24", - "balance": "0.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 431, - "quantity": 4, - "cost": 7.56, - "product_key": "ut", - "notes": "Delectus sunt odit neque rerum non nulla. Nihil blanditiis cupiditate libero qui. Omnis quis et fuga adipisci quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 416, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 416, - "key": "v1bnonsrg8t8jeiuaqex8a6mhlbsgrot", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 417, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0416", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-30", - "last_sent_date": null, - "due_date": "2020-04-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.40", - "balance": "30.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 432, - "quantity": 5, - "cost": 9.48, - "product_key": "a", - "notes": "Commodi sit praesentium earum culpa quia optio quam officia. Est numquam et enim consequatur quia. Quas qui est necessitatibus pariatur omnis ipsa impedit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 417, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 417, - "key": "en9qeyfur78wkokamxgmufvlvn3f4wgb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 418, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0417", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.92", - "balance": "5.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 433, - "quantity": 2, - "cost": 3.96, - "product_key": "harum", - "notes": "Et officia qui sint nihil est magni. A ab placeat qui consequatur. Quas soluta iste aperiam omnis amet. Eum hic dicta quibusdam amet doloremque nam sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 418, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 418, - "key": "c8dmimhytcy00sxlysscdwq58a2zpnro", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 419, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0418", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-11", - "last_sent_date": null, - "due_date": "2020-06-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.40", - "balance": "2.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 434, - "quantity": 4, - "cost": 3.85, - "product_key": "neque", - "notes": "Expedita recusandae magni optio sunt laborum dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 419, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 419, - "key": "lx9y4vb4nqeemveaabhwhiubeiwpsmnl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 420, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0419", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-04-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.12", - "balance": "5.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 435, - "quantity": 3, - "cost": 7.04, - "product_key": "sint", - "notes": "Sed expedita voluptas qui consequatur porro fugiat et quas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 420, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 420, - "key": "hx6yqb08regv71yhib97b10gyekysr9r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 421, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0420", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.25", - "balance": "4.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 436, - "quantity": 7, - "cost": 6.75, - "product_key": "ea", - "notes": "Et et earum voluptatem sed ratione itaque. Eos sint quia ea impedit quia nihil. Voluptatem voluptatem ipsam distinctio recusandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 421, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 421, - "key": "p8hryucp8pmlf9jxn21luacfcd92y3qe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 422, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0421", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-15", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "86.58", - "balance": "9.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 437, - "quantity": 9, - "cost": 9.62, - "product_key": "omnis", - "notes": "Omnis ut nobis ea ut architecto dolor suscipit. Cumque animi nesciunt cumque iure odit asperiores consequatur. Et ut qui quis corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 422, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 422, - "key": "ej3wghd4ck0yhvlswdcd9vrdz2o1koos", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 423, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0422", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-30", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.67", - "balance": "7.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 438, - "quantity": 3, - "cost": 4.89, - "product_key": "harum", - "notes": "Facere ipsum consequatur et repellendus. Ea facilis nostrum et inventore quisquam. Aliquid ea voluptate nostrum voluptatem vel quos reiciendis autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 423, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 423, - "key": "ozpxtxzmabuqzjmoypbdyus0epagav1v", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 424, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0423", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.14", - "balance": "1.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 439, - "quantity": 6, - "cost": 2.69, - "product_key": "consequatur", - "notes": "Ut maiores veniam quod dolorem. Qui commodi impedit ullam laboriosam omnis autem officia maiores. Est eveniet dolores iusto nihil illum aut earum. Ipsa qui velit voluptas quo ea quae dolore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 424, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 424, - "key": "cy4vrxlai01uijxkflltboc1isu2uotc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 425, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0424", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-15", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.55", - "balance": "10.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 440, - "quantity": 3, - "cost": 3.85, - "product_key": "et", - "notes": "Nam amet ratione aut sit sit velit a qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 425, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 425, - "key": "f0nprk6oqxv3piaag9ienaucrabdpdbu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 426, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0425", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-15", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "73.10", - "balance": "25.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 441, - "quantity": 10, - "cost": 7.31, - "product_key": "ex", - "notes": "Ipsum assumenda aut ratione laudantium. Ut quos nam sunt voluptatum. Et libero tenetur sint omnis corrupti blanditiis modi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 426, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 426, - "key": "nehuuackbtalwkbjdxlkzvzlipzlqaxg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 427, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0426", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.20", - "balance": "21.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 442, - "quantity": 3, - "cost": 7.4, - "product_key": "vel", - "notes": "Mollitia maiores vitae blanditiis. Non fuga sint aliquid fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 427, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 427, - "key": "6kiyjhe3jhwsmakf9luloawajynip6jx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 428, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0427", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-09", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.28", - "balance": "33.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 443, - "quantity": 8, - "cost": 7.41, - "product_key": "qui", - "notes": "Id modi ut illo eius. Excepturi corrupti consectetur ut labore. Culpa molestiae vero voluptatum veniam fuga sapiente ipsam. Minima et accusamus qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 428, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 428, - "key": "scybvfm0fuhlm9jx9eiylzkzcmbzfxcv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 429, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0428", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-31", - "last_sent_date": null, - "due_date": "2020-03-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "94.90", - "balance": "84.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 444, - "quantity": 10, - "cost": 9.49, - "product_key": "quia", - "notes": "Et veniam nisi et. Ut illo quo dolorem corrupti maxime voluptas in. Consequatur sunt quos et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 429, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 429, - "key": "8fkv7owtpwheckjvpaprbyctyq7xsavj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 430, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0429", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.77", - "balance": "16.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 445, - "quantity": 7, - "cost": 6.11, - "product_key": "qui", - "notes": "Minus eum eius harum incidunt ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 430, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 430, - "key": "qxehq4vb06u34gsgekxw8xssa4vjer9h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 431, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0430", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-20", - "last_sent_date": null, - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "65.97", - "balance": "17.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 446, - "quantity": 9, - "cost": 7.33, - "product_key": "est", - "notes": "Ipsum corrupti et ipsa eius voluptates qui adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 431, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 431, - "key": "y5n5qyhjpiqkfe2gmui8sbnvt1gpogiy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 432, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0431", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.55", - "balance": "8.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 447, - "quantity": 3, - "cost": 7.85, - "product_key": "non", - "notes": "Explicabo doloremque et rerum sit qui omnis non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 432, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 432, - "key": "6lny3m0txuofzx17imnpmsr9dywl1sb0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 433, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0432", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-17", - "last_sent_date": null, - "due_date": "2020-05-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.40", - "balance": "12.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 448, - "quantity": 10, - "cost": 5.04, - "product_key": "ut", - "notes": "Repellendus debitis omnis possimus provident.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 433, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 433, - "key": "jn8l9ea4kecvwuuvb4cskiglw1ac1cmk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 434, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0433", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-21", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.05", - "balance": "29.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 449, - "quantity": 5, - "cost": 6.41, - "product_key": "tempora", - "notes": "Et rerum dolores est velit et consequatur cum ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 434, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 434, - "key": "qxbivhacibtxfojmgm1jpuxixnweurps", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 435, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0434", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.26", - "balance": "7.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 450, - "quantity": 7, - "cost": 3.18, - "product_key": "minima", - "notes": "Nulla non non eveniet tempore fugit consequatur culpa aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 435, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 435, - "key": "l6hczznip3i4fgzqcgbcjgpxkvjwzidy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 436, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0435", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.92", - "balance": "3.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 451, - "quantity": 7, - "cost": 4.56, - "product_key": "sequi", - "notes": "Ratione quis cumque voluptas iste maxime.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 436, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 436, - "key": "ydkgbk7wbnjdpiuaemzf6cz0s8srttw9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 437, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0436", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.92", - "balance": "26.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 452, - "quantity": 7, - "cost": 7.56, - "product_key": "nostrum", - "notes": "Quia quaerat sapiente rem. Rerum nobis vero labore vitae. Perferendis natus sit quaerat laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 437, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 437, - "key": "oqhgz4sc3j8zdr3hmiqtlefpq6yb4mbc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 438, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0437", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-13", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.10", - "balance": "44.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 453, - "quantity": 5, - "cost": 9.42, - "product_key": "error", - "notes": "Iste doloribus enim omnis autem dolorum reprehenderit. Saepe porro et dolores eum qui et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 438, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 438, - "key": "lv4wxr1rnkd1vwxms5sppxwjtxwp56mt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 439, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0438", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2019-12-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.32", - "balance": "48.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 454, - "quantity": 8, - "cost": 7.54, - "product_key": "quia", - "notes": "Sunt porro dolorem voluptatem fugiat inventore. Sint voluptatem beatae quas aliquam qui accusantium cupiditate. Dolores nostrum aut dolores qui hic assumenda cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 439, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 439, - "key": "v7m6r7tsbslmlgo1c7xrjqkue25grxay", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 440, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0439", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.20", - "balance": "1.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 455, - "quantity": 5, - "cost": 5.64, - "product_key": "occaecati", - "notes": "Omnis nemo vel voluptas. Porro qui omnis in. Ut et modi vel nihil aperiam aliquid dolore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 440, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 440, - "key": "9wppftaeqsutao5egpspa6e2atfa6mxu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 441, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0440", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-02", - "last_sent_date": null, - "due_date": "2019-12-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.84", - "balance": "3.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 456, - "quantity": 4, - "cost": 1.96, - "product_key": "possimus", - "notes": "Earum nisi inventore ducimus suscipit sed. Autem at dolorum voluptas beatae cupiditate excepturi inventore. Nemo voluptatem quis et numquam voluptatem. Sed accusamus omnis sit velit blanditiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 441, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 441, - "key": "fjfvlijasahwswfdxqyolnawxnzadt53", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 442, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0441", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-01", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.64", - "balance": "5.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 457, - "quantity": 1, - "cost": 6.64, - "product_key": "fugit", - "notes": "Laudantium velit quos incidunt impedit pariatur. Eaque neque doloribus quidem in. Laboriosam vitae sunt inventore. Inventore incidunt et voluptatem dolorem est occaecati neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 442, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 442, - "key": "nwpolaapwag9udnmg3jfmv33zmeszg5w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 443, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0442", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-10", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "69.52", - "balance": "50.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 458, - "quantity": 8, - "cost": 8.69, - "product_key": "in", - "notes": "Earum cupiditate facere voluptate quidem. Tempore asperiores natus ut sed. Aut nobis consequatur non fugit voluptas fugit reprehenderit amet. Fugiat reprehenderit dolorem ut blanditiis molestiae sunt et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 443, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 443, - "key": "10hlas5qredy9ukkmw3csqzmjdul67zr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 444, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0443", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.18", - "balance": "2.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 459, - "quantity": 9, - "cost": 3.02, - "product_key": "autem", - "notes": "Officiis eveniet totam et vitae sit sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 444, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 444, - "key": "tt9puvygo0bwtvnq01aya6xlzgwinelt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 445, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0444", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-25", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.70", - "balance": "0.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 460, - "quantity": 1, - "cost": 4.7, - "product_key": "amet", - "notes": "Dolorem ea voluptatum voluptas vero aut. Maxime et est illo non. Incidunt quia nulla error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 445, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 445, - "key": "5qlkdegbpwsm0yshwvn5pnc1ow2fuxv3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 446, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0445", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-06-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.30", - "balance": "6.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 461, - "quantity": 5, - "cost": 1.46, - "product_key": "quos", - "notes": "Aut quibusdam eveniet et doloribus et omnis. Voluptates error cum in est. Ducimus blanditiis et impedit earum. Quaerat vero tempora officiis maiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 446, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 446, - "key": "97ys1xwfldhyiua4lz8y49sfqc0u31m3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 447, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0446", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-16", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.08", - "balance": "23.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 462, - "quantity": 8, - "cost": 3.76, - "product_key": "laborum", - "notes": "Nobis placeat quo dolorem dolores et ut. Et eos velit eum qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 447, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 447, - "key": "x2beptp6rjjt8tvg0mzyfapl0ofzfn5k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 448, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0447", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.72", - "balance": "12.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 463, - "quantity": 4, - "cost": 3.93, - "product_key": "ut", - "notes": "Aspernatur aut qui fugiat maxime aut numquam nisi. Distinctio nihil id quos temporibus. Accusantium quibusdam id voluptates quasi eaque placeat. Consequatur qui eos praesentium magni libero repellendus dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 448, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 448, - "key": "qwbbabhbx4xe7dklhc9zqqf6vzo9ouuw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 449, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0448", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-31", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "83.16", - "balance": "1.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 464, - "quantity": 9, - "cost": 9.24, - "product_key": "explicabo", - "notes": "Incidunt fugit molestiae vel hic. Et aspernatur mollitia quia dolorem. Ea odio neque ipsa numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 449, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 449, - "key": "xt906p6vqctxwi20cjcdn8mraf3xry6b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 450, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0449", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.94", - "balance": "1.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 465, - "quantity": 9, - "cost": 5.66, - "product_key": "quis", - "notes": "Ut quia reiciendis minima ducimus temporibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 450, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 450, - "key": "7arhrqnioap1vfzr3hhfkecik0sbfwje", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 451, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0450", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-25", - "last_sent_date": null, - "due_date": "2020-04-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.92", - "balance": "5.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 466, - "quantity": 4, - "cost": 6.98, - "product_key": "explicabo", - "notes": "Eum sit sint vel omnis quaerat expedita culpa. Et animi labore odio officia aut. Aut magni nihil rerum nemo delectus velit inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 451, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 451, - "key": "rtpwmobmggl4oqy8tybkbarvf6atrsbj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 452, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0451", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-28", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.99", - "balance": "0.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 467, - "quantity": 3, - "cost": 1.33, - "product_key": "sint", - "notes": "Officiis natus autem corrupti quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 452, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 452, - "key": "zlduee26wqplxc1bmwnyuflr0nsapgqz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 453, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0452", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2020-05-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.56", - "balance": "13.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 468, - "quantity": 4, - "cost": 4.14, - "product_key": "id", - "notes": "Et nostrum nisi magnam atque. Repudiandae dicta cum aspernatur rerum commodi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 453, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 453, - "key": "xk57km0fuqzx9kviykigrovgvtuu0lrh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 454, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0453", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.12", - "balance": "10.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 469, - "quantity": 4, - "cost": 6.03, - "product_key": "quia", - "notes": "Eum ratione totam libero laborum. Molestiae aliquam quam natus excepturi animi. Facilis animi ipsum beatae fugit quasi eos et. Perspiciatis dolores assumenda quas quam dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 454, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 454, - "key": "czgvyvrubiknc8bynbrrujf5larbmjeb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 455, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0454", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.05", - "balance": "31.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 470, - "quantity": 5, - "cost": 7.81, - "product_key": "expedita", - "notes": "Aut omnis unde est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 455, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 455, - "key": "frwayjcadqugbxponlaukzazu2j6g9yh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 456, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0455", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.80", - "balance": "14.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 471, - "quantity": 10, - "cost": 2.38, - "product_key": "enim", - "notes": "Assumenda aut dolorum laboriosam aliquid id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 456, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 456, - "key": "u4gimzzyen7zp8corpdygejk0fquopiu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 457, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0456", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "88.83", - "balance": "17.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 472, - "quantity": 9, - "cost": 9.87, - "product_key": "est", - "notes": "Voluptas quasi magnam itaque omnis dolorum ipsa suscipit. Eius fuga non non ea. Praesentium et non aut eligendi cupiditate aut. Rerum iusto magnam enim illum repellendus consequatur rerum. Exercitationem et numquam qui eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 457, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 457, - "key": "ms78qknuwkwzvitsvkd6wwuerfh0iqvf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 458, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0457", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-10", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.45", - "balance": "11.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 473, - "quantity": 5, - "cost": 2.89, - "product_key": "commodi", - "notes": "Officiis autem est reprehenderit enim illo sit voluptas optio. Non perspiciatis deserunt aut porro ad. Quo culpa alias et ipsum provident quam nisi. Quisquam nihil iure itaque reiciendis ex quasi cum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 458, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 458, - "key": "ffhmencvkzagdkc8gf4s7pmuqu0fon6o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 459, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0458", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.67", - "balance": "0.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 474, - "quantity": 1, - "cost": 2.67, - "product_key": "laborum", - "notes": "Mollitia dolor fuga suscipit nulla. Qui aut nihil nisi aut. Iure aut quod earum voluptatem. Ratione fugit reiciendis et reiciendis eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 459, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 459, - "key": "gdpzq4y7gkil4eeqgav0qgdhlhurasp6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 460, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0459", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-03-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.77", - "balance": "4.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 475, - "quantity": 1, - "cost": 6.77, - "product_key": "eos", - "notes": "Earum labore voluptate aliquid aut quis qui blanditiis ut. Corrupti dolore expedita omnis incidunt tempore quia. Id alias quod qui vel soluta voluptatem voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 460, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 460, - "key": "kkgmqpkxyvaear6lqmixtiuylob6pwdh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 461, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0460", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "83.52", - "balance": "80.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 476, - "quantity": 9, - "cost": 9.28, - "product_key": "est", - "notes": "Debitis rem corporis neque perspiciatis amet sit magni. Eum molestiae ullam pariatur aut doloremque. Ab commodi fuga distinctio architecto quia. Maiores ea quo corrupti cupiditate est laudantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 461, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 461, - "key": "oxm7koxnqih0hyczgqopgs7xlijyoylk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 462, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0461", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-04-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.42", - "balance": "13.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 477, - "quantity": 2, - "cost": 8.21, - "product_key": "ut", - "notes": "Aut quam dicta molestias voluptates fugiat consequatur. Non repellat sed consequatur natus dolores. Dignissimos aperiam accusamus error. Soluta animi enim fugiat earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 462, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 462, - "key": "opbgtb8oz7xxutlpxjs7icvcnfedy2ld", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 463, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0462", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-08", - "last_sent_date": null, - "due_date": "2019-12-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.90", - "balance": "10.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 478, - "quantity": 10, - "cost": 1.29, - "product_key": "cupiditate", - "notes": "Recusandae et similique eius sequi et reprehenderit sint. Dolore molestiae ratione quam at explicabo omnis. Ut odit enim porro quis unde voluptatem. Tenetur hic et ea possimus natus dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 463, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 463, - "key": "gm0bkyckphzr7m1q3oalpn5tubzmmwmb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 464, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0463", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2020-04-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.30", - "balance": "13.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 479, - "quantity": 10, - "cost": 3.03, - "product_key": "autem", - "notes": "Adipisci alias architecto est quasi temporibus natus accusamus. Sunt quisquam architecto rem quos deleniti eius et minima. Pariatur id aut modi molestias accusamus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 464, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 464, - "key": "8nqwfnknqvtexx8oz9cr3z9edizi1jjd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 465, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0464", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2020-03-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.52", - "balance": "30.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 480, - "quantity": 4, - "cost": 8.63, - "product_key": "voluptatem", - "notes": "Esse quo est dolorem quia tempora dolorum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 465, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 465, - "key": "1fissvllkojtiwh2ozlcvvywpfewlx75", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 466, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0465", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-30", - "last_sent_date": null, - "due_date": "2020-06-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.90", - "balance": "8.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 481, - "quantity": 10, - "cost": 1.19, - "product_key": "dolores", - "notes": "Maiores voluptate odit impedit. Molestiae aperiam consectetur quo quia tempora. Ea quo harum sunt quisquam mollitia architecto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 466, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 466, - "key": "cyrr3v0l4doqlxrt599fooh6tmskjzpf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 467, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0466", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.44", - "balance": "3.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 482, - "quantity": 4, - "cost": 1.36, - "product_key": "aut", - "notes": "Optio laborum voluptatibus totam. Rerum eveniet omnis maiores alias consequatur mollitia officiis. Sit ut optio officiis eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 467, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 467, - "key": "akg3hs1vbukv9kghrccundytl4x4bmmm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 468, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0467", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.51", - "balance": "12.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 483, - "quantity": 3, - "cost": 8.17, - "product_key": "aperiam", - "notes": "Repellendus ut explicabo magni et quod et. Autem consequuntur at eveniet nisi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 468, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 468, - "key": "jvsz7k9ktm6z9qbxbqhwc6ryzt7kv0ak", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 469, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0468", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-08", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.10", - "balance": "3.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 484, - "quantity": 2, - "cost": 9.55, - "product_key": "nostrum", - "notes": "Tenetur vel ut est id et odio. Voluptatem et dicta odio non velit quibusdam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 469, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 469, - "key": "ruqqd3gflsjoruz2qt3fffjo2nl1nj4q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 470, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0469", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2020-05-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.35", - "balance": "1.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 485, - "quantity": 5, - "cost": 3.07, - "product_key": "est", - "notes": "Non expedita et id hic illum accusantium. Dolore itaque non quia velit laboriosam occaecati repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 470, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 470, - "key": "jm2e19l08vswut9wh7w5r1slldvcjvj1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 471, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0470", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.07", - "balance": "16.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 486, - "quantity": 7, - "cost": 6.01, - "product_key": "maxime", - "notes": "Dolores eveniet voluptatibus quod blanditiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 471, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 471, - "key": "t8wm9yzupphw1fddlj6gdbfndcahcuvi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 472, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0471", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "97.80", - "balance": "33.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 487, - "quantity": 10, - "cost": 9.78, - "product_key": "laudantium", - "notes": "Molestiae sint eveniet ea et repellendus expedita. Repellat officia expedita ipsam aperiam excepturi voluptate. Deserunt nisi vel a qui omnis id inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 472, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 472, - "key": "pma6dlmmv0uf2hs0nmr7vnuyrgdgkpjo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 473, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0472", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-06", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.76", - "balance": "14.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 488, - "quantity": 8, - "cost": 1.97, - "product_key": "voluptatem", - "notes": "Accusantium hic cupiditate molestias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 473, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 473, - "key": "9w61uwsaf8rm76mi7q3gqvaudm6quidj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 474, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0473", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.20", - "balance": "33.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 489, - "quantity": 5, - "cost": 7.44, - "product_key": "ex", - "notes": "Porro in quasi et tenetur. Modi dignissimos et unde vel. Similique quae eos aut delectus. Autem non nisi recusandae velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 474, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 474, - "key": "tau5feejhqoidtzravmbnhb0dvvkvzxo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 475, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0474", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-18", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.32", - "balance": "9.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 490, - "quantity": 4, - "cost": 3.83, - "product_key": "optio", - "notes": "Illo placeat eum iure harum. Voluptate sunt dolor consequatur. Non numquam provident harum labore animi et occaecati.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 475, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 475, - "key": "atmlgsh7wbdpkb6d49ndevevq26n1mim", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 476, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0475", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.80", - "balance": "0.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 491, - "quantity": 5, - "cost": 2.96, - "product_key": "sint", - "notes": "Consequatur est quasi consequatur. Sint asperiores officiis et ratione. Voluptatem atque modi nulla aut quisquam. Rem et ratione itaque aut et quia nam veniam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 476, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 476, - "key": "fu5vafdqmdcdrsducnzcye77zqabguxl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 477, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0476", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2020-04-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.56", - "balance": "50.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 492, - "quantity": 9, - "cost": 5.84, - "product_key": "id", - "notes": "Accusantium aliquid fugiat sapiente neque. Architecto nisi facere natus nisi nulla mollitia illum. Cumque nemo rem voluptas a nulla. Quo vitae facilis aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 477, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 477, - "key": "n9haawdqygi5qh7l3s4d1ww2xxxhjpw3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 478, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0477", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.38", - "balance": "11.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 493, - "quantity": 6, - "cost": 2.73, - "product_key": "perferendis", - "notes": "Facere vel alias soluta sit. Laborum voluptatibus non quia aspernatur. Quisquam maiores maxime nemo aut autem facilis. Odit aut est voluptatem quia autem aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 478, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 478, - "key": "8pzzbtrcflqoxlyhq6qcvcvnyiqhbkt7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 479, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0478", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.34", - "balance": "1.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 494, - "quantity": 2, - "cost": 3.67, - "product_key": "necessitatibus", - "notes": "Labore et id necessitatibus ex. Mollitia est est quo voluptatem vero. Omnis blanditiis veritatis consequatur sequi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 479, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 479, - "key": "e1uvcvbdtmgktsfw073tkjru8cwnxnng", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 480, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0479", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-16", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.58", - "balance": "31.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 495, - "quantity": 6, - "cost": 7.93, - "product_key": "earum", - "notes": "Minima quo dolores illo vero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 480, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 480, - "key": "u6ioxtv8grgb5wsqrt6mm50qjagyo0pr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 481, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0480", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-26", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.86", - "balance": "5.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 496, - "quantity": 1, - "cost": 6.86, - "product_key": "eos", - "notes": "Aut laudantium distinctio perferendis sed dolores. Ipsam adipisci animi cupiditate temporibus. Est suscipit et dolor eligendi laborum. Neque aspernatur incidunt vitae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 481, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 481, - "key": "w7ovfxilysjtevavq5lagvsfazxezkzv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 482, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0481", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-25", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.15", - "balance": "23.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 497, - "quantity": 5, - "cost": 9.83, - "product_key": "sunt", - "notes": "Omnis et numquam voluptatum accusamus. Ut explicabo quia quam quo. Quod omnis architecto alias doloremque vel qui. Harum eum debitis ut voluptatem ea laborum aut recusandae. Natus et consequuntur incidunt pariatur quis voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 482, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 482, - "key": "8lkn8nxykd14dhlojx246mwvajaghpca", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 483, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0482", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.80", - "balance": "0.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 498, - "quantity": 5, - "cost": 1.36, - "product_key": "sequi", - "notes": "Ex beatae non at et. Aut repellendus repudiandae cum eum voluptates. Praesentium eligendi nesciunt nihil placeat aut animi qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 483, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 483, - "key": "qqwpw2t61gwgtnvdzzcn6l6meeaauyz0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 484, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0483", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.85", - "balance": "0.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 499, - "quantity": 1, - "cost": 2.85, - "product_key": "minus", - "notes": "Quod autem porro facilis ea. Dolor nam non minus iste ad similique. Amet et omnis itaque labore dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 484, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 484, - "key": "xdse8agoganz0mwmrnjobn2iwmr6bhy6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 485, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0484", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-31", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.73", - "balance": "0.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 500, - "quantity": 3, - "cost": 1.91, - "product_key": "velit", - "notes": "Ut nihil veritatis ut aspernatur reprehenderit. Ea molestiae cum nemo expedita voluptates. Numquam et et dicta neque dolore. Natus animi iure laudantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 485, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 485, - "key": "yxfj8lt6etpty4q8rusmsnglt1lbkby7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 486, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0485", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-03-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.62", - "balance": "8.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 501, - "quantity": 2, - "cost": 8.81, - "product_key": "nobis", - "notes": "Ab alias odio sunt voluptate sequi ut expedita. Vel omnis ipsum aut iste. Nobis optio maxime doloremque. Laudantium cum veniam fuga aut ea dolores quod.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 486, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 486, - "key": "maypwvy1seq3of49w8tx6mogc5wiqrn6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 487, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0486", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-08", - "last_sent_date": null, - "due_date": "2020-05-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.58", - "balance": "28.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 502, - "quantity": 9, - "cost": 4.62, - "product_key": "enim", - "notes": "Ut libero dolorem nulla atque accusamus qui rem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 487, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 487, - "key": "qsfi9exh2ekpffvt87ugrhadg2i0eh9p", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 488, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0487", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-09", - "last_sent_date": null, - "due_date": "2020-06-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.80", - "balance": "3.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 503, - "quantity": 5, - "cost": 3.16, - "product_key": "dolor", - "notes": "Eum ea qui et nam est consectetur. Ab doloremque non omnis. Odit ut suscipit officia maxime.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 488, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 488, - "key": "trcwnb87vztyhup0lf3antr2normfqrm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 489, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0488", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-22", - "last_sent_date": null, - "due_date": "2019-12-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.00", - "balance": "38.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 504, - "quantity": 10, - "cost": 6.3, - "product_key": "et", - "notes": "Delectus dolore eaque rerum aut atque. Cumque maxime labore suscipit distinctio. Temporibus expedita placeat voluptate ullam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 489, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 489, - "key": "woocudw1dmwfzrv9npqwnmbmqoop3ak4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 490, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0489", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-15", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "62.08", - "balance": "54.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 505, - "quantity": 8, - "cost": 7.76, - "product_key": "quod", - "notes": "Aliquam voluptatem quidem modi provident. Aut beatae ullam debitis dolorum aut earum veritatis delectus. Asperiores quae quam tempore est modi qui fugit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 490, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 490, - "key": "4ees8bjkpopx8hcgeiusl5v315xgbkds", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 491, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0490", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "65.52", - "balance": "32.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 506, - "quantity": 9, - "cost": 7.28, - "product_key": "qui", - "notes": "Consequuntur ut maiores veritatis et eaque eius voluptates.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 491, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 491, - "key": "o7wvti9inyg1rh2q4uf6slukyqxhzwi0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 492, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0491", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.32", - "balance": "7.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 507, - "quantity": 3, - "cost": 9.44, - "product_key": "odio", - "notes": "Qui itaque laborum recusandae officia impedit excepturi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 492, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 492, - "key": "uafn5cmnvcs8kmpqwu4o3lwrzszkleao", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 493, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0492", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-06-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "78.03", - "balance": "27.89", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 508, - "quantity": 9, - "cost": 8.67, - "product_key": "error", - "notes": "Vero modi accusamus ad animi eos repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 493, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 493, - "key": "pick6kc1m6bsxfsowo5sbr2e8jmgbuc8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 494, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0493", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.70", - "balance": "5.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 509, - "quantity": 10, - "cost": 1.37, - "product_key": "quisquam", - "notes": "Expedita id nemo repellendus voluptatem tenetur qui. Molestias ducimus mollitia dolore aut molestias suscipit velit. Rem eaque iste est et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 494, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 494, - "key": "ibz2bepg29xdkxkbqitneelnhrp4giwd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 495, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0494", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "84.00", - "balance": "12.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 510, - "quantity": 10, - "cost": 8.4, - "product_key": "et", - "notes": "Non blanditiis ut esse debitis delectus in id. Architecto cumque aut reprehenderit consequatur id aliquid quis eveniet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 495, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 495, - "key": "upkpppj9zerofokmrxp77ahhdqgvfd6n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 496, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0495", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-11", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.20", - "balance": "7.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 511, - "quantity": 7, - "cost": 1.6, - "product_key": "iure", - "notes": "Nulla suscipit id porro assumenda vel eaque. Est quis ex dolor reiciendis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 496, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 496, - "key": "fegkyloeewudj34zzbrd0ylxhcndhclv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 497, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0496", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.60", - "balance": "6.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 512, - "quantity": 2, - "cost": 4.8, - "product_key": "labore", - "notes": "Voluptates officia soluta facilis adipisci. Odio voluptate veniam velit qui nesciunt vel. Illo porro vel qui dolores quo at neque. Voluptate et blanditiis quasi eum soluta perferendis et accusantium. Possimus quam est magnam optio et vitae. Placeat recusandae rerum animi repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 497, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 497, - "key": "cmazebirroe64cyj5pnmkq9ruad0myzw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 498, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0497", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.52", - "balance": "7.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 513, - "quantity": 2, - "cost": 7.76, - "product_key": "ut", - "notes": "Velit itaque rerum ea nulla sint. Id aliquid cumque velit qui provident vel qui quo. Atque nemo atque corporis minus eius. Placeat eligendi qui pariatur perferendis vitae qui. Natus aut dolores autem est est fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 498, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 498, - "key": "zdrmgcelzkwapglm9novj8fry0adazm4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 499, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0498", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2019-12-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.90", - "balance": "34.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 514, - "quantity": 6, - "cost": 6.65, - "product_key": "sit", - "notes": "Voluptas dolorem aut explicabo adipisci. Aut exercitationem fugiat eum facere. Reprehenderit reprehenderit voluptatem dignissimos libero. Eligendi voluptate ut numquam ipsam adipisci officiis illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 499, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 499, - "key": "n44crrekpt4zbhfzhji6xi2fyywkakci", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 500, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0499", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-12", - "last_sent_date": null, - "due_date": "2020-02-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "99.40", - "balance": "80.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 515, - "quantity": 10, - "cost": 9.94, - "product_key": "quos", - "notes": "Accusantium dignissimos perferendis et quod doloremque autem beatae architecto. Quos culpa ut veritatis rem. Consequuntur beatae voluptas distinctio atque necessitatibus. Nostrum occaecati tenetur dolorem qui neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 500, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 500, - "key": "7te7pzc3os0mlyjcnvtz14musrzdrijn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 501, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0500", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": null, - "due_date": "2020-02-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.32", - "balance": "45.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 516, - "quantity": 6, - "cost": 8.72, - "product_key": "aut", - "notes": "Consequatur amet quis saepe ea ut aperiam non quis. Facilis possimus at ab qui praesentium reiciendis. Nisi harum alias quam id. Et et enim necessitatibus itaque facilis aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 501, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 501, - "key": "4zcypvmf99ezitlxqt4ibpgw732o27g4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 502, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0501", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-11", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.60", - "balance": "24.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 517, - "quantity": 4, - "cost": 7.4, - "product_key": "est", - "notes": "Omnis numquam quos ad sed consequatur at qui. Dignissimos qui aut saepe voluptatem quis. Voluptatem consectetur similique optio eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 502, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 502, - "key": "5bjts2pxoajvxlp2oea65x2eqvedba0i", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 503, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0502", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.60", - "balance": "59.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 518, - "quantity": 8, - "cost": 8.45, - "product_key": "ut", - "notes": "Dolor voluptas et ex debitis qui. Ducimus hic repudiandae libero quia ut. Similique minima qui voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 503, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 503, - "key": "ls5wfznny9qqiptueu0j8gds7dsljxup", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 504, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0503", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.62", - "balance": "2.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 519, - "quantity": 2, - "cost": 2.81, - "product_key": "aspernatur", - "notes": "Et dolorum dignissimos omnis. Totam corrupti et asperiores quod dolores deserunt provident. Sunt sapiente officia et laborum facilis sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 504, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 504, - "key": "eake6prtd2voxcpsq3o7humbchkjlsqe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 505, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0504", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2020-05-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.64", - "balance": "1.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 520, - "quantity": 3, - "cost": 4.88, - "product_key": "tempore", - "notes": "Est et porro quisquam voluptatem. Cumque maiores ut qui aspernatur. Maiores molestiae sint quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 505, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 505, - "key": "4bsnmbuetxn7n6wzxobhew6oardl8ran", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 506, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0505", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2020-02-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "82.35", - "balance": "77.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 521, - "quantity": 9, - "cost": 9.15, - "product_key": "commodi", - "notes": "Quo soluta adipisci repellat qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 506, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 506, - "key": "pcpxjnzr0xpgewmuxfgqut6jkl4qlcmy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 507, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0506", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-14", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.55", - "balance": "11.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 522, - "quantity": 5, - "cost": 7.31, - "product_key": "nisi", - "notes": "Aut odit qui ab maxime. Porro qui aut eius. Ab est dolor ut inventore sapiente et quod.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 507, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 507, - "key": "wzwsi0tdlgvsyeaoc4lvqstr5avv1lkh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 508, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0507", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.20", - "balance": "38.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 523, - "quantity": 9, - "cost": 5.8, - "product_key": "optio", - "notes": "Qui qui in sint. Ea cum expedita consequatur illum reprehenderit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 508, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 508, - "key": "ftikagipsgxsapn6txhpm2znjk4vhdlf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 509, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0508", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-04-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.12", - "balance": "15.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 524, - "quantity": 6, - "cost": 7.02, - "product_key": "nisi", - "notes": "Et sit itaque odio et qui quia. Molestias laboriosam dolore veniam incidunt eos et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 509, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 509, - "key": "k1fiw9smmp4caupmscqw7kyo9qfksyvn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 510, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0509", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-11", - "last_sent_date": null, - "due_date": "2019-12-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.88", - "balance": "12.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 525, - "quantity": 2, - "cost": 6.44, - "product_key": "eum", - "notes": "Exercitationem sunt quos quis labore. Adipisci officia porro saepe est sapiente. Dignissimos aut et cum iusto molestiae deserunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 510, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 510, - "key": "p43njffc3ixzahk8k7avlrjgeyktkzrr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 511, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0510", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-13", - "last_sent_date": null, - "due_date": "2020-06-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.45", - "balance": "2.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 526, - "quantity": 5, - "cost": 6.89, - "product_key": "tenetur", - "notes": "Deserunt id dicta tenetur non. Ducimus quibusdam tempore neque suscipit illo. Accusantium nemo explicabo consequuntur et itaque. Sed facilis perferendis qui dicta cum nesciunt deserunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 511, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "invoice_id": 511, - "key": "pc1smniacyko0pf1s5ytgsgjmzx2cixg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 612, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0611", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-06-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.60", - "balance": "13.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 627, - "quantity": 6, - "cost": 4.6, - "product_key": "voluptatibus", - "notes": "Perspiciatis voluptas numquam modi praesentium sit et. Ratione et modi aut in. Quisquam nisi voluptas natus ut. Velit consequuntur officiis est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 612, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 612, - "key": "koirujugrjnph61cnddnkvjgx2dtdgik", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 613, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0612", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2020-05-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.95", - "balance": "7.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 628, - "quantity": 3, - "cost": 8.65, - "product_key": "dignissimos", - "notes": "Non est veritatis amet veritatis. Dignissimos optio ea iste. Et et est est et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 613, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 613, - "key": "cuozi37pj2kbc4dpnfictfstgbrlzknr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 614, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0613", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-17", - "last_sent_date": null, - "due_date": "2020-06-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.70", - "balance": "6.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 629, - "quantity": 10, - "cost": 2.47, - "product_key": "et", - "notes": "Eveniet sit quia et soluta consequuntur voluptas. Vitae cumque omnis ut et doloremque. Aliquam qui optio ab quo quo non nulla. Deserunt nihil nisi possimus similique reiciendis voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 614, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 614, - "key": "x5q7htlfsnyvytvyem0wpfq0ih1rafxd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 615, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0614", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-05", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.64", - "balance": "11.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 630, - "quantity": 2, - "cost": 9.82, - "product_key": "dolor", - "notes": "Repudiandae sed omnis asperiores at laudantium velit. Reiciendis odio facilis maiores. Quasi ab inventore velit dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 615, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 615, - "key": "r4wnfv6v46tbszijqug7exprxmmg8ovw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 616, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0615", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-02-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.00", - "balance": "4.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 631, - "quantity": 5, - "cost": 8.8, - "product_key": "aut", - "notes": "Qui odit aut alias. Possimus non tenetur qui dolorum laudantium sit tempore. Autem omnis possimus vel explicabo voluptatem et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 616, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 616, - "key": "nhihy1ig2ggrenxyecdh3oaeaqe82vlu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 617, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0616", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2020-02-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.93", - "balance": "23.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 632, - "quantity": 9, - "cost": 3.77, - "product_key": "optio", - "notes": "Distinctio maiores dolores ipsa aut aut magnam ipsam. Nesciunt voluptatum laborum est. Nihil eum voluptates possimus tempora.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 617, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 617, - "key": "e9jf6cvzcrqjwk9ostx3vnb97mwa0asm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 618, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0617", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-05", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.30", - "balance": "12.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 633, - "quantity": 5, - "cost": 4.66, - "product_key": "dolor", - "notes": "Et maxime iste sit quia voluptatem dolorem delectus qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 618, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 618, - "key": "zxc5k2zfaijclvrndqzfirrwvxdwx9tm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 619, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0618", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.25", - "balance": "1.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 634, - "quantity": 5, - "cost": 3.05, - "product_key": "dignissimos", - "notes": "Sunt illum est sed. Nobis aut unde commodi est ut accusamus sunt autem. Quisquam quisquam facere expedita.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 619, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 619, - "key": "308d9aqswlt8jtrxyjntbodumw9hendj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 620, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0619", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.84", - "balance": "4.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 635, - "quantity": 8, - "cost": 7.73, - "product_key": "magni", - "notes": "Sunt quod dolorem provident et eum nemo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 620, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 620, - "key": "vwbqxumfty4ycetkwnuw5ga2y85bhksz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 621, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0620", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-01-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.05", - "balance": "23.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 636, - "quantity": 5, - "cost": 9.81, - "product_key": "perferendis", - "notes": "Unde dignissimos ea iure laborum sit. Placeat praesentium a architecto quis quia. Sunt natus maiores dolor sed in officiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 621, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 621, - "key": "vqzytadnntkfsm1ps2k0perlotyzhw2e", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 622, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0621", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.96", - "balance": "30.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 637, - "quantity": 4, - "cost": 8.99, - "product_key": "aliquam", - "notes": "Animi dolorum quibusdam ex odio commodi sint dolorum. Modi nobis minus rerum cupiditate voluptas et itaque. Dolores labore dolorem distinctio soluta. Aut minima quod omnis tempora magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 622, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 622, - "key": "f9gfr4lh73cccbolvrdasm8fdve3vady", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 623, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0622", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-26", - "last_sent_date": null, - "due_date": "2020-06-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.80", - "balance": "18.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 638, - "quantity": 4, - "cost": 6.2, - "product_key": "maiores", - "notes": "Inventore nesciunt quam doloribus accusantium nobis. Quasi ipsum et doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 623, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 623, - "key": "lup6v5jn3gx6tdsxqlsg0bqyrlwrfhub", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 624, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0623", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.65", - "balance": "6.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 639, - "quantity": 5, - "cost": 1.73, - "product_key": "labore", - "notes": "Dolorum eos quas sunt consequatur. Et ducimus rem quisquam. Nisi necessitatibus odio ea quae esse.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 624, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 624, - "key": "1jjbzyy44ctibkpj4etwyy6matpqbyok", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 625, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0624", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.44", - "balance": "2.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 640, - "quantity": 4, - "cost": 1.11, - "product_key": "tempora", - "notes": "Beatae rem aut ad non. Nobis deserunt voluptatem atque ut debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 625, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 625, - "key": "qzg9yrruycfrykah2sorcuqiarcpcqyb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 626, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0625", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.13", - "balance": "23.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 641, - "quantity": 7, - "cost": 4.59, - "product_key": "sed", - "notes": "Aut aut velit sunt quis vel. Odit maxime cupiditate voluptatem suscipit voluptates fugiat ea. Qui et expedita dolor voluptatem est in. Ut rem odit eligendi cumque. Dolorem molestiae soluta amet aut ullam culpa doloremque vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 626, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 626, - "key": "k2tmsgiibirq6kv1xql8wszffsf0ojxb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 627, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0626", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-28", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.10", - "balance": "1.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 642, - "quantity": 6, - "cost": 3.35, - "product_key": "totam", - "notes": "Sit quia qui id ut sed maiores aut voluptatibus. Repellendus unde aut non architecto aut natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 627, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 627, - "key": "vzoephijgmpt1iqeegcklfil4nzquqfx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 628, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0627", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2020-02-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.92", - "balance": "21.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 643, - "quantity": 9, - "cost": 2.88, - "product_key": "necessitatibus", - "notes": "Ea autem corrupti ea sunt autem. Laborum in reprehenderit voluptates ipsa dolores eos nobis earum. Earum quia ipsa sunt magnam officiis accusamus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 628, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 628, - "key": "eexnerlfpiuvxud3mvg6wvfshangqrpp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 629, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0628", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.30", - "balance": "44.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 644, - "quantity": 10, - "cost": 4.63, - "product_key": "est", - "notes": "Animi nostrum non et minima nihil. Molestias ut voluptas earum possimus voluptatem sequi eaque repudiandae. Accusamus ut qui dolorum consequatur. Doloribus dolores error officiis optio delectus ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 629, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 629, - "key": "wielebnqdnxeia7p2b0tsb5vclolgu2q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 630, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0629", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.30", - "balance": "0.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 645, - "quantity": 3, - "cost": 2.1, - "product_key": "quasi", - "notes": "Dolorem excepturi magnam beatae doloribus ab et quam. Exercitationem sint excepturi impedit est quis. Dolorem eos a vero consequuntur vel commodi quis perferendis. Rerum quis adipisci tempora.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 630, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 630, - "key": "phg9i1ebqikscpp7ud4fdeob9r3sywih", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 631, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0630", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-27", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.98", - "balance": "2.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 646, - "quantity": 2, - "cost": 1.49, - "product_key": "dolor", - "notes": "Nihil facilis velit aspernatur voluptas aut quos. Neque quis sequi aut pariatur dolores et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 631, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 631, - "key": "xporyarlaltk5u7afsi35puvx79nwtde", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 632, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0631", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2020-04-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.00", - "balance": "4.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 647, - "quantity": 6, - "cost": 3, - "product_key": "et", - "notes": "Totam sequi error molestias optio earum ipsam. Possimus unde blanditiis eius sed qui voluptas est voluptatem. Libero ipsa nesciunt minima dignissimos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 632, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 632, - "key": "gsgkem4rugzvwtr1iz8qi5v363ugjt7n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 633, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0632", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-13", - "last_sent_date": null, - "due_date": "2020-05-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.17", - "balance": "0.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 648, - "quantity": 3, - "cost": 2.39, - "product_key": "reprehenderit", - "notes": "Quam earum exercitationem dolorum nemo deleniti qui ut consequatur. Ea non autem est molestiae. Dolorem et ut porro qui unde excepturi dolores. Occaecati totam doloribus sit nam consequuntur ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 633, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 633, - "key": "bxppqtkosfjir4mfnob989gwidngxth9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 634, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0633", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.14", - "balance": "2.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 649, - "quantity": 2, - "cost": 7.07, - "product_key": "assumenda", - "notes": "Quisquam voluptatem aperiam molestias nam. Repellat libero dolor ea unde beatae voluptas. Placeat aut vel corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 634, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 634, - "key": "shopzbgij6pygbcpymqzj5huuqytyeb2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 635, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0634", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-05", - "last_sent_date": null, - "due_date": "2020-06-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.38", - "balance": "3.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 650, - "quantity": 3, - "cost": 8.46, - "product_key": "perspiciatis", - "notes": "Ut consectetur explicabo dolores ipsam ab.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 635, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 635, - "key": "gi6qs7o9mjbhgroxvqx9zp7bbzjvi31u", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 636, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0635", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.08", - "balance": "5.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 651, - "quantity": 8, - "cost": 1.51, - "product_key": "esse", - "notes": "Eligendi voluptas veniam dolorum aut sunt. Sint et ex autem aut mollitia consequatur. Voluptates et sed est rerum. Illum sint voluptas maxime provident quo occaecati vero asperiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 636, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 636, - "key": "xiir81nod9qsrts4envavjebnrsjhg2p", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 637, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0636", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.98", - "balance": "5.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 652, - "quantity": 3, - "cost": 5.66, - "product_key": "sunt", - "notes": "Temporibus officia pariatur cum similique sint. Iure accusamus praesentium ut cumque dignissimos laboriosam. Sed vel officiis molestiae beatae atque quas earum. Aut eos voluptatibus eos natus aspernatur corporis non. Omnis eum ut minus adipisci voluptatem natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 637, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 637, - "key": "sdijw3jre7nlyuuoadelr1ktoyte4clo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 638, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0637", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.74", - "balance": "5.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 653, - "quantity": 6, - "cost": 2.29, - "product_key": "minima", - "notes": "Fugiat labore doloribus neque et. Recusandae ea libero dignissimos et tempore non facilis. Voluptatum alias cumque optio ex.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 638, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 638, - "key": "vkidcmoj8qsqloyni39cl978qbf8v4kw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 639, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0638", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-05", - "last_sent_date": null, - "due_date": "2020-05-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.60", - "balance": "4.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 654, - "quantity": 10, - "cost": 2.86, - "product_key": "eos", - "notes": "Qui molestias sit vel aperiam odit delectus amet id. Dolor fugit et enim facere quod culpa voluptatem. Cumque quidem harum laborum ex.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 639, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 639, - "key": "rpfduc8e0nwybp5qixcbo7l3ofneatmx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 640, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0639", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.33", - "balance": "10.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 655, - "quantity": 7, - "cost": 2.19, - "product_key": "atque", - "notes": "Quia reprehenderit distinctio saepe omnis adipisci. Deserunt est perspiciatis vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 640, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 640, - "key": "rvlwmyr4ms6bxt9avndkuvtrwmwybubn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 641, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0640", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.93", - "balance": "12.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 656, - "quantity": 7, - "cost": 7.99, - "product_key": "saepe", - "notes": "Totam reprehenderit quas consequatur repellat. Atque quasi ab corporis et sequi sunt qui. Autem ut deleniti illo molestiae praesentium. Ipsa rerum dolor est maiores aliquam quas voluptatem. Eaque eveniet quas enim aliquam ullam qui temporibus consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 641, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 641, - "key": "l71tzywemkamiwyvgr8liz6vyvixy5i2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 642, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0641", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.32", - "balance": "12.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 657, - "quantity": 4, - "cost": 3.33, - "product_key": "vel", - "notes": "Et commodi temporibus velit quia. Quaerat in porro eum ea nobis unde.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 642, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 642, - "key": "t3vpdobou0atjfzz1nlh3q4yb5oyfxih", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 643, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0642", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-11", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.54", - "balance": "42.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 658, - "quantity": 9, - "cost": 6.06, - "product_key": "neque", - "notes": "Quis veritatis magni facere dolorem molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 643, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 643, - "key": "m9qbu0ubugv8qguq1ghv7vesg72jcmhs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 644, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0643", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.35", - "balance": "5.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 659, - "quantity": 1, - "cost": 7.35, - "product_key": "aut", - "notes": "Rerum aut voluptatem iusto et exercitationem. Omnis blanditiis omnis expedita optio optio ad. Quasi et ea illum dolor repudiandae. Consequatur quis quae consequatur voluptate. Ducimus delectus inventore quis sed adipisci quisquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 644, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 644, - "key": "fb198zon6veloi5cx17lg8pw8yoifxhv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 645, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0644", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.33", - "balance": "0.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 660, - "quantity": 3, - "cost": 4.11, - "product_key": "aliquam", - "notes": "Delectus veritatis aspernatur id quasi aut quam et. Accusantium rem hic sunt ipsam quidem. Voluptatem et dolorem voluptatem in qui. Deleniti voluptatibus molestiae et commodi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 645, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 645, - "key": "v7rjn52diha37bh233wpkvgdssjyhhrz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 646, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0645", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-11", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.80", - "balance": "4.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 661, - "quantity": 2, - "cost": 3.9, - "product_key": "fugiat", - "notes": "Rerum et et cum fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 646, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 646, - "key": "6oxzur6sl68hgbacefyvey9lqydrcjda", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 647, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0646", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-06-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "58.32", - "balance": "51.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 662, - "quantity": 8, - "cost": 7.29, - "product_key": "quasi", - "notes": "Ipsum repudiandae rerum facilis. Quia architecto minima quos explicabo eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 647, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 647, - "key": "ifj2luk2qlcwbznpdd7hl1krdyshrhi2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 648, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0647", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.36", - "balance": "12.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 663, - "quantity": 8, - "cost": 4.67, - "product_key": "odio", - "notes": "Excepturi ad vitae ut et ducimus culpa. Sed rerum et soluta dolor eaque. Deserunt laborum cum nesciunt aut aspernatur repellat quia. Quod assumenda quidem porro laborum aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 648, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 648, - "key": "rcqhtcj6zgzo4eqetlxppbdxmxraklnl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 649, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0648", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.44", - "balance": "5.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 664, - "quantity": 4, - "cost": 1.61, - "product_key": "unde", - "notes": "Tenetur quos quia dolor aut vel error. Amet mollitia et aperiam ipsa autem. Soluta nulla perspiciatis quas aut et qui voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 649, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 649, - "key": "g4wyroyxo5ggc5vtyo4loiwudbgcgp3w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 650, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0649", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2019-12-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.12", - "balance": "0.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 665, - "quantity": 2, - "cost": 5.06, - "product_key": "aspernatur", - "notes": "Ex quis ut sapiente. Voluptatem voluptatem eum quos. Corrupti nisi voluptatem voluptatem est magni. Qui consequatur enim porro quo quos est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 650, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 650, - "key": "joy6m0uwno9iwootr9twokh5vb6jaxo5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 651, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0650", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-12", - "last_sent_date": null, - "due_date": "2020-03-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.08", - "balance": "5.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 666, - "quantity": 8, - "cost": 1.01, - "product_key": "eos", - "notes": "Placeat facere et accusantium est unde autem. Voluptatem quidem est est commodi. Deserunt ut quaerat qui animi aut voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 651, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 651, - "key": "svlo56i5qhtd2esh1jvyi0aqea0s6aba", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 652, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0651", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-13", - "last_sent_date": null, - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.80", - "balance": "33.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 667, - "quantity": 10, - "cost": 4.78, - "product_key": "odio", - "notes": "Distinctio qui necessitatibus illo. Perspiciatis sunt molestias laborum ea ut sit. Et distinctio dolorem quod quo. Porro voluptate omnis reiciendis dolorem ea dolores quia vero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 652, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 652, - "key": "fgwz4cg1edchut4lblqlio9ej3liqd5x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 653, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0652", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-10", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "78.21", - "balance": "52.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 668, - "quantity": 9, - "cost": 8.69, - "product_key": "molestiae", - "notes": "Accusamus molestiae aut sit nihil. Vitae at et veritatis assumenda. Delectus qui labore dolorum voluptates ullam ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 653, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 653, - "key": "mwutf53i3ufbmvkcwangsdba7gxkichs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 654, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0653", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-04-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "89.46", - "balance": "78.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 669, - "quantity": 9, - "cost": 9.94, - "product_key": "quas", - "notes": "Dolorum consectetur molestiae doloribus voluptate accusantium. Sint est dolores nam necessitatibus et. Fugit eum quo dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 654, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 654, - "key": "qqtpb1im6bbpkzkthme8yahe9xlprv53", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 655, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0654", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-17", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.64", - "balance": "19.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 670, - "quantity": 2, - "cost": 9.82, - "product_key": "modi", - "notes": "Rerum sint dolores id consequatur sed. Voluptates reiciendis rerum sunt est quo et id. Deleniti voluptas velit quisquam temporibus aut eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 655, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 655, - "key": "vqfvmfp9pf6lgm4duxdbc5oo37atbj4q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 656, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0655", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "96.10", - "balance": "67.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 671, - "quantity": 10, - "cost": 9.61, - "product_key": "consequuntur", - "notes": "Dolor distinctio aut et autem ipsa. Sapiente explicabo repudiandae vel quisquam cum qui. Sed et consequatur earum quaerat illum sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 656, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 656, - "key": "xywuga5halyv7ie87omdoyqauchjrivl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 657, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0656", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.95", - "balance": "2.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 672, - "quantity": 3, - "cost": 5.65, - "product_key": "esse", - "notes": "Occaecati sunt occaecati voluptatem aut et aperiam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 657, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 657, - "key": "nxvmj0imbsdhmrygsmn5asbhi6qqlkgx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 658, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0657", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-20", - "last_sent_date": null, - "due_date": "2020-03-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.61", - "balance": "35.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 673, - "quantity": 9, - "cost": 5.29, - "product_key": "accusamus", - "notes": "Rerum nihil sunt aspernatur omnis facere. Praesentium quae officiis debitis et non aut saepe. Qui natus enim doloribus qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 658, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 658, - "key": "5sw1g77yptzyk49fdfudnakk5h0nt16j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 659, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0658", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2020-04-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.48", - "balance": "16.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 674, - "quantity": 8, - "cost": 2.56, - "product_key": "officia", - "notes": "Eaque tenetur ducimus ut sit qui vel sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 659, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 659, - "key": "rneav4zenxawqoolzfsuwobolurj8fks", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 660, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0659", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "88.47", - "balance": "48.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 675, - "quantity": 9, - "cost": 9.83, - "product_key": "aut", - "notes": "Qui voluptatem dolorem voluptatem eveniet laborum et esse. Id a eum ea sint suscipit assumenda. Qui commodi quam aut recusandae ratione porro qui. Quibusdam recusandae voluptas enim non amet velit qui. Omnis aliquid et odit quod nisi vel sit adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 660, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 660, - "key": "ztq1uwseuoh0lnaprfd9ecqm5wqhaw4u", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 661, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0660", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-16", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.98", - "balance": "0.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 676, - "quantity": 3, - "cost": 2.66, - "product_key": "autem", - "notes": "Incidunt similique necessitatibus dolorem. Voluptatum magnam dolore qui asperiores. Atque est dolore praesentium voluptatem veritatis ducimus quo dolores. Vitae velit et sit pariatur eveniet non quasi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 661, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 661, - "key": "4tavlsrjj93z6hb08btnjafr0gtbmoew", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 662, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0661", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.44", - "balance": "1.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 677, - "quantity": 8, - "cost": 1.43, - "product_key": "blanditiis", - "notes": "Aut dolorum necessitatibus omnis. Ut dicta quia qui excepturi debitis excepturi. Qui voluptatem quia quo qui. Aut deleniti incidunt id modi id sequi animi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 662, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 662, - "key": "fexfcve2bjirx7qjia4hlhd4ocmxcuqg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 663, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0662", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.15", - "balance": "28.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 678, - "quantity": 5, - "cost": 6.83, - "product_key": "nostrum", - "notes": "Voluptatem vel quis aliquam vitae. Quis qui fugiat qui ipsum vel. Nulla aut dignissimos ratione totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 663, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 663, - "key": "xymyichcegufunocunmry8olkatgrgfx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 664, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0663", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.14", - "balance": "9.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 679, - "quantity": 2, - "cost": 7.07, - "product_key": "ut", - "notes": "Qui unde nobis minus quisquam iure et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 664, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 664, - "key": "e1gb8b20avnsgfbwbwpev55j9qvmb6ed", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 665, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0664", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-17", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.32", - "balance": "12.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 680, - "quantity": 9, - "cost": 2.48, - "product_key": "enim", - "notes": "In sint voluptas doloribus ducimus ut. Eum ut aliquid ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 665, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 665, - "key": "0u6pcnwtcooh7wieuwfjvtpvfboipuic", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 666, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0665", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-06", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.40", - "balance": "20.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 681, - "quantity": 10, - "cost": 3.04, - "product_key": "laboriosam", - "notes": "Debitis est officia dicta. Necessitatibus molestiae autem minima facere est. Provident ipsum dolor labore similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 666, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 666, - "key": "g1p0cbasip1sahfjbnoabjuuwdd1gxqd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 667, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0666", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.81", - "balance": "8.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 682, - "quantity": 9, - "cost": 1.09, - "product_key": "nisi", - "notes": "Et eos dolores sequi qui inventore. Aut impedit praesentium ducimus sed. Voluptatem aspernatur est cumque vitae voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 667, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 667, - "key": "ia81z5xxqjuivjfaimdkpofakcuxolxf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 668, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0667", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-15", - "last_sent_date": null, - "due_date": "2020-01-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.74", - "balance": "1.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 683, - "quantity": 6, - "cost": 9.29, - "product_key": "repellat", - "notes": "Est occaecati nam soluta officiis quod voluptatibus temporibus. Et quo nesciunt facilis adipisci asperiores qui nobis. Magni enim soluta et numquam accusantium. Placeat modi quidem odio iste eaque adipisci voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 668, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 668, - "key": "6jtzk4qvtuxe8nng410uovj3cqumtdyf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 669, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0668", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.16", - "balance": "41.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 684, - "quantity": 8, - "cost": 8.77, - "product_key": "nam", - "notes": "Saepe nostrum nisi tempore. Et dignissimos veniam sed quisquam beatae libero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 669, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 669, - "key": "iqdztz08bawkwuig2skm7nrfgv13ql4z", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 670, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0669", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "96.80", - "balance": "43.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 685, - "quantity": 10, - "cost": 9.68, - "product_key": "dolorem", - "notes": "Animi sit recusandae ab cumque dolor. Quas commodi minima numquam voluptas quibusdam sed. Et alias hic est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 670, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 670, - "key": "llmn5rflytcqrdjidulotwqlldpc3sm8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 671, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0670", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.76", - "balance": "5.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 686, - "quantity": 4, - "cost": 8.94, - "product_key": "eveniet", - "notes": "Possimus itaque corporis ullam quis. Perferendis sed eius odio commodi. In nemo explicabo praesentium repudiandae quo. Libero laboriosam et id omnis. Id est rem in odit. Voluptatum asperiores illum ullam saepe illum. Mollitia dolor doloremque alias est omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 671, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 671, - "key": "8wxarknhw4dcz0agdwzg7jetj6km7f0x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 672, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0671", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-20", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.30", - "balance": "9.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 687, - "quantity": 10, - "cost": 1.23, - "product_key": "rerum", - "notes": "A molestiae provident debitis. Recusandae sint voluptate enim quia non quod.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 672, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 672, - "key": "edighfhjnnblbro5slcdxnsp1ea47yew", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 673, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0672", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.18", - "balance": "2.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 688, - "quantity": 2, - "cost": 9.09, - "product_key": "dolor", - "notes": "Rerum corrupti aut et dolore error et nemo. Temporibus laudantium corporis autem aperiam ab ea facere. Saepe dolorum reiciendis quis et autem temporibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 673, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 673, - "key": "fn5s0drdvtil5posc3tltwntqrimrxvi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 674, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0673", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2020-06-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "58.92", - "balance": "34.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 689, - "quantity": 6, - "cost": 9.82, - "product_key": "id", - "notes": "Perspiciatis aspernatur iusto dolores velit et autem. Porro maiores porro veritatis animi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 674, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 674, - "key": "mbslru1dq7cglbmusd79vmbnjio9egjt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 675, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0674", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "56.64", - "balance": "9.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 690, - "quantity": 6, - "cost": 9.44, - "product_key": "et", - "notes": "Dignissimos quia at esse cum deleniti. Neque non reprehenderit est dolor dolore hic ex. Et tenetur ratione quia facere expedita. Doloribus et eos possimus omnis ex facere doloribus. Voluptates ut magnam labore ab est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 675, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 675, - "key": "tkxngwhdv8rmxpel7zegzefmjxqcydp7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 676, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0675", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-04-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.00", - "balance": "2.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 691, - "quantity": 2, - "cost": 3, - "product_key": "unde", - "notes": "Magni inventore perferendis eligendi iusto. Non sint eaque aliquid quia. Cupiditate illo autem voluptas quia deserunt. Architecto voluptas nulla aut laudantium. Esse sunt qui qui natus officiis minima fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 676, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 676, - "key": "nx9ox43jtkoeyn9qyi8rr3gqjdbq0ohh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 677, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0676", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-03-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.20", - "balance": "1.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 692, - "quantity": 10, - "cost": 4.02, - "product_key": "ab", - "notes": "Expedita repellat mollitia et iste vel at fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 677, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 677, - "key": "jmvkjalb6qeg7tudy9a4ytacpixfxglf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 678, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0677", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-05-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "74.16", - "balance": "68.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 693, - "quantity": 9, - "cost": 8.24, - "product_key": "et", - "notes": "Aut illo tenetur quis reprehenderit a aliquam aspernatur. Quae et optio ad consequatur porro. Error veniam libero est ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 678, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 678, - "key": "gxzoxnsm8p7qlxehm3tb74oo1cphwihh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 679, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0678", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-10", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.28", - "balance": "12.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 694, - "quantity": 6, - "cost": 8.88, - "product_key": "neque", - "notes": "Aut quo accusantium velit. Et totam voluptas porro.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 679, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 679, - "key": "zcorquyrngeezspw7ffbncdj6bx3o7oh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 680, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0679", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.90", - "balance": "10.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 695, - "quantity": 7, - "cost": 2.7, - "product_key": "possimus", - "notes": "Et quisquam repellendus delectus repellat veritatis harum. Aut ut impedit recusandae nihil excepturi omnis. Rerum quibusdam suscipit sequi cum ut perferendis et consequuntur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 680, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 680, - "key": "2iwluymdhuiumv1sejbdwflwnv9iujgl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 681, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0680", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-31", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.54", - "balance": "27.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 696, - "quantity": 6, - "cost": 6.09, - "product_key": "ducimus", - "notes": "Et sed praesentium distinctio est esse eius consequatur. Et libero quas repellat similique et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 681, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 681, - "key": "1dkcacjlyzey4ya0a05hsshohbf596gv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 682, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0681", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.22", - "balance": "2.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 697, - "quantity": 2, - "cost": 1.61, - "product_key": "suscipit", - "notes": "Explicabo minima nobis libero id quod similique omnis. Accusantium voluptatum ducimus ullam reprehenderit provident voluptatem expedita voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 682, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 682, - "key": "ppyv8rovct2atwuheyx8icui9mgoizmi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 683, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0682", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-13", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.18", - "balance": "1.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 698, - "quantity": 2, - "cost": 2.59, - "product_key": "voluptas", - "notes": "Cupiditate inventore deserunt molestiae sed. Id est ut consequuntur modi libero quisquam dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 683, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 683, - "key": "sjjwgpsbp9ffnaohvftaplcfew7re7ob", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 684, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0683", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.27", - "balance": "8.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 699, - "quantity": 9, - "cost": 1.03, - "product_key": "eum", - "notes": "Incidunt atque distinctio omnis sint ducimus aut. Deserunt illum est exercitationem consequuntur dolorem consequatur labore rerum. Et amet ab neque veniam. Dignissimos laudantium quasi illum id ab. Rem provident dolores tempore sed laboriosam error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 684, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 684, - "key": "da9mticswj4kkqinygp0ucisxe4pnhxh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 685, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0684", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.05", - "balance": "16.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 700, - "quantity": 5, - "cost": 5.61, - "product_key": "dolor", - "notes": "Accusamus quia vel consequatur repellat qui. Dolorum iure quisquam ipsa quo. Consectetur iusto iure expedita voluptas porro aliquid quibusdam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 685, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 685, - "key": "tr22zgbydfocu0lmg5m9qfq5wgtnxdlj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 686, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0685", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2020-06-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.27", - "balance": "4.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 701, - "quantity": 1, - "cost": 7.27, - "product_key": "vel", - "notes": "Provident ut qui atque. Et itaque veritatis aliquid inventore repudiandae qui occaecati. Et in ea alias libero vitae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 686, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 686, - "key": "1yqkwpcvtcnbpsy9rp1nlzpqqvq8sj3a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 687, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0686", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.70", - "balance": "10.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 702, - "quantity": 5, - "cost": 4.54, - "product_key": "in", - "notes": "Distinctio maiores qui natus debitis voluptate sint. Quod ullam explicabo id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 687, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 687, - "key": "hv3pwtvhicy38ndmrwot6vlrucuesmtj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 688, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0687", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2020-02-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.80", - "balance": "29.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 703, - "quantity": 5, - "cost": 9.56, - "product_key": "ipsa", - "notes": "Occaecati blanditiis tempore nostrum consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 688, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 688, - "key": "3i8bwozmblnozspwcwd1zg84cwofekzj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 689, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0688", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.02", - "balance": "9.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 704, - "quantity": 7, - "cost": 2.86, - "product_key": "minus", - "notes": "Esse quia beatae sunt. Recusandae ut mollitia eligendi sit. Illo consequatur qui nesciunt qui. Quod eos et nesciunt libero provident. Itaque et inventore rerum earum veritatis. In aut ullam aperiam sequi aut quia. Eveniet et cum sit labore. Eum qui hic et deserunt et dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 689, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 689, - "key": "qksls8ylscz9dsipgusd2erijpdrer7n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 690, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0689", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.71", - "balance": "0.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 705, - "quantity": 3, - "cost": 1.57, - "product_key": "id", - "notes": "Ut qui quisquam non quas libero animi nobis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 690, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 690, - "key": "iydbm1cpyyeraemv5fkdappmtfrxstxo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 691, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0690", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.26", - "balance": "6.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 706, - "quantity": 7, - "cost": 4.18, - "product_key": "repellendus", - "notes": "Voluptatem quos temporibus omnis. Animi assumenda sed aliquam ipsa et assumenda. Laboriosam enim inventore odit deleniti et nostrum laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 691, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 691, - "key": "1tc5khxltr2suw43xwvgfcizsx8anha4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 692, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0691", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-11", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "88.74", - "balance": "14.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 707, - "quantity": 9, - "cost": 9.86, - "product_key": "amet", - "notes": "Earum rerum a et et. Iusto culpa dolore et reiciendis. Quaerat temporibus et et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 692, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 692, - "key": "71pryqihmrebvcjjrtgpnjiecvqxohxj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 693, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0692", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.06", - "balance": "10.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 708, - "quantity": 6, - "cost": 2.01, - "product_key": "culpa", - "notes": "Ut voluptatem dicta ipsum qui architecto. Est voluptatem exercitationem accusantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 693, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 693, - "key": "gwq3gknbtmtwagdysrkfryvntn0s8imf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 694, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0693", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.40", - "balance": "0.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 709, - "quantity": 1, - "cost": 4.4, - "product_key": "et", - "notes": "Nisi qui est rerum pariatur accusamus. Sed dolore dicta qui aut qui rem sunt. Eos dolorem qui quo quibusdam. Sit illo esse consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 694, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 694, - "key": "bvgguf11pq8puhbzzcemv83omg0hzjqn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 695, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0694", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.71", - "balance": "1.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 710, - "quantity": 1, - "cost": 3.71, - "product_key": "nostrum", - "notes": "Dolorum sunt voluptatum soluta esse at. Quasi qui exercitationem quidem voluptate tenetur. Nisi eum velit et voluptatem corporis quos. Quae dolor praesentium aperiam fugit. Ipsa magni et eaque sunt temporibus voluptas et. Sunt molestiae cum vel eaque laborum suscipit. Officiis vel unde hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 695, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 695, - "key": "s9v680p8trddrbxpvbdvs8axgjrl3rkt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 696, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0695", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.25", - "balance": "14.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 711, - "quantity": 5, - "cost": 9.85, - "product_key": "odio", - "notes": "Accusantium aut iste sapiente enim sunt sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 696, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 696, - "key": "tdbxe7lhsfrnsorf0frou1imody5pp44", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 697, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0696", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-09", - "last_sent_date": null, - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.84", - "balance": "0.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 712, - "quantity": 4, - "cost": 7.21, - "product_key": "amet", - "notes": "Cum aut est cupiditate itaque harum non et. Dolorem earum cupiditate numquam reiciendis voluptatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 697, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 697, - "key": "7a6xx0ip4xo2u8vhpxbrrlwsertfsvnx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 698, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0697", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-06-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.84", - "balance": "9.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 713, - "quantity": 2, - "cost": 8.92, - "product_key": "accusamus", - "notes": "Eaque voluptatem recusandae autem consectetur. Deserunt qui voluptatibus voluptatem sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 698, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 698, - "key": "akqrc7ridzcngv6dwr6yl2adrdogpl99", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 699, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0698", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.20", - "balance": "9.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 714, - "quantity": 10, - "cost": 1.02, - "product_key": "vero", - "notes": "Numquam minima nobis odit quae sint excepturi. Quia sint qui a veniam facilis. In unde qui quod est consectetur eaque nisi. Quos deleniti ut dolorum ut omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 699, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 699, - "key": "lgjbyx3ukoypgc6ivmvwjaygwnlt5nl2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 700, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0699", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "85.14", - "balance": "29.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 715, - "quantity": 9, - "cost": 9.46, - "product_key": "cupiditate", - "notes": "Ducimus quisquam quod et voluptas impedit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 700, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 700, - "key": "pnykap8pdu5qhpbguf5kva8oghhvob04", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 701, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0700", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.94", - "balance": "3.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 716, - "quantity": 2, - "cost": 4.47, - "product_key": "quas", - "notes": "Qui quaerat aliquam perferendis ipsam. Delectus perferendis consequatur ut. Et aut tempora facilis rem iusto. Magnam rerum quis ea in soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 701, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 701, - "key": "gmoe1gi7lm7ozppabfuc66rauujizn2e", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 702, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0701", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-25", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.03", - "balance": "3.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 717, - "quantity": 9, - "cost": 4.67, - "product_key": "voluptas", - "notes": "Necessitatibus eius sint omnis necessitatibus sit aspernatur quidem quisquam. Quibusdam totam aut vero officia sunt sunt odio exercitationem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 702, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 702, - "key": "ekk6hc2vhsnntsaia3qv90xsurqdynxs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 703, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0702", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.20", - "balance": "8.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 718, - "quantity": 5, - "cost": 5.84, - "product_key": "atque", - "notes": "Quia molestiae odit cupiditate quas et. Aut non voluptas consequuntur saepe quis recusandae excepturi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 703, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 703, - "key": "y6hfhwbzzckdpddprw6oghskadgrzy4v", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 704, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0703", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-12", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.60", - "balance": "27.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 719, - "quantity": 5, - "cost": 7.12, - "product_key": "magni", - "notes": "Dolorem minima aut esse aut perferendis et excepturi. Non et hic exercitationem. Voluptate ad facilis est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 704, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 704, - "key": "libim5xrii3zes2prisyxasudrytfrio", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 705, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0704", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-30", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.64", - "balance": "11.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 720, - "quantity": 4, - "cost": 3.16, - "product_key": "repellendus", - "notes": "Vel veniam iusto et debitis et. Praesentium voluptate excepturi magni est. Ad aspernatur veritatis iure dolor quia neque magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 705, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 705, - "key": "vkprksztvauvyfyaso2ntjg9cefln7jp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 706, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0705", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-03-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.00", - "balance": "55.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 721, - "quantity": 8, - "cost": 7.5, - "product_key": "et", - "notes": "Vero consequatur et mollitia molestiae dolor. Sequi debitis pariatur qui et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 706, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 706, - "key": "vcwreb8xkoaw3zrz4lgoyibjxgfydfld", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 707, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0706", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.90", - "balance": "10.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 722, - "quantity": 10, - "cost": 4.59, - "product_key": "eum", - "notes": "Quos est et odit fugiat ut aliquam. Fugit consequatur in architecto. Ullam id voluptas et quam ab. Et sunt dignissimos in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 707, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 707, - "key": "rd87oq8wkp5qbl3yvsq7exiwyyni62dd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 708, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0707", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.36", - "balance": "0.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 723, - "quantity": 2, - "cost": 6.68, - "product_key": "voluptate", - "notes": "Eum quidem labore et magnam nihil et laudantium. Blanditiis rerum vel quo sequi ipsa animi esse explicabo. Culpa et praesentium architecto maxime. Voluptate maiores quasi aliquid accusamus. Atque aut non velit veritatis. Ut natus quod aut eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 708, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 708, - "key": "bwktcsbyi2w70l2yq6byaq3kkjpr1tt5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 709, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0708", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.69", - "balance": "2.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 724, - "quantity": 1, - "cost": 2.69, - "product_key": "nihil", - "notes": "Adipisci at cumque incidunt rem illo ullam ipsam. Iusto cupiditate necessitatibus nemo ducimus ut adipisci aperiam. Amet aut praesentium accusantium consequatur eaque. Sit quis sit sint expedita ut neque minus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 709, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 709, - "key": "goryi1vzsccf49ict8ldxuk3efgomvrf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 710, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0709", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": null, - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.48", - "balance": "2.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 725, - "quantity": 4, - "cost": 2.62, - "product_key": "non", - "notes": "Ab et consequatur ipsam quod esse cumque quo. Odio sequi quae in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 710, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 710, - "key": "jqawjxlb8ociwtthkkuhcmako3raqoyk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 711, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0710", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-22", - "last_sent_date": null, - "due_date": "2019-12-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.54", - "balance": "6.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 726, - "quantity": 3, - "cost": 5.18, - "product_key": "hic", - "notes": "Ut quibusdam ut culpa perferendis velit aut soluta. Sunt cum sint et sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 711, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "invoice_id": 711, - "key": "q4ycomkrxd1einmya0kqeomywnszjkhw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 812, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0811", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.05", - "balance": "16.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 827, - "quantity": 7, - "cost": 9.15, - "product_key": "fugit", - "notes": "Voluptas molestias blanditiis blanditiis. Ea ea atque magnam. Corporis velit aut inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 812, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 812, - "key": "pn9vjimybeu16wtbdkqugnaukn40yc4g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 813, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0812", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-15", - "last_sent_date": null, - "due_date": "2020-05-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.54", - "balance": "6.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 828, - "quantity": 1, - "cost": 8.54, - "product_key": "ratione", - "notes": "Ipsa est libero quod ratione cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 813, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 813, - "key": "jfethjokwgibeo3l60gceu2tmoxfj8tk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 814, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0813", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.68", - "balance": "19.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 829, - "quantity": 8, - "cost": 7.96, - "product_key": "officia", - "notes": "Ipsum ducimus assumenda quis distinctio dicta repudiandae non libero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 814, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 814, - "key": "uy8yqvv62srutzxszj3r0aagqw6iq9jw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 815, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0814", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2020-03-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.04", - "balance": "3.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 830, - "quantity": 2, - "cost": 6.52, - "product_key": "asperiores", - "notes": "Omnis magnam neque quos et minima est iusto. Sed et optio vero molestias. Eum nesciunt nihil sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 815, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 815, - "key": "eaosmomeacdoleoczr6ynjjvz6bbawcv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 816, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0815", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.16", - "balance": "18.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 831, - "quantity": 6, - "cost": 6.86, - "product_key": "voluptatum", - "notes": "Dicta eveniet qui veniam. Qui voluptatibus animi voluptatem asperiores et tempora.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 816, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 816, - "key": "aiynub19cca4ujparwk4vgfcjrejppzq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 817, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0816", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2019-12-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.38", - "balance": "2.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 832, - "quantity": 2, - "cost": 1.69, - "product_key": "assumenda", - "notes": "Ipsam et aperiam et totam. Sapiente qui libero numquam vel error. Quae at itaque consequatur ut suscipit earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 817, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 817, - "key": "uhezd5dwnzs1xxhnwqbbwc74tbfqotxj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 818, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0817", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-22", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.46", - "balance": "0.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 833, - "quantity": 2, - "cost": 5.73, - "product_key": "hic", - "notes": "Libero esse mollitia sequi nam placeat quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 818, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 818, - "key": "eid4ezr58vjufwhodi4jhgtbrki2bys5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 819, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0818", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2020-04-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.24", - "balance": "3.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 834, - "quantity": 4, - "cost": 4.06, - "product_key": "est", - "notes": "Ratione distinctio dignissimos magni nesciunt porro. Eos cum est consequatur ut porro iste.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 819, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 819, - "key": "wsvszmqi3tu2ytzagwipbrql2rzvz5md", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 820, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0819", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.08", - "balance": "13.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 835, - "quantity": 4, - "cost": 8.27, - "product_key": "ut", - "notes": "Vero harum fugit animi ducimus. Fugiat eos culpa officia accusantium aut ipsam. Doloribus dolorem aliquam qui rem. Voluptatibus vel ut ullam error veniam id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 820, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 820, - "key": "cfqgkghqzod9pd2rmgeshsv65otgnzzy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 821, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0820", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.44", - "balance": "32.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 836, - "quantity": 8, - "cost": 7.18, - "product_key": "quidem", - "notes": "Veniam aperiam velit neque illum. Reiciendis quidem voluptatem itaque magnam. Consequatur enim provident voluptatem ut et ut recusandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 821, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 821, - "key": "en04x5v7vbtjwe6at3h1b0eeyipec8zr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 822, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0821", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-02-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.07", - "balance": "21.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 837, - "quantity": 9, - "cost": 3.23, - "product_key": "laudantium", - "notes": "Aliquam in molestias delectus quia sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 822, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 822, - "key": "fvelzyd31mgl3gkabqadqfmf8sjnlabx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 823, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0822", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-13", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.90", - "balance": "5.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 838, - "quantity": 5, - "cost": 2.78, - "product_key": "autem", - "notes": "Error sit et qui aut in accusamus maxime. Quas blanditiis id eos possimus reprehenderit. Natus libero ipsum voluptatem asperiores voluptas vero commodi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 823, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 823, - "key": "qlwy040qz4nqrmnkgje51gwnxphtfzo7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 824, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0823", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2020-05-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.16", - "balance": "6.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 839, - "quantity": 1, - "cost": 9.16, - "product_key": "saepe", - "notes": "Ut quas voluptatibus aspernatur voluptas non eveniet. Voluptatem quia dolores nam veritatis quod debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 824, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 824, - "key": "ugt7kvaos21cjlwg7qtctsj2uzgp4gqa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 825, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0824", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-10", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.75", - "balance": "37.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 840, - "quantity": 7, - "cost": 6.25, - "product_key": "id", - "notes": "Amet ex et laboriosam vero non velit voluptas. Distinctio consectetur est rerum voluptates rerum voluptatem neque velit. Et fugiat sed id ullam adipisci inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 825, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 825, - "key": "qjmpvvyosa364pj3tiadgpgqon8dvsff", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 826, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0825", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-18", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.70", - "balance": "1.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 841, - "quantity": 1, - "cost": 3.7, - "product_key": "ut", - "notes": "Architecto aut eum consequatur ab. Commodi non qui est. Placeat neque sint nihil totam. Et sint quis non quibusdam porro eius placeat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 826, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 826, - "key": "fizoabouxwgrjuvyoj2211f40a2n8m7s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 827, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0826", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.56", - "balance": "35.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 842, - "quantity": 4, - "cost": 9.39, - "product_key": "qui", - "notes": "Molestias minima consequatur animi aut voluptas. Vel nulla quis qui. Eos voluptatibus magni porro nobis. Facere enim ut eos dolor eos est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 827, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 827, - "key": "vnisup3bj9quqsvab5mc9ol4p417dqes", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 828, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0827", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.05", - "balance": "2.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 843, - "quantity": 1, - "cost": 8.05, - "product_key": "molestias", - "notes": "Assumenda magnam quo dicta doloremque. Explicabo porro et id ab non praesentium ut et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 828, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 828, - "key": "4y5ryewlsoa6wtno6z0hshwasgwz3bub", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 829, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0828", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-11", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.06", - "balance": "4.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 844, - "quantity": 1, - "cost": 6.06, - "product_key": "ipsum", - "notes": "Temporibus dolor quae et placeat assumenda consequatur et. Facilis quasi voluptatem non rem velit porro. Possimus adipisci quam sequi voluptates aliquam mollitia beatae. Ipsa dolores voluptatem vero numquam harum autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 829, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 829, - "key": "uc27juy0bxi6s042q9fhwhz1vpxxr04k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 830, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0829", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-04-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.94", - "balance": "34.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 845, - "quantity": 6, - "cost": 7.99, - "product_key": "debitis", - "notes": "Quibusdam sapiente ut dolores. Repellat debitis harum non est aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 830, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 830, - "key": "h2nyukvvsygtozbpastbciztx08rtuct", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 831, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0830", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2019-12-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.38", - "balance": "18.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 846, - "quantity": 6, - "cost": 6.73, - "product_key": "maxime", - "notes": "Et perspiciatis eum quis pariatur est. Accusantium laborum et error tempora ea aut voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 831, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 831, - "key": "mtn54chkah9vw9eme53nvc2ougivpyga", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 832, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0831", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.66", - "balance": "1.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 847, - "quantity": 1, - "cost": 1.66, - "product_key": "et", - "notes": "Tempore nisi et soluta qui repellendus assumenda. Fugit in voluptatem sed optio sapiente facilis reprehenderit. Magni quia et minus distinctio. Est voluptate sit et sit in. Eos temporibus sapiente minus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 832, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 832, - "key": "wdc6v5ar7pbqyztrmg7ptx04ay4mqcxm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 833, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0832", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.33", - "balance": "0.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 848, - "quantity": 1, - "cost": 1.33, - "product_key": "voluptatem", - "notes": "Dignissimos doloremque nobis molestias et esse eligendi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 833, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 833, - "key": "aiqleu4au5hmowlfskbefluidagd1fub", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 834, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0833", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.32", - "balance": "5.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 849, - "quantity": 4, - "cost": 7.33, - "product_key": "sed", - "notes": "Enim ratione cupiditate provident dolorum. Maxime perspiciatis ad esse voluptatem adipisci. Dolorem sed aperiam nihil suscipit incidunt. Quis vel nostrum dolorem sit aliquam accusantium mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 834, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 834, - "key": "buuon3l9kizyzdi3inivalbjuhhucrts", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 835, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0834", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-03-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.76", - "balance": "10.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 850, - "quantity": 9, - "cost": 3.64, - "product_key": "occaecati", - "notes": "Veniam maiores unde aut ex voluptatibus. Quidem omnis nisi minima quis eos. Dignissimos omnis ea saepe magni iste. Occaecati cupiditate quibusdam sit. Quae commodi tempora consequatur voluptatem. At molestiae quo ea cum temporibus. Non labore rerum non at.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 835, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 835, - "key": "dxrpmevgnf1fmezn2ki0blcvjq9bch8e", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 836, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0835", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "75.04", - "balance": "50.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 851, - "quantity": 8, - "cost": 9.38, - "product_key": "nulla", - "notes": "Recusandae rerum distinctio dignissimos eum dicta enim. Quam consequatur ut qui sed ut expedita qui. Sequi id hic corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 836, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 836, - "key": "wdjcbjxqiy4w9as9eyruogtkbupokupn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 837, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0836", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "71.20", - "balance": "54.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 852, - "quantity": 10, - "cost": 7.12, - "product_key": "officiis", - "notes": "Aliquid et natus assumenda exercitationem optio est. Excepturi necessitatibus enim itaque est tenetur ea. Quam fugit aut atque iure quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 837, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 837, - "key": "s4wugcrmmqzo9whqhokikzn1avlykpew", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 838, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0837", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2019-12-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.94", - "balance": "46.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 853, - "quantity": 9, - "cost": 6.66, - "product_key": "fugiat", - "notes": "Enim quo tempora iusto. Laborum eos odio voluptatem rerum. In molestiae excepturi et neque et molestias sint. In ut eveniet quis et et. Commodi dolorem libero quidem suscipit a natus laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 838, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 838, - "key": "lkyfbjbszrfo7onc8aklgmsjtv3ic5vo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 839, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0838", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.36", - "balance": "6.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 854, - "quantity": 2, - "cost": 3.68, - "product_key": "ut", - "notes": "Quia et culpa ipsam explicabo. Non dignissimos debitis consequatur ipsum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 839, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 839, - "key": "nnt6six5t1gdaooud9gtkq1bmqlf5eiu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 840, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0839", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.39", - "balance": "6.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 855, - "quantity": 1, - "cost": 7.39, - "product_key": "numquam", - "notes": "Ut reiciendis non laudantium amet magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 840, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 840, - "key": "dddoe2kemjbgcicuvlafi2e4uu7praep", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 841, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0840", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.60", - "balance": "16.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 856, - "quantity": 10, - "cost": 2.26, - "product_key": "facere", - "notes": "Facilis ab voluptatum officiis. Molestiae ipsa sit ut placeat. Soluta enim atque est excepturi. Quidem quam facilis id accusantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 841, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 841, - "key": "gvshvgejs2suawxqmflehomh2bzxtn1s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 842, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0841", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.36", - "balance": "19.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 857, - "quantity": 4, - "cost": 5.09, - "product_key": "perspiciatis", - "notes": "Consequuntur ut error repudiandae alias. Est ducimus non laboriosam voluptates. Ipsa consequatur dignissimos exercitationem nobis consequatur ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 842, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 842, - "key": "ufscgtxvo3xbt6tgfnfdu2k0uahla8vu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 843, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0842", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-28", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.74", - "balance": "10.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 858, - "quantity": 2, - "cost": 5.37, - "product_key": "qui", - "notes": "Esse quia culpa omnis id quos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 843, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 843, - "key": "5jph8l1iojpior2hujckffzw7smqe0gs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 844, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0843", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.50", - "balance": "36.89", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 859, - "quantity": 9, - "cost": 7.5, - "product_key": "et", - "notes": "Ut amet hic consequatur ex consequatur fuga a quam. Quia veniam distinctio vel quia voluptas neque provident distinctio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 844, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 844, - "key": "dmrzlal2ptuytz5wtyumtll4pz2xhdub", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 845, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0844", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.81", - "balance": "0.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 860, - "quantity": 1, - "cost": 1.81, - "product_key": "recusandae", - "notes": "Exercitationem magni et similique qui voluptatum iusto. Enim quis officiis eum. Saepe incidunt hic voluptate est asperiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 845, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 845, - "key": "3fxf178a9cssv5sius8j9q3j8ugl0wgd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 846, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0845", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "78.90", - "balance": "34.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 861, - "quantity": 10, - "cost": 7.89, - "product_key": "et", - "notes": "Corporis voluptatibus voluptatem consequatur facilis recusandae id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 846, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 846, - "key": "gub6ujssuuvh00zle4xbbxmhrmcpmy3q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 847, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0846", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.66", - "balance": "0.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 862, - "quantity": 1, - "cost": 1.66, - "product_key": "veritatis", - "notes": "Magnam et sit et voluptates ea facere voluptatibus quas. Accusamus iure et qui nisi. Nam ab quasi ullam cupiditate dignissimos culpa. Officiis ut nisi magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 847, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 847, - "key": "bdfoq1edc8qjf6am2lptadzq0qz1epsl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 848, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0847", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-08", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.46", - "balance": "11.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 863, - "quantity": 6, - "cost": 2.41, - "product_key": "eos", - "notes": "In ipsa sint sint. Dolorem vel aut quo repellendus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 848, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 848, - "key": "cok0ll2aifijs7dawmiksg9ksbtkum6z", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 849, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0848", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.34", - "balance": "6.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 864, - "quantity": 2, - "cost": 3.67, - "product_key": "inventore", - "notes": "Quia qui et ducimus fuga vitae earum necessitatibus. Quo qui dolores dicta similique minima sunt. Repellat dolores et rerum laudantium magnam totam fugit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 849, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 849, - "key": "i8jiknkl5tjsbch7teg0ka9qbftjcqtg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 850, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0849", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2020-04-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.87", - "balance": "3.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 865, - "quantity": 1, - "cost": 3.87, - "product_key": "occaecati", - "notes": "Laboriosam enim laudantium mollitia. Fugit non iusto non est cum et modi. In eaque sunt beatae pariatur velit voluptatem fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 850, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 850, - "key": "cxc5kmsyqijdbxy5qjqgv5mthbjzycdz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 851, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0850", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-06-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.27", - "balance": "0.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 866, - "quantity": 1, - "cost": 4.27, - "product_key": "molestiae", - "notes": "Quisquam iure et voluptas porro omnis. Iste repudiandae iste rerum inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 851, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 851, - "key": "t8ylxm26zyxqq4q91wmqbaq3onwwdwpd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 852, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0851", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.64", - "balance": "24.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 867, - "quantity": 6, - "cost": 5.44, - "product_key": "rerum", - "notes": "Enim corporis accusamus ut ut officiis praesentium. In voluptatibus eius omnis cupiditate facere. Quis aliquid rerum quisquam et libero officia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 852, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 852, - "key": "oasabaimrux2yfsary4r5rs5mcibwjd4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 853, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0852", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.22", - "balance": "3.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 868, - "quantity": 9, - "cost": 1.58, - "product_key": "dolore", - "notes": "Temporibus hic aut ab vel recusandae. Ex occaecati fugiat possimus dolorum. Corporis et nihil velit distinctio. Aspernatur quo porro ullam nam. Rerum blanditiis autem quas aut fuga incidunt. Ratione laudantium praesentium et atque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 853, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 853, - "key": "ghof8kcrc3qj94ouaxmfpy6jbxsbewae", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 854, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0853", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2020-06-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.14", - "balance": "1.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 869, - "quantity": 1, - "cost": 9.14, - "product_key": "velit", - "notes": "Tempora dolores enim rerum rerum aut unde aliquid pariatur. Quam quae voluptas rerum ut sint ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 854, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 854, - "key": "qaakfavovnbdbputzcnpmc32cwsyfkdx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 855, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0854", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-04-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.38", - "balance": "19.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 870, - "quantity": 7, - "cost": 3.34, - "product_key": "vel", - "notes": "Possimus ipsum distinctio officia laboriosam. Similique et sit sint sit quis aliquid cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 855, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 855, - "key": "usajogf2awn2d18qvrhoebvcxtpnhorw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 856, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0855", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-06-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.36", - "balance": "20.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 871, - "quantity": 4, - "cost": 6.09, - "product_key": "quae", - "notes": "Ut iusto beatae est unde dolore incidunt fugit. Consectetur accusantium aliquam similique. Qui qui facere delectus suscipit nulla. Eligendi dolores excepturi aut unde quia quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 856, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 856, - "key": "zog46zbh6p1hb72og2vpkwofjtznpx7p", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 857, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0856", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-03-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.56", - "balance": "34.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 872, - "quantity": 7, - "cost": 9.08, - "product_key": "id", - "notes": "Rerum assumenda hic excepturi. Sequi hic minus sint alias. Repellat quos impedit illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 857, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 857, - "key": "tcluxbnksqfs5iumzywbihqdllly2vpm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 858, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0857", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.36", - "balance": "14.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 873, - "quantity": 4, - "cost": 5.09, - "product_key": "aliquam", - "notes": "Vel rerum eius ipsum maxime at ut sint. Et nihil unde quod rerum quia omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 858, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 858, - "key": "eb7nc1rfreuzq5mhmi5qi2nrtpbytv2z", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 859, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0858", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2019-12-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "93.20", - "balance": "7.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 874, - "quantity": 10, - "cost": 9.32, - "product_key": "dolor", - "notes": "Id itaque perferendis ea aut aut nisi. Sint libero illo quis et. Reprehenderit cupiditate qui velit rerum. Possimus doloribus atque sed dolorem veniam quisquam quia. Omnis et totam et at exercitationem at dolor rem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 859, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 859, - "key": "zwy3dxfsaloldwxlaal2dmyzda0gjkq3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 860, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0859", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.19", - "balance": "2.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 875, - "quantity": 1, - "cost": 2.19, - "product_key": "dolor", - "notes": "Rem ea in nihil voluptatum dolores quia delectus mollitia. Saepe voluptatem voluptatem aut veniam rerum. Id ut in molestiae iure possimus non aut. Modi est cumque sit non nostrum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 860, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 860, - "key": "hkfnrrozhi5mhmctqd6iw5k7ocjpkxvd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 861, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0860", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-05-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.92", - "balance": "17.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 876, - "quantity": 8, - "cost": 3.74, - "product_key": "non", - "notes": "Officiis eligendi animi exercitationem nihil dignissimos cumque. Labore voluptas fuga et vero eaque officia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 861, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 861, - "key": "rzvq8k4mhps2ubcdqzghhnyyu8whlyjc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 862, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0861", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2020-04-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.64", - "balance": "27.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 877, - "quantity": 8, - "cost": 4.83, - "product_key": "inventore", - "notes": "Provident qui corrupti quas nihil. Rerum et voluptates non assumenda nihil. Molestiae neque praesentium ut. Qui et non quia qui velit animi. Non numquam et nam veniam enim tempora. In ipsum rerum quos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 862, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 862, - "key": "1kdqbxgzivfydwtixdqteywiipw9slkh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 863, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0862", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.36", - "balance": "1.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 878, - "quantity": 8, - "cost": 1.17, - "product_key": "quia", - "notes": "Eum repellat similique ut quis. Et sit aut enim accusantium temporibus cum. Ad quos iure sunt dolorum et incidunt cumque omnis. Ipsam voluptate quidem deserunt laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 863, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 863, - "key": "rurtbyqjxfxwfgdqfvbnms6vqtm8vaef", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 864, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0863", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-26", - "last_sent_date": null, - "due_date": "2020-04-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.52", - "balance": "10.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 879, - "quantity": 8, - "cost": 1.44, - "product_key": "ea", - "notes": "Vel sapiente pariatur qui aut facere et accusamus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 864, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 864, - "key": "wrhquhwmzijldah0hwflvxgorabduekv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 865, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0864", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-27", - "last_sent_date": null, - "due_date": "2020-03-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.12", - "balance": "0.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 880, - "quantity": 8, - "cost": 4.39, - "product_key": "corporis", - "notes": "Fuga asperiores qui molestiae aut ut autem. Esse facere molestiae officiis enim. Qui et nesciunt alias voluptas. Dolor repudiandae est non ut nam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 865, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 865, - "key": "fe7gpkfgjmpldlhbimoxinqnx42knhes", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 866, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0865", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-27", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.40", - "balance": "5.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 881, - "quantity": 4, - "cost": 6.85, - "product_key": "non", - "notes": "Porro nam beatae perferendis sed quas blanditiis rerum. Eligendi rerum doloribus amet quis et reprehenderit unde.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 866, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 866, - "key": "lczzxfuzlddfx19tdrrz6voqwclgy4x4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 867, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0866", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.40", - "balance": "14.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 882, - "quantity": 4, - "cost": 5.6, - "product_key": "sed", - "notes": "Rerum sit voluptatem laborum sed aperiam dolores rem laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 867, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 867, - "key": "mzwrpi8jddqypecjjkltz52b6mlgkimn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 868, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0867", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.78", - "balance": "2.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 883, - "quantity": 1, - "cost": 4.78, - "product_key": "officiis", - "notes": "Quo harum eligendi nam et. Impedit accusamus odit perferendis nostrum ex unde iusto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 868, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 868, - "key": "ddjldmnchryf6i4xuplefhsl9fitabbj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 869, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0868", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.00", - "balance": "16.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 884, - "quantity": 4, - "cost": 6.75, - "product_key": "et", - "notes": "Necessitatibus dolorum ut numquam optio nam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 869, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 869, - "key": "sdcp7ssxzb6raminskhywpmmtdqo6kwe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 870, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0869", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.64", - "balance": "11.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 885, - "quantity": 3, - "cost": 6.88, - "product_key": "voluptatum", - "notes": "Ut modi quos magni doloremque est reprehenderit. Vel deserunt delectus corporis delectus aut. Rerum vero amet aut optio quos quis. Sed et et voluptas ut dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 870, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 870, - "key": "ia1qsidkaxiqvpc1bzskuowyouwprcpv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 871, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0870", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-22", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "56.88", - "balance": "44.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 886, - "quantity": 9, - "cost": 6.32, - "product_key": "aut", - "notes": "Autem magni et amet alias. Quasi et sint natus neque dolor impedit ea. Incidunt excepturi qui atque ea rem similique. Fugiat id esse sint quae. Consectetur expedita tenetur unde est atque vel. At ipsam quae nostrum sit dolor. Excepturi quia pariatur debitis eos inventore quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 871, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 871, - "key": "iqohegahajc5eej43ooyapq2t8pg33ow", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 872, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0871", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-12", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.25", - "balance": "7.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 887, - "quantity": 5, - "cost": 3.65, - "product_key": "beatae", - "notes": "Eveniet exercitationem aut at facere. Placeat eveniet repellat assumenda ipsa. Perferendis non recusandae ut aut nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 872, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 872, - "key": "ythgi0miicenibnftteip1drhcgiynnw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 873, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0872", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-20", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "75.96", - "balance": "75.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 888, - "quantity": 9, - "cost": 8.44, - "product_key": "velit", - "notes": "Itaque qui consequatur vero ut maiores. Sed consectetur nesciunt ut perspiciatis iusto deleniti quaerat enim. Porro magni perferendis unde rem dolor earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 873, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 873, - "key": "gerhhkzax4nln8sf97usblnvvzjrpmct", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 874, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0873", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.94", - "balance": "2.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 889, - "quantity": 2, - "cost": 6.47, - "product_key": "maiores", - "notes": "Earum est neque qui occaecati ex. Qui neque quos aspernatur. Amet dolore ullam perspiciatis et natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 874, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 874, - "key": "ceckdtay3lp1w2du5w1avcrzt6aw3316", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 875, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0874", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-06", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.04", - "balance": "0.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 890, - "quantity": 2, - "cost": 2.02, - "product_key": "ad", - "notes": "Nulla quia omnis officiis. In recusandae voluptate aut. Corporis ea vitae repellendus ut doloribus quasi nisi nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 875, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 875, - "key": "sxqh2ddghgolt6jc2zmmtsp6clhfgarq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 876, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0875", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-04-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.61", - "balance": "1.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 891, - "quantity": 1, - "cost": 7.61, - "product_key": "pariatur", - "notes": "Doloribus rerum laborum non fugit. Molestiae eveniet libero eveniet recusandae. Ab alias ex non laboriosam aliquam cupiditate. Ullam delectus provident aut inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 876, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 876, - "key": "s8po2wbi4ba6zkyile5jqgojq69hm7aa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 877, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0876", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-08", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.46", - "balance": "1.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 892, - "quantity": 1, - "cost": 7.46, - "product_key": "quaerat", - "notes": "Quis repellat aliquam praesentium qui id. Est hic ad voluptatem in est nemo. Doloribus ipsam hic veritatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 877, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 877, - "key": "m3ghur022ootgtoentdmdlv6jkxezrpr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 878, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0877", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "84.87", - "balance": "26.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 893, - "quantity": 9, - "cost": 9.43, - "product_key": "eveniet", - "notes": "Cumque ex et in sapiente. Et dolores quia et delectus et corporis quia. Illum nihil est quia. Explicabo autem et omnis et earum qui. Illum facilis quia aut voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 878, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 878, - "key": "sj81jwcviysrggqjojorecbv8ec0gfdl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 879, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0878", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.94", - "balance": "0.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 894, - "quantity": 2, - "cost": 6.47, - "product_key": "voluptate", - "notes": "Vitae nemo vero sit libero nisi ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 879, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 879, - "key": "f02igqlg8fjnsn4ml6o9kajdsmg3iziw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 880, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0879", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-03", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.24", - "balance": "8.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 895, - "quantity": 3, - "cost": 9.08, - "product_key": "numquam", - "notes": "Perspiciatis unde magnam ipsam placeat atque quibusdam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 880, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 880, - "key": "wlhm8crpvjw07pu2dtyvvw0bxsvnhis2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 881, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0880", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-16", - "last_sent_date": null, - "due_date": "2020-03-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "78.80", - "balance": "72.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 896, - "quantity": 10, - "cost": 7.88, - "product_key": "similique", - "notes": "Molestiae dignissimos sit ipsa omnis. Asperiores repudiandae pariatur quos incidunt. In sed nulla eius est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 881, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 881, - "key": "cj0m6sblkam42rchluuxvcuijovea1so", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 882, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0881", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2019-12-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.74", - "balance": "1.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 897, - "quantity": 1, - "cost": 1.74, - "product_key": "omnis", - "notes": "Quis non et voluptatem voluptatem ea et autem aut. Eum ut doloribus minima consequatur est. Amet est autem et architecto. Libero et vero mollitia explicabo numquam quia fugiat dolores. Aut nihil neque non vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 882, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 882, - "key": "iehahirotstxqfacvub9h6uwcbses16i", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 883, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0882", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-27", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.42", - "balance": "2.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 898, - "quantity": 6, - "cost": 2.07, - "product_key": "id", - "notes": "Qui possimus est commodi aliquam inventore molestiae et. Repellendus illo molestias ea ut. Porro voluptatem minima eos vitae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 883, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 883, - "key": "wrsxhm2yloimaz9daxxqinonct1k9nep", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 884, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0883", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.11", - "balance": "27.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 899, - "quantity": 3, - "cost": 9.37, - "product_key": "at", - "notes": "Necessitatibus suscipit sunt hic ut a. Et nisi praesentium quis provident eos autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 884, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 884, - "key": "dfmmnjhypnmvzffisngs2ue0k7xyu57x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 885, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0884", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-27", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.29", - "balance": "3.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 900, - "quantity": 1, - "cost": 9.29, - "product_key": "veniam", - "notes": "Omnis rerum corrupti molestias et. Sapiente sed quasi provident. Quos occaecati dolores et nisi. Veniam ea velit aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 885, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 885, - "key": "j6j40yl8d8xt03uuawkqgmj1e8l07vnz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 886, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0885", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2020-03-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.80", - "balance": "23.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 901, - "quantity": 10, - "cost": 4.28, - "product_key": "est", - "notes": "Et laborum voluptatem est aut. Consequuntur repudiandae est quidem quisquam rerum. Sint architecto numquam eos aut quaerat et suscipit. Optio rem saepe libero tempora. Necessitatibus est ea pariatur totam quaerat temporibus repudiandae iusto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 886, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 886, - "key": "qps4q6dkzlfariqxl5nbgyuqopvf1fie", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 887, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0886", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.41", - "balance": "9.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 902, - "quantity": 7, - "cost": 2.63, - "product_key": "asperiores", - "notes": "Hic eveniet nihil molestias ad. Officia quae eveniet non quaerat quo culpa ex.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 887, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 887, - "key": "vyupltasxzf1y4qgrvyteyastuuyxdm6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 888, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0887", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.03", - "balance": "10.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 903, - "quantity": 7, - "cost": 7.29, - "product_key": "deleniti", - "notes": "At repellat natus aspernatur omnis. Rerum voluptatibus doloribus veniam quas porro quia delectus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 888, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 888, - "key": "yipfsierabwjst5sohbc5arlq2ayxly9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 889, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0888", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.18", - "balance": "47.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 904, - "quantity": 9, - "cost": 7.02, - "product_key": "maxime", - "notes": "Temporibus qui odio et nam et assumenda eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 889, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 889, - "key": "eh4npblo7u4tilxyrhkvmuwbshlqet5a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 890, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0889", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.48", - "balance": "14.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 905, - "quantity": 9, - "cost": 1.72, - "product_key": "qui", - "notes": "Autem sunt enim consequatur. Ducimus dolorum recusandae sint et et. Repudiandae neque fugit officia enim nesciunt aut. Rerum et ex ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 890, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 890, - "key": "qrb8foisvfbqyqjhyt9clqiemxqvxhpi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 891, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0890", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-13", - "last_sent_date": null, - "due_date": "2019-12-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.48", - "balance": "1.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 906, - "quantity": 8, - "cost": 1.81, - "product_key": "amet", - "notes": "Sequi sed modi incidunt ut est eveniet. Aut velit aliquam quas. Iste neque ipsam error autem voluptas commodi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 891, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 891, - "key": "p48zdsygvzf1983xjcrtu1knvlowvwii", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 892, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0891", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.50", - "balance": "20.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 907, - "quantity": 5, - "cost": 4.5, - "product_key": "officiis", - "notes": "Labore necessitatibus numquam aut excepturi ut. Et et unde soluta illum. Labore quibusdam ullam dolor porro fugiat ex ea et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 892, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 892, - "key": "rwcpkn6rhw1yhk0exmd7ilykufrjipww", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 893, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0892", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-03", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "98.70", - "balance": "1.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 908, - "quantity": 10, - "cost": 9.87, - "product_key": "sit", - "notes": "Doloribus error illo labore harum voluptatem soluta quae. Id quidem voluptates eum numquam. Explicabo sapiente voluptatem nihil ratione et alias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 893, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 893, - "key": "2w2wl1imq0cipf4exy1qwtax0ryq1bdy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 894, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0893", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-18", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.74", - "balance": "39.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 909, - "quantity": 7, - "cost": 5.82, - "product_key": "voluptatem", - "notes": "Odio dolorem officia blanditiis dolorem voluptatum hic ab. Commodi repudiandae ab sequi sunt. Et ipsam ut est nisi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 894, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 894, - "key": "ofdk15gaoyeo5fvnaicdykk89ccpyvqd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 895, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0894", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.17", - "balance": "3.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 910, - "quantity": 3, - "cost": 4.39, - "product_key": "ratione", - "notes": "Ut dolor itaque qui incidunt sunt quibusdam. Sit recusandae necessitatibus perferendis aperiam dolorem quis. Vero doloremque fugiat non quisquam repellendus vitae temporibus. Ab ab aperiam quia qui esse quas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 895, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 895, - "key": "jdhty8pltswjwwqxivtuzfkkq2oncod0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 896, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0895", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-04-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.15", - "balance": "27.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 911, - "quantity": 5, - "cost": 8.43, - "product_key": "sint", - "notes": "Dicta harum eos vel enim illum et. Possimus alias vitae quibusdam ex dicta quos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 896, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 896, - "key": "gullaviftyxk43kbws9xiklfipjdsjaf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 897, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0896", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2020-02-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.96", - "balance": "32.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 912, - "quantity": 8, - "cost": 7.62, - "product_key": "perspiciatis", - "notes": "Tempore ullam libero alias. Ut id harum ut fugiat eos porro. Eaque sed nihil saepe reiciendis velit nostrum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 897, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 897, - "key": "aof7u8bfrms50hkg6ugygqvoesjcqzhe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 898, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0897", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-02-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.82", - "balance": "0.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 913, - "quantity": 1, - "cost": 4.82, - "product_key": "dicta", - "notes": "Et animi mollitia maiores corporis. Sit exercitationem est est recusandae et eos ipsam. Ab et sed nemo cum hic. Perferendis debitis porro aut enim vitae vel aut vero. Est consectetur minus reprehenderit dolorem. Voluptate nesciunt sit facilis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 898, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 898, - "key": "l2xx5j35stgky3ixev82rfmvu2yjsyeu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 899, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0898", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-11", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.61", - "balance": "0.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 914, - "quantity": 1, - "cost": 1.61, - "product_key": "ratione", - "notes": "Totam quia magnam quaerat. Eligendi voluptatem autem et aut voluptatem illum. Optio magnam voluptas a corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 899, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 899, - "key": "lndxuevobpstm8eyq3u3lyhmip37gfng", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 900, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0899", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.29", - "balance": "1.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 915, - "quantity": 3, - "cost": 1.43, - "product_key": "laudantium", - "notes": "Et illum quibusdam quod quas aliquam et hic. Et ea quisquam eum qui id dignissimos consequatur omnis. Minus excepturi velit tempore enim. Quos ab quia non sed iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 900, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 900, - "key": "gw0p60c2bw6bqxsk4mrnzawtdzsidpnq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 901, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0900", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-19", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.29", - "balance": "0.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 916, - "quantity": 7, - "cost": 5.47, - "product_key": "velit", - "notes": "Voluptates explicabo id odit magni et minima architecto. Sint nam tenetur dolor non. Sunt soluta ut debitis ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 901, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 901, - "key": "c9pbgomkuwcei3uccu9qnxma6qc7irzk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 902, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0901", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.90", - "balance": "14.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 917, - "quantity": 9, - "cost": 5.1, - "product_key": "quae", - "notes": "Praesentium cum nostrum porro optio. Nostrum dignissimos aut aut. Et nisi et et nostrum ullam reprehenderit. Vitae veritatis totam quia sit odit ullam cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 902, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 902, - "key": "ex6esfzktpvfg5pi5pgt3cr6iurz0vnn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 903, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0902", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-12", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.23", - "balance": "4.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 918, - "quantity": 3, - "cost": 1.41, - "product_key": "ex", - "notes": "Aut occaecati exercitationem ex similique harum minus velit. Eos veniam corrupti autem et quod nostrum. Est quis soluta repudiandae minima aliquid. Voluptatem libero voluptatibus et. Quia quasi quidem est aut. Iste dolores eaque laborum ad labore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 903, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 903, - "key": "8pgc5dxwqxj7qw9muy0ntp1pbogdapvd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 904, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0903", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-01", - "last_sent_date": null, - "due_date": "2019-12-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.06", - "balance": "3.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 919, - "quantity": 3, - "cost": 3.02, - "product_key": "itaque", - "notes": "Et rerum accusamus unde tenetur sit et eum autem. Voluptatem qui est nostrum provident non deleniti. Harum quia et et atque magnam et est. Distinctio sit est itaque repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 904, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 904, - "key": "6afy2eq5b5xqhnynqsoiurm4d8e45nef", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 905, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0904", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-30", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.88", - "balance": "10.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 920, - "quantity": 8, - "cost": 4.61, - "product_key": "impedit", - "notes": "Labore voluptatem magni omnis eveniet magni quis. Ut sint facere dolores officiis porro. Ab amet sunt fugit velit est iste.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 905, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 905, - "key": "upn8ll1ndl90mocfn3c8ipoacfckj383", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 906, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0905", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-20", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.41", - "balance": "25.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 921, - "quantity": 7, - "cost": 8.63, - "product_key": "reiciendis", - "notes": "Consequuntur necessitatibus enim est itaque. Provident temporibus facilis enim nihil sed. Maiores unde illo quia consequatur sit. Quod et voluptatem est fuga est error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 906, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 906, - "key": "1tdad7kijlqfmdktzusb91c5enisq6zn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 907, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0906", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-18", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.07", - "balance": "1.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 922, - "quantity": 1, - "cost": 2.07, - "product_key": "eos", - "notes": "Ipsa inventore et cum odit iste dolorum odit. Laboriosam tempore minus ut voluptas voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 907, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 907, - "key": "0w6srow9pc5uxg14nhq0vqdswiczrayr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 908, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0907", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-26", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.20", - "balance": "19.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 923, - "quantity": 6, - "cost": 8.2, - "product_key": "voluptas", - "notes": "Voluptatibus pariatur ut quia minus non et et. Et sint aut tempora id vitae sit minima. Nihil doloribus commodi reprehenderit delectus temporibus sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 908, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 908, - "key": "vdolqfl0sogmbl5gnftalx3cku7tlfd2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 909, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0908", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2020-05-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "62.37", - "balance": "3.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 924, - "quantity": 9, - "cost": 6.93, - "product_key": "et", - "notes": "Aut distinctio qui et eum odit voluptatem deserunt quia. Sed vel unde quos et sunt veniam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 909, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 909, - "key": "lofyduvehxu7nlv7nj5z3e33obydrbga", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 910, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0909", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-01-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.65", - "balance": "0.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 925, - "quantity": 1, - "cost": 6.65, - "product_key": "possimus", - "notes": "Facilis earum qui et itaque aut. Est quis quis eos quam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 910, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 910, - "key": "li3jyjocrdpnjxfggfmp1xhnb9yud0px", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 911, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "0910", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.60", - "balance": "5.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 926, - "quantity": 4, - "cost": 7.65, - "product_key": "non", - "notes": "Eum modi placeat est quam accusantium ullam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 911, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "invoice_id": 911, - "key": "jyvoodnnnzkbncz1ozuw7m7o4himwqmm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1012, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1011", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.46", - "balance": "0.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1027, - "quantity": 2, - "cost": 6.23, - "product_key": "ad", - "notes": "Qui quibusdam sed et repudiandae sed. Esse impedit voluptates quas dolores. Ut assumenda soluta voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1012, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1012, - "key": "mcah3tzwefrqcpchg3kscqxfzcyxhkwb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1013, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1012", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-22", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "92.70", - "balance": "23.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1028, - "quantity": 10, - "cost": 9.27, - "product_key": "quo", - "notes": "Omnis nemo velit id optio blanditiis natus similique in. Reprehenderit ut et vero quia omnis sint. Iste expedita enim iure dolorum assumenda reiciendis doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1013, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1013, - "key": "7c70xfnoqnraodcjogbryga63l2mjslz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1014, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1013", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-02", - "last_sent_date": null, - "due_date": "2020-04-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.32", - "balance": "0.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1029, - "quantity": 2, - "cost": 6.16, - "product_key": "repellendus", - "notes": "Maiores voluptatum vitae ut suscipit sed. Aspernatur cum rerum temporibus sint. Voluptatem quod est culpa dolorem pariatur adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1014, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1014, - "key": "luoys6wpdp0hxj8rp93z5nyi10phhq0n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1015, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1014", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-10", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.74", - "balance": "27.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1030, - "quantity": 6, - "cost": 4.79, - "product_key": "expedita", - "notes": "Aut ullam odio fugiat maxime rerum est possimus necessitatibus. Quidem totam id libero illum itaque aut cumque. Deserunt tempora impedit voluptas omnis blanditiis ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1015, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1015, - "key": "ajroy0elt9ynynhhfv54focerh4s5lqi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1016, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1015", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2019-12-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.94", - "balance": "20.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1031, - "quantity": 9, - "cost": 2.66, - "product_key": "tempore", - "notes": "Aut et et consequatur nihil excepturi. Ea sed ipsam aut facilis quis unde dolorem adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1016, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1016, - "key": "71eekdpa7gfjv2wszduc8g59oc2e9vi0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1017, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1016", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.81", - "balance": "4.89", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1032, - "quantity": 9, - "cost": 1.09, - "product_key": "omnis", - "notes": "Eveniet quaerat voluptatibus ullam id ea minima voluptatem facere. Est minima aliquid consequatur ut eum est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1017, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1017, - "key": "iy8ki07is9rgmqjbm5z1masaqyw4cwyt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1018, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1017", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-04-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "69.37", - "balance": "3.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1033, - "quantity": 7, - "cost": 9.91, - "product_key": "similique", - "notes": "Quaerat expedita debitis sequi ullam modi. Ipsum sunt ab ducimus magni sed et et. Laboriosam voluptatum cumque magnam dolores et harum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1018, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1018, - "key": "tgoj9hqlt9cgkrxsm86thoczhttefcmu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1019, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1018", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-04-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", @@ -43921,4353 +5597,25 @@ "custom_value2": "0.00", "next_send_date": null, "amount": "2.95", - "balance": "1.04", - "partial": null, + "balance": "2.39", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 1034, + "id": 10361, "quantity": 1, "cost": 2.95, - "product_key": "eum", - "notes": "Sequi voluptatem ea facere minus vel. Sit amet doloribus sed odio. Ratione est repellat sit sunt temporibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1019, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1019, - "key": "xoexylbeixvcfdlvs7ypdl9ff7euzyrz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1020, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1019", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.33", - "balance": "8.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1035, - "quantity": 9, - "cost": 1.37, - "product_key": "ipsam", - "notes": "Sint labore repellendus sint. Ad sint est harum pariatur id libero dolores. Debitis repellat quis ea ab est et quisquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1020, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1020, - "key": "7baewxjmsx50tn4xd1pxcqmulxustbla", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1021, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1020", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-06-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.10", - "balance": "26.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1036, - "quantity": 10, - "cost": 5.01, - "product_key": "quidem", - "notes": "Laudantium voluptatem ducimus quisquam illo. Qui ea distinctio voluptatem quibusdam magni. Quaerat non omnis non. Libero voluptatibus quisquam voluptate et neque. Eveniet iste unde non voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1021, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1021, - "key": "ukkdppbr9ewpkzvf6wzfcqsdssdfmxvu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1022, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1021", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.65", - "balance": "1.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1037, - "quantity": 5, - "cost": 8.53, - "product_key": "accusantium", - "notes": "Pariatur atque dolor quae earum atque ut magni. Ipsum debitis qui quis accusantium repellendus a totam. Quasi deserunt dolor qui placeat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1022, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1022, - "key": "qveroi9nk0gaslfc4auw7jlipbhl19ux", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1023, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1022", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-08", - "last_sent_date": null, - "due_date": "2020-02-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.20", - "balance": "5.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1038, - "quantity": 5, - "cost": 8.44, - "product_key": "voluptatem", - "notes": "Id omnis itaque eum enim tempore. Minus nobis officiis hic. Ullam quas ut et rerum. Quos possimus ab recusandae modi eum reprehenderit. Amet non beatae iure quis ea quia. Cum velit asperiores culpa. Voluptatem quam dolor quisquam ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1023, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1023, - "key": "k5x0c1q7e4bd22myljksj8pdk7rz6rbo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1024, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1023", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.54", - "balance": "7.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1039, - "quantity": 6, - "cost": 2.59, - "product_key": "facere", - "notes": "Ut modi optio voluptatem eius et sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1024, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1024, - "key": "abrug5wzvzklunwjl4ny0akyl9gamcgo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1025, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1024", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-03", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.64", - "balance": "1.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1040, - "quantity": 1, - "cost": 3.64, - "product_key": "veniam", - "notes": "Similique quae maxime repudiandae nesciunt voluptatem odio. Molestiae saepe quo et quis veritatis aperiam quidem. Iste blanditiis quia voluptatum est tempore recusandae neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1025, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1025, - "key": "bjhi4j4v6v9kzxuskyclih7zm48tt3ua", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1026, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1025", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2020-03-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.53", - "balance": "2.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1041, - "quantity": 1, - "cost": 3.53, - "product_key": "quae", - "notes": "Asperiores dolorem aperiam voluptatibus nihil. Voluptatem rem numquam unde reiciendis culpa perspiciatis. Hic saepe et porro ut beatae et. Dicta modi et cupiditate et assumenda.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1026, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1026, - "key": "48ydmn6a2cqxvbmk22lm991ikskf5i68", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1027, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1026", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.82", - "balance": "1.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1042, - "quantity": 1, - "cost": 6.82, - "product_key": "voluptatibus", - "notes": "Quis necessitatibus reiciendis sit quia libero. Aut dolores et sed sit similique neque eum assumenda. Quis consectetur facilis nisi quia qui. Similique aut possimus quo voluptatibus officiis accusantium. Quisquam magnam inventore dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1027, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1027, - "key": "fayivanheemex4qrfu3voeymxqm4arto", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1028, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1027", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.03", - "balance": "16.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1043, - "quantity": 3, - "cost": 7.01, - "product_key": "fugiat", - "notes": "Et asperiores accusantium minus voluptas odit. Dolorem qui eum laboriosam laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1028, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1028, - "key": "gnxglgcxw6ax562zvfkcon9dz64chg5g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1029, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1028", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "92.90", - "balance": "13.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1044, - "quantity": 10, - "cost": 9.29, - "product_key": "error", - "notes": "Nulla unde fuga ullam et enim dicta iusto. Aspernatur veniam ut suscipit cumque. Assumenda officia est incidunt voluptas omnis accusamus beatae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1029, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1029, - "key": "rz6hk6kxorsp1xulteu5zxycw1bvemv6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1030, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1029", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-15", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.20", - "balance": "9.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1045, - "quantity": 8, - "cost": 2.15, - "product_key": "excepturi", - "notes": "Saepe fuga et non sit. Esse unde minus consequatur qui debitis temporibus fugiat. Assumenda sed ab ducimus eius esse.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1030, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1030, - "key": "tke8dkj4go1nltvlob7gnfe8cvf13bxp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1031, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1030", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.64", - "balance": "13.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1046, - "quantity": 6, - "cost": 4.44, - "product_key": "similique", - "notes": "Commodi in ipsam assumenda. Quos et rerum consectetur pariatur. Mollitia fuga et at a itaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1031, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1031, - "key": "javaw6glqjhkczj9wapkskhzvya9lmxt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1032, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1031", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-05", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.40", - "balance": "4.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1047, - "quantity": 6, - "cost": 6.9, - "product_key": "non", - "notes": "Necessitatibus optio qui numquam optio voluptas. Explicabo odit voluptates perferendis itaque. A mollitia impedit sunt in facilis nisi. Deserunt voluptatem perferendis dolores qui vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1032, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1032, - "key": "nzl5svmtfzwv7p6u8vdc9vowyfugijfc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1033, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1032", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-31", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.70", - "balance": "9.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1048, - "quantity": 5, - "cost": 1.94, - "product_key": "eligendi", - "notes": "Unde dignissimos voluptatem eveniet quis delectus. Occaecati eum veritatis exercitationem iure consequuntur sit. Earum aut vitae et sunt dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1033, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1033, - "key": "gcgya3yalgcg8hqk8b3y71akhxjymk1m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1034, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1033", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.50", - "balance": "46.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1049, - "quantity": 9, - "cost": 7.5, - "product_key": "voluptatem", - "notes": "Deserunt voluptas accusantium ut excepturi quos odit. Odit qui sunt consequatur ut sint sit rem. Iste dolorem enim nemo atque architecto sit id deleniti. Aspernatur aliquid mollitia officiis recusandae sapiente nemo excepturi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1034, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1034, - "key": "yj0ub1sswx2kbktrongofg5jog5wbgg4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1035, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1034", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.68", - "balance": "13.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1050, - "quantity": 4, - "cost": 7.42, - "product_key": "vitae", - "notes": "Explicabo ut est odio in eaque quos. Dolores numquam et quas possimus est est aut. Iure et dolorem asperiores deserunt ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1035, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1035, - "key": "mbsebrseb4hehmmcipyxc2oiqp17fkcx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1036, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1035", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.24", - "balance": "19.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1051, - "quantity": 7, - "cost": 3.32, - "product_key": "adipisci", - "notes": "Accusamus similique fugiat reiciendis atque laudantium et illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1036, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1036, - "key": "swd5wlntujrk6wgi2qgzgwqipxqcicnz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1037, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1036", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "93.00", - "balance": "18.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1052, - "quantity": 10, - "cost": 9.3, - "product_key": "suscipit", - "notes": "Voluptatem sed laudantium est provident accusantium fugiat iusto. Suscipit fuga earum illo ducimus. Ducimus nesciunt exercitationem sed quos vitae dolorem. Nihil eos enim et rerum nulla libero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1037, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1037, - "key": "hzlnhq7psgk4fuxomagusdzxbhzomjgc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1038, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1037", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.65", - "balance": "0.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1053, - "quantity": 1, - "cost": 2.65, - "product_key": "molestias", - "notes": "Doloribus facere illum maxime ut dolorem beatae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1038, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1038, - "key": "6id3yaefgt5goex2z0oacsh39zgqvxwe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1039, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1038", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-30", - "last_sent_date": null, - "due_date": "2020-03-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.43", - "balance": "10.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1054, - "quantity": 7, - "cost": 2.49, - "product_key": "dolor", - "notes": "Error aut a qui accusantium voluptatem iste officia. Doloremque vel rerum ut tempora modi. Ea distinctio sequi quisquam et velit nihil voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1039, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1039, - "key": "0qlvv5uwj08wlvyhxheakjtt1dbhazrb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1040, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1039", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2019-12-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.11", - "balance": "9.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1055, - "quantity": 7, - "cost": 1.73, - "product_key": "quas", - "notes": "Sed quia quam ut omnis repudiandae nulla id. Repellendus vel vel saepe rem laboriosam voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1040, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1040, - "key": "elwx7sdzikol49tpehdys9vbxfml0nfr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1041, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1040", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2020-03-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.28", - "balance": "2.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1056, - "quantity": 4, - "cost": 7.82, - "product_key": "sapiente", - "notes": "Ut in dignissimos quia consequatur molestiae. Non sunt nesciunt totam suscipit. Ea aut libero sit quo eligendi rerum. Ex adipisci enim quod molestiae ullam voluptas dolor. Itaque ut quia illum excepturi harum nihil non quo. Error ab est aut et accusamus ut alias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1041, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1041, - "key": "cliy05rjodegtgycxadwtn604hr0rcis", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1042, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1041", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-04-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.88", - "balance": "7.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1057, - "quantity": 3, - "cost": 8.96, - "product_key": "eveniet", - "notes": "Quaerat quaerat minima sit alias consequuntur velit. Expedita quibusdam sequi autem sed id. Perspiciatis ipsa quae aut velit voluptatibus ratione.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1042, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1042, - "key": "kh2m1fobdv1v8y347gts27cbrvbbvfeq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1043, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1042", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.56", - "balance": "10.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1058, - "quantity": 7, - "cost": 9.08, - "product_key": "ullam", - "notes": "Autem dolores omnis nesciunt autem facere. Reprehenderit perspiciatis rerum necessitatibus optio vel cupiditate quas. Consequuntur dolor dolorem nisi. Reiciendis quia assumenda ut et eos inventore labore velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1043, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1043, - "key": "0qn0rjfn232ueekknpcdfi0hqoegvlfq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1044, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1043", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.36", - "balance": "41.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1059, - "quantity": 6, - "cost": 7.06, - "product_key": "et", - "notes": "Optio quidem consequatur consequatur id aut. Non est consequatur repellat enim voluptatem porro at. Odit qui soluta non ipsum eaque aliquid omnis. Qui et nisi molestiae quasi vitae tempore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1044, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1044, - "key": "jjpfnznihxpsbag1l8eurb3xytxhwbz5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1045, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1044", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-26", - "last_sent_date": null, - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.24", - "balance": "36.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1060, - "quantity": 6, - "cost": 6.54, - "product_key": "sunt", - "notes": "Dolorem expedita repellendus aperiam accusantium. Aut qui pariatur exercitationem fuga. Reiciendis reiciendis est eveniet autem. Repellendus nostrum ipsum et eveniet molestiae velit. Accusantium sed dolores laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1045, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1045, - "key": "r6ztttts4xb2ouxomxbvvzljuscmcrck", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1046, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1045", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.70", - "balance": "3.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1061, - "quantity": 5, - "cost": 1.74, - "product_key": "alias", - "notes": "Omnis beatae dolor omnis eius beatae et voluptatem itaque. Ut repellat molestiae quo repudiandae. Iure ratione fugiat nihil voluptatum rem harum aut. Est autem doloremque veritatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1046, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1046, - "key": "kkkkty1vxe4rpoh7udccbielrlzdez47", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1047, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1046", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-16", - "last_sent_date": null, - "due_date": "2020-02-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.40", - "balance": "24.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1062, - "quantity": 5, - "cost": 8.48, - "product_key": "rerum", - "notes": "Sapiente neque quasi facere quo ipsam asperiores. Et libero totam incidunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1047, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1047, - "key": "ejaz3b4lp4xa6xbeo4lnqp0xbxu5aaza", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1048, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1047", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.20", - "balance": "3.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1063, - "quantity": 5, - "cost": 2.24, - "product_key": "voluptatum", - "notes": "Molestias necessitatibus non quis amet laborum. Ex perferendis expedita in voluptas molestiae laboriosam porro aut. Itaque ut dolorem laborum facere repellat eos. Voluptates perferendis expedita dolores voluptatem atque ab.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1048, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1048, - "key": "z8bpbxssfwlr7hqjbul2p0yjokw3g2sz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1049, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1048", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-15", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.46", - "balance": "4.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1064, - "quantity": 2, - "cost": 3.73, - "product_key": "qui", - "notes": "Id vitae sint dolorem rerum omnis et et. Sunt iste dignissimos minus est. Tempore reiciendis doloremque ab et. Dolor possimus enim est voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1049, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1049, - "key": "povckx1nch8hxw0si4opalqtjctcuoxp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1050, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1049", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.41", - "balance": "33.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1065, - "quantity": 9, - "cost": 5.49, - "product_key": "facere", - "notes": "Repudiandae magni ut sit modi labore est beatae. Sint sunt tempora et officia vitae aut. Totam quidem culpa quidem id voluptatum. Dolor qui voluptas harum voluptatum aliquid.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:57.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1050, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1050, - "key": "dxogv02qddkg0xg0e3fjd0eoba04nlsj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1051, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1050", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-01", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "69.58", - "balance": "22.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1066, - "quantity": 7, - "cost": 9.94, - "product_key": "numquam", - "notes": "Voluptatibus tempora id non ducimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1051, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1051, - "key": "1kfhfy8qudd3qhsb56hyndohq1ghdvxo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1052, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1051", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.25", - "balance": "6.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1067, - "quantity": 5, - "cost": 7.45, - "product_key": "quis", - "notes": "Dolorem quos ea maiores eius sapiente. Molestiae est rerum voluptatem ex consequuntur est tenetur. Velit dolor architecto voluptas aut aliquam ratione. Et blanditiis non voluptatum. Non ea temporibus itaque est nemo ex maiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1052, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1052, - "key": "hkkc7rxillux9y2xuftjwhevyq8ovowp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1053, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1052", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.92", - "balance": "0.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1068, - "quantity": 1, - "cost": 5.92, - "product_key": "nostrum", - "notes": "Voluptatem nihil ea optio qui explicabo ullam itaque. Sunt suscipit iusto fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1053, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1053, - "key": "ugi31jox6vbujs6hfvx280h21witbu61", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1054, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1053", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-04", - "last_sent_date": null, - "due_date": "2020-04-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.60", - "balance": "3.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1069, - "quantity": 10, - "cost": 4.86, - "product_key": "sunt", - "notes": "Est voluptatem ipsa quaerat dolores. Architecto suscipit suscipit in odio quas. Perspiciatis ut laboriosam at aut. Minima dolorem hic odit perspiciatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1054, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1054, - "key": "rwm74pqxvudrwmdlqhebzvhfih8rkkrd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1055, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1054", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-28", - "last_sent_date": null, - "due_date": "2020-06-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.88", - "balance": "10.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1070, - "quantity": 2, - "cost": 8.44, - "product_key": "nobis", - "notes": "Rem molestiae maxime veritatis dolore sapiente esse quidem. Placeat at vel velit quasi. Cupiditate et iusto laboriosam impedit beatae pariatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1055, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1055, - "key": "lxgcmz9sbmbxbxtzqcxax0laizet1gdt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1056, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1055", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-03", - "last_sent_date": null, - "due_date": "2020-01-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.52", - "balance": "8.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1071, - "quantity": 6, - "cost": 5.92, - "product_key": "saepe", - "notes": "Et quia ratione voluptatum nisi. Et ea voluptatum eius eveniet eaque recusandae ut. Molestiae rerum possimus dolores culpa ut at.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1056, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1056, - "key": "0bdvge5ry58ipehe646fmb8niggcdxcm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1057, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1056", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-03-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.28", - "balance": "30.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1072, - "quantity": 6, - "cost": 5.38, - "product_key": "quia", - "notes": "Nihil illum consequatur et amet labore sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1057, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1057, - "key": "ck6083ewkct4xbrsytt9bnglpc7gg2xd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1058, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1057", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.16", - "balance": "7.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1073, - "quantity": 2, - "cost": 4.08, - "product_key": "doloremque", - "notes": "Error ex hic est tempora.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1058, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1058, - "key": "svb41gfq9eadqevxfkfce48fjnbd9jcs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1059, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1058", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-04-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.96", - "balance": "25.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1074, - "quantity": 6, - "cost": 9.66, - "product_key": "odio", - "notes": "Consequatur facere quam debitis officiis et. Veritatis autem vel quo doloremque. Vel iure cumque magni nulla id dolor. Nulla nesciunt impedit aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1059, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1059, - "key": "o3xjtk30pqny17eud6sw4houvfrxxhdl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1060, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1059", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-03-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.00", - "balance": "10.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1075, - "quantity": 4, - "cost": 5.5, - "product_key": "vitae", - "notes": "Modi molestiae excepturi itaque nihil sit. Aliquam placeat pariatur quis dicta culpa quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1060, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1060, - "key": "egswldrdop5t2xgn1j0err8fdxtiiqq9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1061, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1060", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-25", - "last_sent_date": null, - "due_date": "2020-06-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "65.00", - "balance": "2.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1076, - "quantity": 10, - "cost": 6.5, - "product_key": "vel", - "notes": "Rem qui est debitis necessitatibus ut porro sit. Hic neque unde quibusdam corrupti. Sit et repellat consectetur. Pariatur commodi voluptas voluptate error dolor cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1061, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1061, - "key": "lp2ozajxhqd6zmpu2hjsqkfadizopve2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1062, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1061", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-22", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.45", - "balance": "23.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1077, - "quantity": 5, - "cost": 8.69, - "product_key": "quia", - "notes": "Aut magnam neque sapiente deleniti. Tempora dolores ducimus laboriosam natus est earum illo. Sapiente ea voluptates maxime assumenda. Omnis id quis odit incidunt. Sit enim eligendi sunt non dolor. Officiis est sunt et voluptatibus. Voluptate sunt architecto ducimus nisi eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1062, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1062, - "key": "lhbukjxdwnvrhmbgazakrifva7o6tul8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1063, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1062", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-22", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.15", - "balance": "7.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1078, - "quantity": 5, - "cost": 6.03, - "product_key": "sunt", - "notes": "Quam magni deleniti odit veniam et. Occaecati totam debitis reiciendis ut est minima. Dolor consequatur quidem maxime voluptas facilis quia. Harum impedit voluptatibus magni quis nihil qui at.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1063, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1063, - "key": "ou0qn55tx2ykmm42jv678hpkihrtxwpv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1064, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1063", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-26", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.71", - "balance": "3.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1079, - "quantity": 1, - "cost": 3.71, - "product_key": "eos", - "notes": "Est maiores assumenda iure dolore. Necessitatibus sed quaerat illum a. Ipsam eius quae iste et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1064, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1064, - "key": "6uip13pngvr0u6bso95rdqqagm6cox7w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1065, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1064", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-13", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.16", - "balance": "10.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1080, - "quantity": 8, - "cost": 2.77, - "product_key": "deleniti", - "notes": "Voluptatum et consequatur itaque qui aperiam illum hic. Laudantium magnam voluptates aut sunt. Qui fugit aut ut quam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1065, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1065, - "key": "d4vefs6cnhozbp3omfimnlbvihearsse", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1066, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1065", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-10", - "last_sent_date": null, - "due_date": "2020-04-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.50", - "balance": "1.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1081, - "quantity": 5, - "cost": 5.9, - "product_key": "amet", - "notes": "Ratione aspernatur perferendis distinctio non a praesentium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1066, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1066, - "key": "wes7gubevsnbw3fua0litntqej6qqr3x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1067, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1066", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "2020-03-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.79", - "balance": "18.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1082, - "quantity": 3, - "cost": 8.93, - "product_key": "ab", - "notes": "Maxime quo omnis blanditiis a. Sed provident enim temporibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1067, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1067, - "key": "e8efoswjkg03dqjobxhj5a79foo0kmaw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1068, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1067", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.02", - "balance": "43.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1083, - "quantity": 6, - "cost": 8.67, - "product_key": "et", - "notes": "Veritatis optio consequatur nesciunt eligendi quae tempore. Ea quia aliquid et asperiores et sed. Vel ut reiciendis nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1068, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1068, - "key": "bvhs14mwh0llin7r34iveue2jijaq0oh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1069, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1068", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2020-04-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.87", - "balance": "22.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1084, - "quantity": 9, - "cost": 3.43, - "product_key": "occaecati", - "notes": "Illum ab et in eveniet et rerum culpa. Unde voluptates iure libero ad rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1069, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1069, - "key": "vfadbfsmahjo7jeuu1g33atibkm0ojgo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1070, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1069", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "77.90", - "balance": "11.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1085, - "quantity": 10, - "cost": 7.79, - "product_key": "doloremque", - "notes": "Consequuntur et nostrum commodi facilis necessitatibus. Ipsa quia fugit accusantium rerum voluptates rerum soluta. Vel cum quis aliquid est a est explicabo. Culpa vero et distinctio est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1070, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1070, - "key": "vynkuc8scj1pxzwepcvox9crqwii0azy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1071, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1070", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.08", - "balance": "13.89", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1086, - "quantity": 2, - "cost": 8.54, - "product_key": "quasi", - "notes": "Facere facilis reprehenderit placeat debitis corrupti ipsam. Autem rem dicta ratione repellat maiores labore et libero. Dolorem recusandae autem aliquam asperiores et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:58.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1071, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1071, - "key": "zprjfo1iovqmds0xeajdqvo5pbrl6mdw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:58", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1072, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1071", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": null, - "due_date": "2020-04-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.90", - "balance": "26.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1087, - "quantity": 5, - "cost": 5.98, - "product_key": "ut", - "notes": "Aliquid eos cumque ipsa velit eligendi. Dolores iste officia velit quia rem soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1072, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1072, - "key": "yjqgfghigpxjzisilj5pdmnpr9jppilq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1073, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1072", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-06-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.80", - "balance": "1.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1088, - "quantity": 2, - "cost": 1.9, - "product_key": "laborum", - "notes": "Voluptatem esse id ea et. Necessitatibus et quia qui illum. Et sapiente sequi beatae quas quibusdam laudantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1073, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1073, - "key": "frpih3xtqzpww6wtahgvh1vwioyq9nad", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1074, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1073", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.82", - "balance": "4.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1089, - "quantity": 2, - "cost": 9.41, - "product_key": "voluptatum", - "notes": "Aspernatur nihil sint placeat optio. Ipsum consequatur ipsam alias ratione. Dolorem ut illum iure qui nobis rerum. Quo est voluptate voluptas enim culpa. Sunt quis soluta error repellendus eos molestiae quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1074, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1074, - "key": "jcx1cvk2vq1iywrimrdbfl7sscjeg7tj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1075, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1074", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-26", - "last_sent_date": null, - "due_date": "2020-03-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.60", - "balance": "23.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1090, - "quantity": 4, - "cost": 6.4, - "product_key": "architecto", - "notes": "Est debitis accusantium temporibus. Nostrum nobis est doloribus nihil aut. Accusamus est non quod corrupti maiores ducimus. In perferendis in nam reprehenderit non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1075, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1075, - "key": "m9bdj0v4bya4o9uenfbolctshaa62ule", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1076, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1075", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-05", - "last_sent_date": null, - "due_date": "2020-02-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "82.44", - "balance": "72.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1091, - "quantity": 9, - "cost": 9.16, "product_key": "cumque", - "notes": "Nemo quos aspernatur reiciendis harum. Et est id aut exercitationem voluptates autem. Eum maxime aut et sit. Consequuntur quidem itaque architecto voluptatem. Qui iusto ea et perspiciatis excepturi non dolor vero.", + "notes": "Excepturi quia minima quibusdam nesciunt. Sed labore consequatur reiciendis maiores et deleniti. Sit consectetur repellat nihil maiores nemo repellendus. Voluptas et eos aut. Ea dolore iure eos provident. Non provident officiis nemo aut. Iste natus placeat accusamus ad adipisci.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:59.000000", + "date": "2020-06-30 11:19:16.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -48276,21330 +5624,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1076, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1076, - "key": "tleiyquharmsgakubxnsjmd335liyqf0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1077, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1076", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.98", - "balance": "5.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1092, - "quantity": 2, - "cost": 3.99, - "product_key": "dolor", - "notes": "Voluptatem asperiores corrupti eius architecto qui facilis. Esse non voluptatum et veritatis et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1077, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1077, - "key": "0hj6wmgj59ldfy33nrqroga39jntz9f6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1078, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1077", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.92", - "balance": "9.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1093, - "quantity": 8, - "cost": 4.99, - "product_key": "impedit", - "notes": "Non at iste est eligendi officia. Explicabo non ut aut. Quia sit doloribus nobis nihil accusantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1078, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1078, - "key": "7lbsyayildjw8v3wyl7axqvr0hlsrm7o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1079, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1078", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-25", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.24", - "balance": "4.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1094, - "quantity": 6, - "cost": 3.54, - "product_key": "error", - "notes": "Provident qui veritatis inventore fugiat quo tenetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1079, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1079, - "key": "nkeudjryanyqr9hgvrybzciu2dmb19xo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1080, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1079", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-05", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.52", - "balance": "2.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1095, - "quantity": 4, - "cost": 2.38, - "product_key": "aut", - "notes": "Et nihil neque asperiores error non culpa reprehenderit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1080, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1080, - "key": "omqvjx6g170tgb98krr3aadaiq35pinf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1081, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1080", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.20", - "balance": "5.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1096, - "quantity": 10, - "cost": 1.12, - "product_key": "quas", - "notes": "Non doloremque sit ut. Pariatur illum expedita esse incidunt distinctio dolores. Maiores delectus corrupti enim ut occaecati earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1081, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1081, - "key": "3rp6qpxye1r2lfeys2rdxklefofovceh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1082, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1081", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-28", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.08", - "balance": "38.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1097, - "quantity": 7, - "cost": 9.44, - "product_key": "cupiditate", - "notes": "Perspiciatis reprehenderit aut nihil sit inventore cupiditate consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1082, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1082, - "key": "hpjjqzmkeh4y0ib2luhhte1vdzuaxhul", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1083, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1082", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2019-12-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.21", - "balance": "10.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1098, - "quantity": 3, - "cost": 8.07, - "product_key": "qui", - "notes": "Ut est quaerat sapiente possimus. Tempora molestiae sequi voluptas perspiciatis et quo alias. Corrupti est et hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1083, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1083, - "key": "phh51aac03pqd1iggaasg9jssire69ou", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1084, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1083", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.35", - "balance": "18.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1099, - "quantity": 5, - "cost": 4.47, - "product_key": "magni", - "notes": "Assumenda aspernatur velit quas excepturi et nostrum dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1084, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1084, - "key": "huoo3vtsvlwchrfdowy7eb3ltu6butej", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1085, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1084", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-12", - "last_sent_date": null, - "due_date": "2020-01-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.52", - "balance": "5.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1100, - "quantity": 4, - "cost": 3.88, - "product_key": "repellendus", - "notes": "Quas ab voluptate soluta dolorem suscipit et rem distinctio. Sed aut occaecati quis illo. Aut et cumque voluptatem ipsa architecto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1085, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1085, - "key": "l1mhyxznzmt5djc6hb7buxcshcq4ooun", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1086, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1085", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-03", - "last_sent_date": null, - "due_date": "2020-01-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.60", - "balance": "5.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1101, - "quantity": 6, - "cost": 1.1, - "product_key": "incidunt", - "notes": "Eveniet rerum quibusdam dolores quisquam qui. Fuga eligendi doloremque alias quis voluptatem. Sunt est perspiciatis facere et amet perspiciatis soluta similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1086, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1086, - "key": "n1mduul9enrawyyw6btxawjybfdhkzbq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1087, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1086", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "82.80", - "balance": "37.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1102, - "quantity": 10, - "cost": 8.28, - "product_key": "explicabo", - "notes": "Soluta quibusdam velit quod quo consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1087, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1087, - "key": "vvdduuyr6i1li0hzst4nvblizttv98pl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1088, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1087", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-28", - "last_sent_date": null, - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "69.84", - "balance": "55.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1103, - "quantity": 8, - "cost": 8.73, - "product_key": "sit", - "notes": "Qui necessitatibus vero voluptate odit veniam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1088, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1088, - "key": "twrj7gyijlygqhpgrftafkqhoocq9fap", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1089, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1088", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.16", - "balance": "6.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1104, - "quantity": 6, - "cost": 1.36, - "product_key": "eos", - "notes": "Aut sint nulla omnis aut ex beatae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1089, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1089, - "key": "eyp0cosemeivnsoksxg2rdtkthyeaqg3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1090, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1089", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.28", - "balance": "3.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1105, - "quantity": 4, - "cost": 9.32, - "product_key": "laborum", - "notes": "Dolorum beatae sed reiciendis aliquid aut earum. Et itaque et nihil molestiae illum. Deleniti dolorem necessitatibus odio officiis ea aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1090, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1090, - "key": "9o062wso7qaqenkyuh8zl8gtojwmceap", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1091, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1090", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-21", - "last_sent_date": null, - "due_date": "2019-12-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.15", - "balance": "19.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1106, - "quantity": 5, - "cost": 9.43, - "product_key": "eum", - "notes": "Quasi est odio iusto temporibus rerum consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:59.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1091, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1091, - "key": "4bt4grrwzmebzy3ndyas3yvjp9if8hp0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:59", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1092, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1091", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.96", - "balance": "14.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1107, - "quantity": 4, - "cost": 4.24, - "product_key": "eveniet", - "notes": "Sed et voluptatum commodi quia. Doloremque officia nobis odio odio enim. Ullam officia cum sed expedita dicta atque explicabo maiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1092, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1092, - "key": "aice72cciqnbox7darhhi4gdpuo5d71f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1093, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1092", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-15", - "last_sent_date": null, - "due_date": "2020-05-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.95", - "balance": "22.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1108, - "quantity": 5, - "cost": 8.19, - "product_key": "maxime", - "notes": "Vero et perferendis adipisci debitis in pariatur quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1093, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1093, - "key": "yrfcbwxa0lqnxlchmgv4v7fqhmmz73nh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1094, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1093", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-09", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.19", - "balance": "11.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1109, - "quantity": 9, - "cost": 1.91, - "product_key": "architecto", - "notes": "Animi dolorum aut impedit non placeat. Laudantium optio expedita nemo quia deserunt id. Cumque aspernatur itaque quo a et eum eligendi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1094, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1094, - "key": "leg1tl25rlvxjozuxe8tbhyjvpft1mo0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1095, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1094", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-14", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.40", - "balance": "8.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1110, - "quantity": 10, - "cost": 1.64, - "product_key": "omnis", - "notes": "Aut aut in sit magni facilis. Rem ab et quas similique velit sequi aperiam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1095, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1095, - "key": "sagbemhjgvvwfkaskxd1qcaktpgxcgsg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1096, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1095", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.31", - "balance": "8.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1111, - "quantity": 3, - "cost": 5.77, - "product_key": "nostrum", - "notes": "Veritatis qui nihil magni occaecati. Sed et ipsum nam accusantium quis. Quae hic quaerat eum odit et molestias. Voluptatem atque dicta omnis dolorem tenetur nostrum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1096, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1096, - "key": "zz6o7ebjylbqla14old1kepmkrr3yzt6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1097, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1096", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.37", - "balance": "12.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1112, - "quantity": 3, - "cost": 4.79, - "product_key": "ut", - "notes": "Magni magni porro sunt adipisci in. Distinctio ut aut omnis cum sed doloremque. Recusandae atque saepe ut rerum vero reiciendis velit corporis. Asperiores voluptatibus fuga nihil non qui occaecati ea. Et quae voluptas adipisci. Necessitatibus exercitationem et harum ab ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1097, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1097, - "key": "dolteecfxviglylncyiwjibff6ho5yr3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1098, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1097", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-26", - "last_sent_date": null, - "due_date": "2020-03-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.74", - "balance": "0.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1113, - "quantity": 2, - "cost": 8.87, - "product_key": "numquam", - "notes": "Itaque voluptatem quia hic in sapiente laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1098, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1098, - "key": "vi8dwkqft869bi9xytlyasxsptxugrvy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1099, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1098", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-16", - "last_sent_date": null, - "due_date": "2020-03-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "83.97", - "balance": "63.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1114, - "quantity": 9, - "cost": 9.33, - "product_key": "illo", - "notes": "Est soluta vero eius accusamus ratione accusantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1099, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1099, - "key": "elqtiylwqgmrcpy2mqsvozmbjupks4r3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1100, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1099", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.84", - "balance": "33.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1115, - "quantity": 9, - "cost": 5.76, - "product_key": "qui", - "notes": "Nemo esse quidem placeat veritatis alias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1100, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1100, - "key": "u4rq7j5bixaehjjnw3a82mmvrlbwvlhj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1101, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1100", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.36", - "balance": "2.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1116, - "quantity": 2, - "cost": 1.68, - "product_key": "sit", - "notes": "Soluta aliquam totam perspiciatis enim placeat. Laborum dolorum sed nisi voluptas corporis. Omnis aliquam quod fugit at minus dolores sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1101, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1101, - "key": "xgmtwvhswiubujbymhhkgeguidpvs6ju", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1102, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1101", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.33", - "balance": "28.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1117, - "quantity": 7, - "cost": 4.19, - "product_key": "quos", - "notes": "Culpa expedita quia deleniti laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1102, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1102, - "key": "0xkxmq3oveecgtwp922ydqbsftqulwmi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1103, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1102", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "77.60", - "balance": "56.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1118, - "quantity": 8, - "cost": 9.7, - "product_key": "voluptatem", - "notes": "Deleniti quod nisi sed harum ut nostrum. Esse accusantium molestiae ut mollitia quo. Quia omnis provident impedit recusandae commodi aut corrupti. A suscipit voluptatem dolorum sequi. Ut hic unde eos deserunt nobis doloremque voluptatem. Accusantium quia eius sit a quod sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1103, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1103, - "key": "li2pa9bpqgwfs3efxmqzkblbi0aekabf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1104, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1103", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-04-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.60", - "balance": "27.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1119, - "quantity": 8, - "cost": 4.7, - "product_key": "nisi", - "notes": "Assumenda aut dolorem eaque non. Beatae in dolore blanditiis quaerat eum enim dicta. Corrupti quia et rerum et perspiciatis qui delectus magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1104, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1104, - "key": "0sfyna6xi8nmgms1zbepyyycwghlcjts", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1105, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1104", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-27", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.17", - "balance": "13.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1120, - "quantity": 7, - "cost": 2.31, - "product_key": "exercitationem", - "notes": "Corporis doloremque modi enim autem sequi aut maxime earum. Soluta aliquam delectus quaerat delectus. Omnis modi nihil et esse eaque aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1105, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1105, - "key": "abdplqargkhujfj0utoxokdfkzpia0kd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1106, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1105", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2020-02-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.80", - "balance": "3.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1121, - "quantity": 2, - "cost": 7.9, - "product_key": "id", - "notes": "Aut quae aut sed non hic facere aut. Corrupti doloribus voluptates aspernatur nam autem reprehenderit qui incidunt. Enim et ipsa consequuntur iure reiciendis occaecati iure at. Eos minima dolor voluptas soluta tempora fugit aut. Libero ducimus odit perspiciatis et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1106, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1106, - "key": "rto6aeriosav1zlxifm6l9fsknaw70uj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1107, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1106", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-03", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.24", - "balance": "5.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1122, - "quantity": 4, - "cost": 2.81, - "product_key": "quas", - "notes": "Ut temporibus incidunt sed sint. Natus enim aut ad adipisci qui ex qui. Consequuntur dolores eum neque minus alias. Totam modi dolorem assumenda et deserunt unde culpa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1107, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1107, - "key": "ls1cbyvufgff0orfkfiqffgdemxnckki", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1108, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1107", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-08", - "last_sent_date": null, - "due_date": "2020-03-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.45", - "balance": "26.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1123, - "quantity": 5, - "cost": 5.89, - "product_key": "inventore", - "notes": "Earum et dolor voluptatem. Quidem eum illum ab. Cupiditate et in doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1108, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1108, - "key": "2gxgp6gw29t7kvh7xdhvlwnx68kpusvu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1109, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1108", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-13", - "last_sent_date": null, - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.96", - "balance": "7.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1124, - "quantity": 8, - "cost": 1.37, - "product_key": "quis", - "notes": "Commodi dolorem quasi dolorum facilis ratione eum et ipsam. Corporis perspiciatis sit rerum iusto et odio. Quibusdam illum amet deserunt doloremque. Maiores ex ipsum aut quas qui id iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1109, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1109, - "key": "ouikdu3qlzedt1urhmye8p05jpnkwiwn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1110, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1109", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.48", - "balance": "3.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1125, - "quantity": 6, - "cost": 4.08, - "product_key": "veritatis", - "notes": "A magni modi ea ex. Ut repellendus totam dignissimos eius sunt nesciunt ratione. Ut sit necessitatibus quia ducimus asperiores ut laudantium recusandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1110, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1110, - "key": "yyimxcno3ivhu5pfnguano2uagoujkvj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1111, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1110", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.20", - "balance": "13.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1126, - "quantity": 9, - "cost": 2.8, - "product_key": "molestiae", - "notes": "Quam expedita odio ut dicta architecto. Aperiam id consequatur qui quo facilis. Et est officia aliquam. Odit minima cupiditate adipisci iure est omnis mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:00.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1111, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 1111, - "key": "4qtkwbpzmjemjo0vgqcdnriwcrbnf8em", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:00", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1212, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1211", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.38", - "balance": "6.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1227, - "quantity": 9, - "cost": 1.82, - "product_key": "fuga", - "notes": "Sunt molestiae molestiae qui voluptas ad aliquam nemo. Nesciunt libero praesentium odio ab. Et magni laudantium est amet rerum. Quasi error aut consectetur voluptatem velit hic similique inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1212, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1212, - "key": "0zoan6tdocnwug6jyukntic6upewfrhz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1213, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1212", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-13", - "last_sent_date": null, - "due_date": "2020-03-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.95", - "balance": "35.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1228, - "quantity": 5, - "cost": 8.99, - "product_key": "doloremque", - "notes": "Temporibus tempore dolores voluptatem qui aut blanditiis. Sed qui aut impedit modi odit fuga. Ad ratione ut et accusamus amet. Corporis dicta est et et excepturi sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1213, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1213, - "key": "pjvdpeqpkmwl49xpbhfv5pxleiuobylb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1214, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1213", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.60", - "balance": "0.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1229, - "quantity": 4, - "cost": 3.15, - "product_key": "magni", - "notes": "Eveniet dolor laboriosam vero qui. Quod deleniti veniam autem dolores aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1214, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1214, - "key": "jt9cyie7lm00pk7cyk30y3socr2fz4xq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1215, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1214", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.95", - "balance": "21.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1230, - "quantity": 3, - "cost": 7.65, - "product_key": "distinctio", - "notes": "Quaerat dolore quis magni necessitatibus neque doloremque provident. Distinctio quibusdam hic voluptatum ut omnis voluptatem sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1215, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1215, - "key": "n6sr0l7fyxwemjpjomhistdunt4wnnpq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1216, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1215", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-16", - "last_sent_date": null, - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.00", - "balance": "4.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1231, - "quantity": 2, - "cost": 9.5, - "product_key": "laborum", - "notes": "Rerum optio possimus ea. Amet necessitatibus cumque fugit unde aut. Aut voluptate reprehenderit in eum ut quia explicabo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1216, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1216, - "key": "zptwawlxlgz2xiavmgpnvanmrgfohlin", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1217, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1216", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2020-03-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.89", - "balance": "29.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1232, - "quantity": 7, - "cost": 7.27, - "product_key": "iste", - "notes": "Repellendus repellendus architecto non corrupti vel dolore. Non rem sequi quia aut quidem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1217, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1217, - "key": "msujrdavb6d4xsi4gzfyjlr6lvdtvman", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1218, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1217", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.70", - "balance": "18.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1233, - "quantity": 3, - "cost": 8.9, - "product_key": "mollitia", - "notes": "Architecto nihil omnis animi repellat voluptatibus saepe voluptatibus. Est quia incidunt culpa quod sed delectus. Repellat sit pariatur adipisci voluptas modi. Fugit culpa reprehenderit et quae eveniet non ipsum. Et vel et suscipit dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1218, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1218, - "key": "a9ldtg7jjblda8nmr6re3uw4kriwmspq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1219, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1218", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.96", - "balance": "4.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1234, - "quantity": 2, - "cost": 2.48, - "product_key": "cum", - "notes": "Est est quam assumenda aut ut. Sunt a est voluptas ut. Ipsam repellendus veniam doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1219, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1219, - "key": "shbrrmj8xvhq7mwqc4ynoqkiozjut0wj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1220, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1219", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.36", - "balance": "8.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1235, - "quantity": 2, - "cost": 7.18, - "product_key": "aliquid", - "notes": "Eius asperiores provident dolorum et. Aut ab suscipit eaque perferendis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1220, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1220, - "key": "0b5kqyitsdvldxjfjmntv9cfz2sd8cka", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1221, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1220", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-06", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.60", - "balance": "18.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1236, - "quantity": 8, - "cost": 7.95, - "product_key": "doloribus", - "notes": "Libero assumenda amet suscipit rerum nostrum inventore. Et et necessitatibus sit ducimus est. Quae nemo mollitia doloribus reprehenderit blanditiis enim.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1221, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1221, - "key": "xihw6ewhnq8wkqmuhzithl8dgmtfcxam", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1222, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1221", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": null, - "due_date": "2020-05-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.10", - "balance": "7.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1237, - "quantity": 2, - "cost": 4.55, - "product_key": "iure", - "notes": "Laudantium laboriosam quaerat cupiditate magni. Quia omnis ratione nam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1222, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1222, - "key": "6vuxwl9pzterim28dnsb3hbvr53jvt4w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1223, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1222", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-29", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.18", - "balance": "2.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1238, - "quantity": 2, - "cost": 2.59, - "product_key": "possimus", - "notes": "Culpa alias sint dolorum numquam. Rerum minus ratione animi quo et. Possimus dicta sint vel quis soluta eius. Ut sint aut omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1223, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1223, - "key": "kb5delfsvttlzdkqcss2ncf1wq5vueqq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1224, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1223", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-27", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.55", - "balance": "13.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1239, - "quantity": 5, - "cost": 3.71, - "product_key": "dolor", - "notes": "Ad debitis hic suscipit unde architecto itaque accusamus. Vel voluptates officiis maxime quis. Deserunt debitis corrupti ad quos omnis nesciunt. Et architecto distinctio voluptatem. Pariatur est totam repudiandae. Ab libero unde dolore accusantium ut odit nihil rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1224, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1224, - "key": "egpmbaxdej3cmgjfaooh2wykehjxevwh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1225, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1224", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.98", - "balance": "2.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1240, - "quantity": 6, - "cost": 4.83, - "product_key": "porro", - "notes": "Quo sit aliquid quis harum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1225, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1225, - "key": "tlnxq2mtkoetx7plzkzikajvtvyakvod", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1226, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1225", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.31", - "balance": "2.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1241, - "quantity": 1, - "cost": 5.31, - "product_key": "unde", - "notes": "Ipsa odit architecto omnis maxime optio natus. Fuga enim nulla sed pariatur est sit nisi. Et culpa et blanditiis voluptas porro.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1226, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1226, - "key": "uwfroq3dtatrufyn61so8wbop7tpwqyr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1227, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1226", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2020-04-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.04", - "balance": "3.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1242, - "quantity": 4, - "cost": 1.01, - "product_key": "quod", - "notes": "Est et et in omnis voluptatem. Quo mollitia sunt facere nam qui. Vero corrupti voluptatem neque quo quisquam veritatis quia. Velit consectetur beatae ut magni inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1227, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1227, - "key": "4lerixe11aaiqdqvtwgorqjzoeagbgpb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1228, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1227", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "89.91", - "balance": "47.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1243, - "quantity": 9, - "cost": 9.99, - "product_key": "voluptates", - "notes": "Aut a qui et magni est architecto sapiente. Molestiae voluptas in velit aut consequatur pariatur velit itaque. Est reprehenderit recusandae aut consequatur temporibus quis. Voluptas id praesentium nostrum veritatis magnam ipsam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1228, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1228, - "key": "qj9qgmxhbx4lqm6ekmpuo3oy1xdbmyrl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1229, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1228", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.47", - "balance": "49.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1244, - "quantity": 9, - "cost": 5.83, - "product_key": "nostrum", - "notes": "Quia similique asperiores qui. Et modi odio adipisci autem sit ab fuga. Saepe ut sint quis nihil velit aliquid ad. Doloremque fugit voluptatem autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1229, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1229, - "key": "6cmum9wgtxy18xvj4kzevbp7bhvzsqjy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1230, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1229", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.80", - "balance": "26.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1245, - "quantity": 4, - "cost": 6.95, - "product_key": "fuga", - "notes": "Veritatis assumenda nulla voluptate aut. Excepturi laboriosam ratione voluptatem earum rerum magnam. Nulla dignissimos unde et doloribus exercitationem voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1230, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1230, - "key": "vefp85ngvhlzh5nmbwosti1edrhzbtzp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1231, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1230", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.59", - "balance": "11.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1246, - "quantity": 3, - "cost": 5.53, - "product_key": "mollitia", - "notes": "Aut ut architecto et non enim. Ut accusantium magnam autem et eaque qui vel. Quisquam rerum hic possimus nam praesentium quas. Nemo qui eos labore aliquam sit eaque. Aut distinctio enim eligendi deserunt. Voluptate voluptatibus ut officiis et ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1231, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1231, - "key": "mjr7hubwqu8b8nsh7aawdscyfqgeb2d1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1232, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1231", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-18", - "last_sent_date": null, - "due_date": "2020-05-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.52", - "balance": "14.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1247, - "quantity": 6, - "cost": 9.92, - "product_key": "architecto", - "notes": "Qui dolorem unde qui cumque eveniet. Autem eos quisquam autem aut omnis delectus eius. Recusandae adipisci explicabo sed a.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1232, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1232, - "key": "wchhsiy8q9wauqnmqxusi7rkmhu7cmb2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1233, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1232", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.19", - "balance": "6.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1248, - "quantity": 3, - "cost": 2.73, - "product_key": "sequi", - "notes": "Minus saepe voluptatum omnis ut. Harum aut non quia eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1233, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1233, - "key": "g6xmd04wewanrr2bczhkvdpj5muho9lf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1234, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1233", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.39", - "balance": "21.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1249, - "quantity": 3, - "cost": 9.13, - "product_key": "neque", - "notes": "Eligendi deserunt dolor et quae sint eos nam veniam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1234, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1234, - "key": "w5l6xwpweooy7yoghusuijrzii3aac3h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1235, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1234", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.50", - "balance": "24.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1250, - "quantity": 10, - "cost": 5.45, - "product_key": "eligendi", - "notes": "Dolores explicabo ducimus inventore dignissimos qui illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1235, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1235, - "key": "g2xic0fppu5spm5ekcw0hedfiazol6y9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1236, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1235", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.54", - "balance": "8.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1251, - "quantity": 7, - "cost": 3.22, - "product_key": "voluptatem", - "notes": "Facilis quisquam eaque praesentium dolor recusandae. Et et sequi laudantium quibusdam. Omnis modi quo similique. Quia qui eius qui dolore labore temporibus hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1236, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1236, - "key": "w6lboutcomyrbmz1fmvachmte22spgz6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1237, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1236", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.80", - "balance": "28.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1252, - "quantity": 5, - "cost": 5.96, - "product_key": "voluptates", - "notes": "Quia non quasi est et. Saepe expedita unde et veritatis perferendis placeat. Quia harum est enim sapiente qui voluptates dignissimos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1237, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1237, - "key": "lcm8wtfisfepnrhgyguiht3ioi9qzeip", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1238, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1237", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.88", - "balance": "10.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1253, - "quantity": 8, - "cost": 5.36, - "product_key": "temporibus", - "notes": "Sed quo dolor occaecati sed commodi explicabo. Quis sapiente qui officia aut reiciendis molestias id. Vel dolores nam est incidunt autem earum molestias. Fugit consequatur magnam et rerum nostrum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1238, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1238, - "key": "fsakt5n2geupk0m101jfag3mwaxpthcl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1239, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1238", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-13", - "last_sent_date": null, - "due_date": "2020-06-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.59", - "balance": "20.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1254, - "quantity": 9, - "cost": 3.51, - "product_key": "dolorem", - "notes": "In laborum ad reprehenderit officia saepe totam nam. Dolor nemo et accusamus velit laboriosam. Assumenda quae sunt deleniti ut corrupti est est et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1239, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1239, - "key": "9srfzdobyy1jrtv6qd5tqwqyyxvkl8ob", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1240, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1239", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": null, - "due_date": "2020-05-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.24", - "balance": "6.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1255, - "quantity": 4, - "cost": 4.06, - "product_key": "ipsum", - "notes": "Veritatis accusamus neque praesentium dolores dolores unde. Nobis qui veniam vitae aut in qui. Ea omnis rerum temporibus dignissimos. Aperiam atque cumque et dolor aliquid accusamus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1240, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1240, - "key": "btptdlrxfmosltvfcax4jf8ovombpovu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1241, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1240", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2019-12-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.20", - "balance": "0.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1256, - "quantity": 7, - "cost": 1.6, - "product_key": "voluptatum", - "notes": "Est sed et quasi voluptates placeat quia dicta. Vitae omnis vel corporis est qui dicta. Ab autem aut tempora consequatur aut quod.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1241, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1241, - "key": "bernco6sey1us6wz2fwieaabocdxxpjj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1242, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1241", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-07", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.16", - "balance": "0.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1257, - "quantity": 8, - "cost": 8.02, - "product_key": "facilis", - "notes": "Similique ut explicabo qui quia. Ducimus perferendis natus repellendus. Repellat vero fugiat veniam vel consequatur aut. Ut est dolore consequatur dolorem voluptatem et corrupti. Soluta et perferendis suscipit nisi quo a quae. Assumenda vero eum est quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1242, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1242, - "key": "7xbgses26h1y561iuauy3didlw4qoclw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1243, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1242", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.06", - "balance": "0.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1258, - "quantity": 2, - "cost": 2.53, - "product_key": "cupiditate", - "notes": "Fuga optio error beatae pariatur eum repudiandae accusantium hic. Omnis recusandae praesentium qui sed id. Placeat consequatur quia corrupti illum aut est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1243, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1243, - "key": "rcg04yucbof1us4skemwi9kz4gbf4nxt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1244, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1243", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-04-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.84", - "balance": "22.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1259, - "quantity": 4, - "cost": 6.46, - "product_key": "tenetur", - "notes": "Neque consectetur et reiciendis repellat. Aut quod laborum voluptas deleniti molestias rem. Voluptates sint adipisci ut architecto cupiditate ipsum. Repellat impedit voluptas sint sit expedita quasi eos cupiditate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1244, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1244, - "key": "zsbgaqgfkc6z6asg5zxba5iwhyt6ueri", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1245, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1244", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-11", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.68", - "balance": "1.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1260, - "quantity": 1, - "cost": 2.68, - "product_key": "laboriosam", - "notes": "Expedita architecto natus doloribus sit. Atque libero optio sit et ut sed. Nemo et accusantium repellat eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1245, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1245, - "key": "profll7uqsbc0tw2emym5vhvgwb5hqmo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1246, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1245", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-31", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.24", - "balance": "5.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1261, - "quantity": 6, - "cost": 1.54, - "product_key": "sunt", - "notes": "Omnis provident nihil porro eligendi debitis delectus et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1246, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1246, - "key": "lipmjdngazlnw5cwjjnehxft1ufn8miw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1247, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1246", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.95", - "balance": "11.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1262, - "quantity": 5, - "cost": 9.99, - "product_key": "officiis", - "notes": "Quidem rerum asperiores quod et sed et eum. Tempora eum sint nihil non qui qui quas. Inventore amet placeat quaerat officiis sequi repellendus assumenda.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1247, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1247, - "key": "f7njqbld9vdb8r6koz7ql1kytyqgc6xd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1248, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1247", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-05", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.84", - "balance": "4.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1263, - "quantity": 1, - "cost": 9.84, - "product_key": "minima", - "notes": "Enim libero ut cum nam maiores. Tempora delectus molestiae voluptatem repellat. Voluptates cupiditate aut veniam aut accusamus incidunt soluta consequatur. Quam necessitatibus laborum et ratione ut ipsa ullam. Provident qui laboriosam ut ut blanditiis placeat. Qui eum deleniti et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1248, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1248, - "key": "9xox0cjuamxghcyz9ilw5dskvawexemu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1249, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1248", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.54", - "balance": "7.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1264, - "quantity": 2, - "cost": 7.77, - "product_key": "modi", - "notes": "Saepe ea assumenda aut. Cupiditate corrupti voluptatem velit accusantium. Sint et illum itaque rerum libero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:04.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1249, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1249, - "key": "rhl8uededszzzmqwxtxeuiywnhwumxxu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:04", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1250, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1249", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-16", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.58", - "balance": "10.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1265, - "quantity": 3, - "cost": 9.86, - "product_key": "consequatur", - "notes": "Laborum consequatur quibusdam quis. Eligendi est atque recusandae veniam iusto omnis magnam ad. Ut et eaque est vero nihil. Qui dolores optio repudiandae nemo exercitationem placeat explicabo architecto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1250, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1250, - "key": "yltd0apexqtme8gdi8oh4tgtsbg3qkqh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1251, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1250", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.20", - "balance": "1.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1266, - "quantity": 5, - "cost": 1.64, - "product_key": "quia", - "notes": "Atque ducimus ut possimus voluptates sit. Rerum corrupti qui ipsa sint minima cum fugiat soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1251, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1251, - "key": "ci0dqiv2sojosi1cnwb6dlt7k0lw5rcj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1252, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1251", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-01", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.78", - "balance": "53.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1267, - "quantity": 9, - "cost": 7.42, - "product_key": "quam", - "notes": "Et incidunt unde et laboriosam et eius eum. Debitis ut recusandae nisi ut suscipit. A velit quis ea tempore mollitia quasi eum maiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1252, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1252, - "key": "qsyv9d7wschqqd9adtxbi8s681yppwxp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1253, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1252", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-13", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.96", - "balance": "9.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1268, - "quantity": 4, - "cost": 5.24, - "product_key": "laboriosam", - "notes": "Laudantium quibusdam eaque hic voluptatem vitae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1253, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1253, - "key": "eggd9lfskv3qpc8jql3asjygkidr9uu5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1254, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1253", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "62.72", - "balance": "40.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1269, - "quantity": 7, - "cost": 8.96, - "product_key": "animi", - "notes": "At omnis perspiciatis omnis vel. Facilis magnam voluptas velit odit et at. Temporibus consequatur culpa enim earum molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1254, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1254, - "key": "q2mpybeyutdmn7qzmx6foscd5j6x6ssy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1255, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1254", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.25", - "balance": "4.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1270, - "quantity": 5, - "cost": 6.45, - "product_key": "ut", - "notes": "Et et amet dicta non illo fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1255, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1255, - "key": "65tz4pmxgxb3ti4wcwoxriyc8zfvhg0t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1256, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1255", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.70", - "balance": "24.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1271, - "quantity": 5, - "cost": 5.74, - "product_key": "temporibus", - "notes": "Eveniet molestiae veniam ratione est. Quis quos aut molestiae qui asperiores qui est. Ut tempore fugit eum quibusdam labore aut. Pariatur voluptas et aliquam perspiciatis eveniet nesciunt quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1256, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1256, - "key": "2sd9s1olfzkyvzslgpt3ah9rzcog81f4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1257, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1256", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.38", - "balance": "3.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1272, - "quantity": 6, - "cost": 1.23, - "product_key": "sunt", - "notes": "Culpa est sed molestiae. Provident nemo rerum voluptatem incidunt. Nihil nulla ea vel delectus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1257, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1257, - "key": "8vworivckrvcxsc0g1es1wsfd4iepb8g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1258, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1257", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.76", - "balance": "17.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1273, - "quantity": 7, - "cost": 9.68, - "product_key": "rerum", - "notes": "Praesentium provident nam vitae quasi in eligendi repudiandae. Veritatis et et quo fugit magni laboriosam praesentium. Nulla ad nesciunt repudiandae voluptatum facere qui odit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1258, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1258, - "key": "eisxeeus4p5syv9g84tkpoxx51fuftma", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1259, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1258", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.78", - "balance": "41.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1274, - "quantity": 7, - "cost": 8.54, - "product_key": "ex", - "notes": "Molestias dolor nobis maxime. Dolor qui qui illo qui tempora eligendi a. Minima tempore exercitationem molestiae et sit temporibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1259, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1259, - "key": "i1dycywnn3dpetfxrwhboqv2pddknmvh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1260, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1259", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.16", - "balance": "31.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1275, - "quantity": 8, - "cost": 8.77, - "product_key": "repudiandae", - "notes": "Non est et culpa. Ut voluptates quam minus iure eveniet. Voluptatem itaque natus dolorem id dolores consequatur labore. Repellat libero maiores quas eaque ratione quisquam. Eius reprehenderit consequatur porro voluptates commodi deserunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1260, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1260, - "key": "dl6v3rohl5atxuholux34jzdj7xtvrlu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1261, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1260", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.00", - "balance": "2.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1276, - "quantity": 4, - "cost": 1.25, - "product_key": "provident", - "notes": "Magnam sint enim doloremque doloribus natus. Ut in cupiditate sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1261, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1261, - "key": "y8qgh84rwlj2xpyuf5ujhxbsatls197o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1262, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1261", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-11", - "last_sent_date": null, - "due_date": "2020-02-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "99.20", - "balance": "4.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1277, - "quantity": 10, - "cost": 9.92, - "product_key": "ipsa", - "notes": "Quo est sed delectus cum alias et. Rem sit sapiente iste qui. Quas dolores magnam dolorem eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1262, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1262, - "key": "bh24xkxe09j2mko6hrmfybsmlglugd1f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1263, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1262", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.35", - "balance": "18.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1278, - "quantity": 5, - "cost": 4.67, - "product_key": "commodi", - "notes": "Et consequatur iusto distinctio dolorem odit quia aut. Ullam dolor natus aut quis. Porro eaque neque provident. Sed repellendus odit ut eaque dolore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1263, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1263, - "key": "xwkj0oc8odttb5sczzzgevh8zec6ei8y", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1264, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1263", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-15", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.37", - "balance": "1.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1279, - "quantity": 1, - "cost": 7.37, - "product_key": "id", - "notes": "Et iure modi debitis fugiat. Debitis sit minima aut reiciendis exercitationem vero. Corporis facere omnis ipsa ipsum omnis qui dolorem maiores. Autem sint recusandae dicta corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1264, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1264, - "key": "c8nssgief4rcdwqhjjwc1pz7uj28shw9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1265, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1264", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.36", - "balance": "5.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1280, - "quantity": 4, - "cost": 1.59, - "product_key": "nemo", - "notes": "Voluptas dolores sunt sit praesentium dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1265, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1265, - "key": "agpdkedn4ejswu9vymfylcxakbxth2hh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1266, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1265", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.97", - "balance": "4.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1281, - "quantity": 3, - "cost": 3.99, - "product_key": "aut", - "notes": "Rem molestiae necessitatibus facilis suscipit voluptatem dolorem. Quidem qui asperiores voluptatem tempora et. Quasi qui quas ex minus nemo eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1266, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1266, - "key": "zwoca84360wrcnynai44bbsbmjkczrni", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1267, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1266", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.30", - "balance": "43.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1282, - "quantity": 10, - "cost": 5.23, - "product_key": "et", - "notes": "Atque ratione incidunt veniam. In dolores sit nostrum fugit et corrupti laborum eaque. Aliquam sit doloremque possimus consequuntur quia at sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1267, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1267, - "key": "bqkxnkmiagj4wyag2psalk5eb8vmtd4q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1268, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1267", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2020-01-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "69.57", - "balance": "64.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1283, - "quantity": 9, - "cost": 7.73, - "product_key": "nobis", - "notes": "Nemo voluptatem quis dolorem eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1268, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1268, - "key": "aheecu0a8czu6ni9alxggma15yddgetl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1269, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1268", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2020-02-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.94", - "balance": "3.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1284, - "quantity": 1, - "cost": 6.94, - "product_key": "officiis", - "notes": "Et ut tempore optio ipsam rerum assumenda molestias soluta. Eligendi et eligendi aut ut debitis vel. Sapiente ea sed quam distinctio odio fugit autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:05.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1269, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1269, - "key": "kd8fggb22jrm4aqty7u234dq19qzlxv0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1270, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1269", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "62.20", - "balance": "53.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1285, - "quantity": 10, - "cost": 6.22, - "product_key": "ut", - "notes": "Modi facere autem omnis aut et eos dolorem. Repellendus laborum iure facere. Magnam dolorem aperiam fugiat beatae ut tempore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1270, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1270, - "key": "etoogi4ymmtsqliphuktapdk78nghlga", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1271, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1270", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-12", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.36", - "balance": "42.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1286, - "quantity": 8, - "cost": 7.92, - "product_key": "culpa", - "notes": "Et rerum incidunt provident mollitia illum minus voluptate. Ex odio sequi ipsam beatae. Est quod ex ut pariatur quis eum. Reiciendis facilis nostrum et natus sed tempore commodi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1271, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1271, - "key": "x7934cioktqqksf4kwsic88hyg7yuqlj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1272, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1271", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-02-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.65", - "balance": "14.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1287, - "quantity": 9, - "cost": 6.85, - "product_key": "quis", - "notes": "Omnis beatae et eum nemo minima ullam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1272, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1272, - "key": "8sfumwnqjxplrx7pzn8yugo8idu8jswl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1273, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1272", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-10", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.64", - "balance": "27.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1288, - "quantity": 7, - "cost": 5.52, - "product_key": "sequi", - "notes": "Dolore qui nam vel doloremque ipsam eos. Sunt aut eum molestiae similique et tempora. Voluptatibus occaecati qui consectetur quis quasi vitae magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1273, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1273, - "key": "wgfteuntv8gs8cmxlhdky67sntd40jue", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1274, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1273", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.60", - "balance": "20.89", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1289, - "quantity": 9, - "cost": 2.4, - "product_key": "nesciunt", - "notes": "Quisquam quis eaque voluptas saepe.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1274, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1274, - "key": "8n9qnwgmca4g1mj8fdp6qlwueaakc8xm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1275, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1274", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "85.60", - "balance": "20.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1290, - "quantity": 10, - "cost": 8.56, - "product_key": "est", - "notes": "Ut illum corporis et repellat impedit eos. Et quis molestiae perspiciatis illo quo atque. Quo autem doloremque est consequatur. Totam sunt officiis nostrum minus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1275, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1275, - "key": "09ami207ud7w5yj0bnmajqcanvcb5euw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1276, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1275", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2020-02-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.76", - "balance": "43.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1291, - "quantity": 6, - "cost": 7.96, - "product_key": "maxime", - "notes": "Laborum quaerat voluptas repellat quidem dolor ea. Ea sequi sunt dolores magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1276, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1276, - "key": "sdtvegxgf5t6nipaitrhauvdufmk3xas", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1277, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1276", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-28", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.16", - "balance": "6.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1292, - "quantity": 4, - "cost": 1.79, - "product_key": "tempore", - "notes": "Corporis perferendis iste et amet facilis aliquam. Omnis possimus non quae. Sint qui nihil atque facere numquam odit. Dignissimos odit aut temporibus harum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1277, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1277, - "key": "hdm2enrqbsmtblbt6ve9xjk4ftp6pxsl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1278, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1277", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-25", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.94", - "balance": "12.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1293, - "quantity": 3, - "cost": 4.98, - "product_key": "optio", - "notes": "Doloremque perspiciatis quos assumenda cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1278, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1278, - "key": "ygccgihzdbjxvttjmtgdauoxqwsgcph9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1279, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1278", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-28", - "last_sent_date": null, - "due_date": "2020-06-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.29", - "balance": "17.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1294, - "quantity": 3, - "cost": 7.43, - "product_key": "tempora", - "notes": "Dolor magni hic porro. Nihil dicta quis rem quos sit minima ab. Blanditiis eos accusantium ex iste.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1279, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1279, - "key": "irfwk2bonbnkcvnrfbxgvn2ykbfrowga", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1280, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1279", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.06", - "balance": "0.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1295, - "quantity": 3, - "cost": 4.02, - "product_key": "non", - "notes": "Aliquam nemo mollitia voluptas iure. Eos harum rerum alias quibusdam quod adipisci. Qui saepe deleniti earum quod ea non non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1280, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1280, - "key": "lu9st4tsxixkzqce7av2kxuyioo1ddag", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1281, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1280", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-03-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.26", - "balance": "0.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1296, - "quantity": 6, - "cost": 3.21, - "product_key": "illo", - "notes": "Aut molestias sit dicta. Aut reiciendis asperiores autem iure aspernatur. Ut rem repellendus et nobis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1281, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1281, - "key": "71uyt3e7qrbuxsimnlw1upqw3prb3d0g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1282, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1281", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2020-04-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.57", - "balance": "2.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1297, - "quantity": 1, - "cost": 2.57, - "product_key": "et", - "notes": "Tenetur qui est quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1282, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1282, - "key": "oatqqgziu9yxw2ylhfqhjxtyvyvhai5g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1283, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1282", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2019-12-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.08", - "balance": "16.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1298, - "quantity": 4, - "cost": 9.02, - "product_key": "aut", - "notes": "Ut eos dolore ea ut iste repellendus. Voluptatum repellendus similique doloremque eius necessitatibus harum dolore. Magni consequatur nihil harum aut vel autem aut. Enim soluta non alias aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1283, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1283, - "key": "zcfbufkvxskylnb8bhxzzgdxrmw0yj6d", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1284, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1283", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-10", - "last_sent_date": null, - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.10", - "balance": "9.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1299, - "quantity": 6, - "cost": 2.85, - "product_key": "dolor", - "notes": "Voluptate magnam ipsam quis eum non accusantium modi alias. Velit nulla vero sed ut omnis sint placeat. Voluptatum iusto maxime aut neque aut inventore officiis alias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1284, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1284, - "key": "emiptazhq3qlf3fv26kscosso85qi9ti", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1285, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1284", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2020-06-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.94", - "balance": "4.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1300, - "quantity": 2, - "cost": 6.97, - "product_key": "non", - "notes": "Dicta ipsum officia rem dolorem excepturi. Quo at ipsa molestias ut unde earum. Et amet tempora ad. Soluta est maxime nemo omnis voluptate facere ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1285, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1285, - "key": "wxvthovq8oylszxtyypykwyuw8cehfr4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1286, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1285", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.88", - "balance": "26.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1301, - "quantity": 7, - "cost": 6.84, - "product_key": "dolores", - "notes": "Qui beatae ab veritatis. Ad rerum debitis pariatur sit necessitatibus quod exercitationem ut. Officia odio fugit non dicta ipsa eos. Ipsa qui velit provident eligendi aut. Consequatur et qui velit earum et quas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1286, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1286, - "key": "ktlkuvztfwcvorovjiqpml1rzggjqayu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1287, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1286", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.20", - "balance": "7.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1302, - "quantity": 8, - "cost": 2.4, - "product_key": "sit", - "notes": "Qui id iste dicta quis. Quo repudiandae voluptas et non. Saepe similique sint aut sed saepe dolorum pariatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1287, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1287, - "key": "x4pbwjmeqc2k8rrqheb7egxbojxhmzgn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1288, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1287", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-05", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.15", - "balance": "5.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1303, - "quantity": 5, - "cost": 2.03, - "product_key": "qui", - "notes": "Architecto et alias quos aut culpa excepturi. Velit nulla aperiam ipsa natus. Iusto ut et assumenda sequi. Quia non tempora reprehenderit nihil velit eveniet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1288, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1288, - "key": "8g9jz3icy7ppkhnt3hjxzog04g867ry8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1289, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1288", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.95", - "balance": "8.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1304, - "quantity": 5, - "cost": 2.79, - "product_key": "et", - "notes": "Ut rerum ut consectetur eum rerum id voluptate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:06.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1289, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1289, - "key": "amjpxfjnbms3lnhfgxrdss0ta27x9mu6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:06", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1290, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1289", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.48", - "balance": "9.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1305, - "quantity": 2, - "cost": 5.74, - "product_key": "sunt", - "notes": "Ut a quibusdam sed omnis voluptatibus id dolores. Corrupti minus cupiditate exercitationem ad. Optio maiores corrupti consectetur ut rerum. Voluptatem dignissimos sit dolores voluptatum consequatur asperiores corrupti. Est repellat et non qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1290, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1290, - "key": "tpxs1ysorxtk2zzgon0s8mufa7smpii4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1291, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1290", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.50", - "balance": "17.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1306, - "quantity": 10, - "cost": 2.75, - "product_key": "ducimus", - "notes": "Molestiae in facere ipsa a aut dolorem quis. Aut ut a omnis vitae molestias aliquam velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1291, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1291, - "key": "dqlrozvaosot4lkxckoog6enmz2dzpev", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1292, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1291", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-26", - "last_sent_date": null, - "due_date": "2020-04-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.23", - "balance": "6.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1307, - "quantity": 7, - "cost": 6.89, - "product_key": "ipsa", - "notes": "Ea accusamus ullam eos id nihil minima quis voluptas. Omnis voluptas a non atque ut eos. Cum repudiandae qui temporibus incidunt sint harum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1292, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1292, - "key": "yaznxzybn6hz7x2rtwpnxdjszjbj30vq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1293, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1292", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.55", - "balance": "3.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1308, - "quantity": 5, - "cost": 5.51, - "product_key": "consequatur", - "notes": "Esse assumenda porro adipisci sed. Quae eos illum libero sed quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1293, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1293, - "key": "gqhhgfouvd31rev9jkkyonujwdrqkqwr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1294, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1293", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2020-01-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.12", - "balance": "0.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1309, - "quantity": 6, - "cost": 1.02, - "product_key": "ut", - "notes": "Qui corporis molestias dolor occaecati rem. Occaecati commodi tenetur cum qui. Omnis cumque dolor soluta nostrum. Aut consequatur inventore inventore doloremque possimus quia molestiae. Ad sed consequatur cum libero nisi totam expedita aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1294, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1294, - "key": "q1faimqi2hkjyqo6cxegig3n3zudoodg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1295, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1294", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-05-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.40", - "balance": "1.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1310, - "quantity": 1, - "cost": 3.4, - "product_key": "assumenda", - "notes": "Temporibus et fuga tempore et et a earum. Ut ex laudantium unde placeat voluptatem. Impedit libero aliquid qui magni cum in. Aut quis blanditiis unde eligendi qui sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1295, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1295, - "key": "bttrjkaajv1vftlkokleefsudw7gxgfp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1296, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1295", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-03-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.71", - "balance": "6.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1311, - "quantity": 3, - "cost": 6.57, - "product_key": "velit", - "notes": "Eum molestiae illo sit quia perspiciatis reiciendis cupiditate. Animi et ea commodi natus minus sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1296, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1296, - "key": "nvsu8iwv2hztpzronlnrb5w09vi2rwob", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1297, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1296", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-31", - "last_sent_date": null, - "due_date": "2019-12-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.05", - "balance": "24.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1312, - "quantity": 5, - "cost": 5.61, - "product_key": "est", - "notes": "Quibusdam quis provident aut pariatur autem nobis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1297, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1297, - "key": "jru6wmg34ywmrnvhhqiinder0jmoy6ad", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1298, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1297", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.95", - "balance": "30.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1313, - "quantity": 5, - "cost": 6.59, - "product_key": "velit", - "notes": "Libero autem quo quia enim laudantium iste. Voluptatem qui officia harum qui. Voluptates vel doloremque aut. Fugiat ea dolorem numquam eos exercitationem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1298, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1298, - "key": "tjkghzp49axczb70878zxdtkeqkdnnhr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1299, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1298", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-26", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.64", - "balance": "19.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1314, - "quantity": 4, - "cost": 8.41, - "product_key": "tempora", - "notes": "Impedit et voluptatem aperiam ullam et odit. Quo quas ut in quasi id quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1299, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1299, - "key": "w8sanilawplebjshhxm3wma2jy9g69fm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1300, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1299", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-25", - "last_sent_date": null, - "due_date": "2020-06-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.80", - "balance": "9.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1315, - "quantity": 10, - "cost": 1.98, - "product_key": "dolore", - "notes": "Molestiae id mollitia vitae quo tempora laboriosam. Iste sed et quas voluptates et sunt. Inventore sed quasi quis ad voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1300, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1300, - "key": "6b8vy2uns0cyfsysori1rkmirtxanzsb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1301, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1300", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2020-02-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.40", - "balance": "13.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1316, - "quantity": 10, - "cost": 2.54, - "product_key": "mollitia", - "notes": "In nihil voluptatem perspiciatis. Sint nihil dolorum deserunt quis corporis consequatur. Provident fuga dignissimos laborum quae tenetur facere.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1301, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1301, - "key": "wtqef71pqkypabiitbojuktujzwx7goh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1302, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1301", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.50", - "balance": "48.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1317, - "quantity": 10, - "cost": 5.05, - "product_key": "voluptates", - "notes": "Optio consequatur aut qui a. Explicabo alias ipsam et magnam qui in rerum a. Sed ratione aliquid sed voluptatem ipsa ex est. Harum est qui molestiae optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1302, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1302, - "key": "gmkdgfrruttrzsql5ininooiilyjkvwh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1303, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1302", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.12", - "balance": "24.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1318, - "quantity": 3, - "cost": 9.04, - "product_key": "et", - "notes": "Ab consectetur et provident a. Quae placeat quos et voluptatem atque nulla atque. Rerum et minus autem quasi iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1303, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1303, - "key": "cmwweoko8extdyzalrlmdjmpurm0hmvq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1304, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1303", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-20", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.38", - "balance": "1.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1319, - "quantity": 1, - "cost": 3.38, - "product_key": "sunt", - "notes": "Ipsam deserunt corporis ullam molestiae rerum velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1304, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1304, - "key": "leran1wckj9sp6mps9bfh3rt5sm2n5l2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1305, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1304", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "82.50", - "balance": "27.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1320, - "quantity": 10, - "cost": 8.25, - "product_key": "debitis", - "notes": "Voluptas deserunt id recusandae eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1305, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1305, - "key": "0biwtmyhs6gt8a9memkubsseplzobxtp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1306, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1305", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2020-03-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.90", - "balance": "16.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1321, - "quantity": 2, - "cost": 9.45, - "product_key": "minus", - "notes": "Quo nobis voluptas a soluta et omnis quos. Nemo doloremque ea vitae fugit. Reiciendis accusantium et accusamus ex magni veritatis molestiae aut. Minima voluptatem velit assumenda quia. Voluptatem aut et et nostrum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1306, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1306, - "key": "zfz5hapypfqtiprmncutjpej0uqcnrsk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1307, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1306", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.72", - "balance": "46.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1322, - "quantity": 8, - "cost": 6.09, - "product_key": "deleniti", - "notes": "Quo veritatis fugiat maxime tempore recusandae. Qui est sit iure reiciendis et. Culpa qui aut provident minima. Illo vero sed exercitationem aut eos quod ipsam nemo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1307, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1307, - "key": "kzw4ucqium7t9rupjexpvm1keo1odmvu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1308, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1307", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2020-02-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.64", - "balance": "10.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1323, - "quantity": 2, - "cost": 5.32, - "product_key": "voluptatum", - "notes": "Saepe labore minima tempora at unde. Nobis consequatur ut eligendi dolores illo sit consequatur. Et autem porro sit qui debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1308, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1308, - "key": "9vpqkryg22iceucpcifaxesucyzaghuj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1309, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1308", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.26", - "balance": "0.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1324, - "quantity": 1, - "cost": 4.26, - "product_key": "ut", - "notes": "Voluptatem eius dignissimos et pariatur est. Iure id consequatur aut est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:07.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1309, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1309, - "key": "s2tuzkywa3hr2daiovbaehnzece4s1xb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:07", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1310, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1309", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.48", - "balance": "1.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1325, - "quantity": 4, - "cost": 1.62, - "product_key": "vel", - "notes": "Dolore autem qui vel placeat iure quo. Perferendis vero harum est dolore vitae perferendis. Mollitia suscipit consequuntur porro ipsum excepturi quisquam. Numquam rerum dolor dolores iusto velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1310, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1310, - "key": "lqmyhoicsgukpx5rghvhdiwqboxdnbgh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1311, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1310", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2019-12-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.64", - "balance": "7.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1326, - "quantity": 4, - "cost": 6.66, - "product_key": "modi", - "notes": "Dolor vero in omnis nam ratione qui. Omnis natus repellendus omnis eos. Exercitationem laudantium earum non est et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1311, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "invoice_id": 1311, - "key": "xiafstejza6ivzjmpknpowsjdxpyafbn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1412, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1411", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-04", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.42", - "balance": "0.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1427, - "quantity": 2, - "cost": 2.71, - "product_key": "eos", - "notes": "Itaque repellendus ut dolorem reprehenderit. Illum pariatur qui maxime incidunt saepe nulla. Vero dolorum quo sit omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1412, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1412, - "key": "c9qnso2yglgxrmmq8xgitplwx1psng9b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1413, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1412", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-12", - "last_sent_date": null, - "due_date": "2019-12-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.97", - "balance": "6.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1428, - "quantity": 1, - "cost": 7.97, - "product_key": "doloribus", - "notes": "Voluptatum ad consequuntur in debitis. Praesentium qui nihil laudantium architecto. Ratione ad voluptatem provident enim tempora reprehenderit exercitationem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1413, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1413, - "key": "f1hxpmhh6ezwvm0lgjmrh0tc9wpbllzl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1414, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1413", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-06-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.20", - "balance": "0.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1429, - "quantity": 3, - "cost": 2.4, - "product_key": "quo", - "notes": "Rerum eaque praesentium rerum non ipsa quia. Mollitia nam accusamus non voluptates minima.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1414, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1414, - "key": "hjaeogiwftw7b680qcnnsjx7vkodxwnc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1415, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1414", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.76", - "balance": "17.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1430, - "quantity": 4, - "cost": 5.69, - "product_key": "quam", - "notes": "Voluptatum voluptatem sit doloremque ut iste voluptate nam. Sunt veritatis ipsa dolorum sequi eos numquam ut officiis. Ad error inventore sed quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1415, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1415, - "key": "bj24wr7hgafuuntfm6khl3gs3rylts0u", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1416, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1415", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-21", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.80", - "balance": "15.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1431, - "quantity": 10, - "cost": 2.08, - "product_key": "sed", - "notes": "Consectetur aut aliquam iste aliquid qui sunt. Ab voluptas consequuntur autem ullam cupiditate id veniam. Rem impedit voluptatem sapiente sunt ipsum repellat repellendus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1416, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1416, - "key": "qjphisoicxmhbyyovt2lhvvecz3x5dmq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1417, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1416", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": null, - "due_date": "2020-02-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "76.88", - "balance": "71.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1432, - "quantity": 8, - "cost": 9.61, - "product_key": "suscipit", - "notes": "Consequuntur alias et facilis soluta. Itaque qui eum beatae ut et. Labore nihil sapiente id explicabo quam et. Et laborum aut autem dolore quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1417, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1417, - "key": "0o7wllzekynwmu8fhgsfyveqeqgj4ffa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1418, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1417", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-28", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.43", - "balance": "16.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1433, - "quantity": 9, - "cost": 3.27, - "product_key": "aut", - "notes": "Autem dicta rerum quae ad labore. Ullam iusto quisquam ullam omnis qui aut impedit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1418, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1418, - "key": "74p5v01irbrdoawmhp8mt5zk7iw0vpws", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1419, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1418", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.56", - "balance": "3.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1434, - "quantity": 3, - "cost": 5.52, - "product_key": "non", - "notes": "Illo repellendus repellendus esse consequatur magnam odit. Velit sapiente dicta enim consequatur quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1419, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1419, - "key": "ot38xfhww5oo0lrlfohdawkxyynvywrm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1420, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1419", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.90", - "balance": "3.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1435, - "quantity": 3, - "cost": 1.3, - "product_key": "voluptatum", - "notes": "Nam dolor id et ea rerum maiores. Quisquam ex molestiae expedita. Magni corporis id in aperiam eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1420, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1420, - "key": "kqwziqfxvl4annfdmezz3xmrxdnvfkib", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1421, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1420", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-30", - "last_sent_date": null, - "due_date": "2019-12-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.70", - "balance": "12.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1436, - "quantity": 2, - "cost": 8.35, - "product_key": "eaque", - "notes": "Quia nemo excepturi ipsum pariatur. Libero similique labore quaerat sit corrupti. Est fuga quis eum minus modi ducimus ipsam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1421, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1421, - "key": "rhrwf8cns9zz3fftcelsyqsuybkuvgpj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1422, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1421", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.85", - "balance": "7.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1437, - "quantity": 3, - "cost": 6.95, - "product_key": "ullam", - "notes": "Veniam quia sed sapiente qui harum illo iure vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1422, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1422, - "key": "cuai2wnx9o6tri0ap0unrga5fnq3ou5r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1423, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1422", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2019-12-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.15", - "balance": "8.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1438, - "quantity": 9, - "cost": 3.35, - "product_key": "vel", - "notes": "Ut ab velit maiores sapiente. Velit harum eos repellat dignissimos est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1423, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1423, - "key": "lailo9xq77mt0muzlnelk1x5pvxhj6yw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1424, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1423", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.68", - "balance": "8.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1439, - "quantity": 4, - "cost": 2.92, - "product_key": "itaque", - "notes": "Magnam est voluptatem dolore consequuntur. Ad aut dolores qui. Assumenda vitae eius quia. Repellat velit id ut optio consequatur blanditiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1424, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1424, - "key": "27fedfl1pc9vuptcn5raykccj2bnvyfn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1425, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1424", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-28", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.65", - "balance": "17.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1440, - "quantity": 7, - "cost": 3.95, - "product_key": "unde", - "notes": "Animi corporis sunt ut atque. Qui voluptatem deleniti et modi. Ab tempore harum praesentium laborum labore vero eum. Numquam ipsam beatae cum non numquam distinctio labore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1425, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1425, - "key": "ruzud2pm93pvryk2fca0wfeidpotdv6q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1426, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1425", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.10", - "balance": "3.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1441, - "quantity": 2, - "cost": 3.05, - "product_key": "aut", - "notes": "Quidem rem occaecati facilis aut eos accusantium magni ducimus. Dignissimos laboriosam deleniti tempore et alias sed sequi. Molestiae sit ut officiis expedita fugiat quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1426, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1426, - "key": "yngpxcthulrdfeqrniprmsy70oktgcg1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1427, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1426", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.46", - "balance": "16.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1442, - "quantity": 3, - "cost": 6.82, - "product_key": "laborum", - "notes": "Rerum pariatur quia expedita nihil eveniet accusamus molestias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1427, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1427, - "key": "tzaggl5elh2w9ua7a5u17htzcpifkjnf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1428, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1427", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.24", - "balance": "6.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1443, - "quantity": 9, - "cost": 4.36, - "product_key": "ut", - "notes": "Iste illo ab consequatur. Aut culpa dolor consectetur dolore consequatur neque. Molestiae in necessitatibus culpa provident incidunt quam beatae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1428, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1428, - "key": "cibidfb0nnprfp382stcnbpkm4ot8v20", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1429, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1428", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-02-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.40", - "balance": "3.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1444, - "quantity": 2, - "cost": 6.2, - "product_key": "autem", - "notes": "Ullam nam maxime et necessitatibus officia. Molestiae eos corrupti placeat reiciendis. Quis quod sit molestiae rerum dolorem distinctio. Sed quia repellat iure et aliquid est commodi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1429, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1429, - "key": "qpiqvjqaoqlyalw3wvjqntvy0zmvih7c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1430, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1429", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.76", - "balance": "3.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1445, - "quantity": 3, - "cost": 7.92, - "product_key": "explicabo", - "notes": "Culpa dolorem omnis eum rerum distinctio beatae molestiae. Quidem ipsa consequatur non iure voluptas. Dolore qui omnis unde sed corporis autem optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1430, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1430, - "key": "cdbutwnkylcyihjslxwpcx7znpwoewry", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1431, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1430", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.96", - "balance": "45.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1446, - "quantity": 8, - "cost": 6.62, - "product_key": "enim", - "notes": "Sed sit eos deserunt voluptatibus. Ipsa rerum reprehenderit ea dolor qui qui et. Libero ut aut aut autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1431, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1431, - "key": "yg4fj8zywaawmzqvmcvskv4nuv1lsn6r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1432, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1431", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-07", - "last_sent_date": null, - "due_date": "2020-03-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.32", - "balance": "43.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1447, - "quantity": 7, - "cost": 9.76, - "product_key": "corrupti", - "notes": "Dolores maxime unde quis sit quia. Facere esse sed provident quos nisi. Non odit natus nemo quam vel atque. Facere aliquam soluta animi ut eveniet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1432, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1432, - "key": "ijrcuwozrrewzh2u66xgcis5icoizl7t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1433, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1432", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-15", - "last_sent_date": null, - "due_date": "2020-03-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.61", - "balance": "28.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1448, - "quantity": 9, - "cost": 3.29, - "product_key": "eos", - "notes": "Dolores facilis magnam fuga ullam. Incidunt ea eveniet numquam vel sed adipisci occaecati.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1433, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1433, - "key": "hgaka3fnrkorulgditvf9wi4ommbz1w5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1434, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1433", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2020-06-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.95", - "balance": "7.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1449, - "quantity": 5, - "cost": 1.59, - "product_key": "et", - "notes": "Nemo quae maxime exercitationem iure fugiat soluta. Aut ut id repellendus enim. Quia facere ut sed eum. Explicabo quam consequatur recusandae quia omnis doloribus illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1434, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1434, - "key": "hehoyvnkyafsjcqofgsa8ur1xx6rdcwv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1435, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1434", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2020-01-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.97", - "balance": "23.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1450, - "quantity": 7, - "cost": 3.71, - "product_key": "explicabo", - "notes": "Quia nulla labore quos nulla magnam molestiae et. Provident aliquam commodi nihil tempore expedita. Maiores amet sit non. Et quis soluta excepturi nulla alias dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1435, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1435, - "key": "1itrbkdwwzu34iqr4wtmfahhvir8cmcl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1436, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1435", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.50", - "balance": "5.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1451, - "quantity": 1, - "cost": 7.5, - "product_key": "hic", - "notes": "Omnis voluptates libero tenetur magni iusto tempore. Fugiat omnis eligendi dolor aut. Itaque enim et quia aliquid. Eos alias enim magni aut et iste.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1436, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1436, - "key": "dbmgzotmbzoxr573rgetdum0iumbwkiu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1437, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1436", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-29", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.27", - "balance": "4.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1452, - "quantity": 1, - "cost": 8.27, - "product_key": "officia", - "notes": "Autem sit ut magnam ducimus eum excepturi commodi. Facilis voluptate aut voluptas veniam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1437, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1437, - "key": "n3uwx1ojptxuas2shy0lo84soht6dxr6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1438, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1437", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-22", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.40", - "balance": "33.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1453, - "quantity": 5, - "cost": 9.48, - "product_key": "odio", - "notes": "Sit quibusdam id aliquam ad voluptates impedit a rerum. Aliquid esse itaque optio doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1438, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1438, - "key": "lwx46tak6nkdqwl7tir1oldfrmfwtghs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1439, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1438", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-03-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.48", - "balance": "13.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1454, - "quantity": 4, - "cost": 9.12, - "product_key": "magnam", - "notes": "Harum minima laudantium modi quos earum. Architecto sunt sunt ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1439, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1439, - "key": "n12up3gmzhuwrxqjl5h7cdoapv7tgufv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1440, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1439", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2020-04-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.32", - "balance": "5.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1455, - "quantity": 4, - "cost": 1.33, - "product_key": "est", - "notes": "Vel autem ut facere ut quas. Non fugit quam illum error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1440, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1440, - "key": "6j2rehzg8je0lkncldkmzmvarjyqbhse", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1441, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1440", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-02-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.45", - "balance": "17.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1456, - "quantity": 9, - "cost": 4.05, - "product_key": "consequatur", - "notes": "Quisquam porro aliquid iste incidunt. Optio natus eveniet esse est. Sit labore placeat voluptas temporibus magni aut. Totam eum veniam facilis tempore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1441, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1441, - "key": "gwek7a5mgrshhs80e6pgbsnh1ghk7zlx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1442, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1441", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "56.61", - "balance": "34.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1457, - "quantity": 9, - "cost": 6.29, - "product_key": "doloribus", - "notes": "Inventore dolorum consequatur tempora porro. Officiis sunt hic eos quidem sit. Vitae provident dolorum et laborum qui quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1442, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1442, - "key": "fzppudt8hzgdh4n9lggmavpr2rnx6cpw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1443, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1442", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-28", - "last_sent_date": null, - "due_date": "2020-03-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "58.50", - "balance": "24.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1458, - "quantity": 9, - "cost": 6.5, - "product_key": "totam", - "notes": "Ea quas dolore quia aliquam eveniet vel. Porro aut qui voluptas enim. Ut voluptatum consectetur facilis occaecati quis est aliquid. Unde occaecati eos esse qui et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1443, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1443, - "key": "nwadhmrb1kypvnmz8v7dclfe7mjkxslh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1444, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1443", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.00", - "balance": "12.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1459, - "quantity": 6, - "cost": 8.5, - "product_key": "sequi", - "notes": "Quasi ut qui aspernatur itaque. Est ut et velit vel maiores. Suscipit enim autem aut eos sit eius itaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1444, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1444, - "key": "zff3thzvrt3txbh66tl7koxe3hytg92p", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1445, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1444", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.60", - "balance": "4.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1460, - "quantity": 4, - "cost": 8.65, - "product_key": "numquam", - "notes": "Veritatis ipsa nemo sit qui pariatur. Voluptate totam officiis ab quam. Voluptatibus iusto magnam doloremque fugit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1445, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1445, - "key": "zvx11qst0umukggwhfv39lopro9hnbuq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1446, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1445", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-03-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.80", - "balance": "10.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1461, - "quantity": 10, - "cost": 1.28, - "product_key": "voluptatem", - "notes": "Eos adipisci delectus sint beatae. Fugiat tempora asperiores optio quo. Vel harum dolor voluptas rerum omnis error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1446, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1446, - "key": "h0k70olubsgljvjbayhnq5cvo37zv0wi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1447, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1446", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.92", - "balance": "0.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1462, - "quantity": 3, - "cost": 3.64, - "product_key": "ad", - "notes": "Aut iure ab explicabo. Sit dicta ut illo. Nostrum vero eos tenetur totam molestiae nemo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1447, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1447, - "key": "shfow41rbgny4za7telq7exxsoge1pta", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1448, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1447", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "76.90", - "balance": "44.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1463, - "quantity": 10, - "cost": 7.69, - "product_key": "corporis", - "notes": "Reiciendis et qui harum necessitatibus. Molestiae sit et et rerum. Error non molestias blanditiis quaerat assumenda.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1448, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1448, - "key": "rh6w2uvur3ezmagbp1vyjhudjwp4fv7q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1449, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1448", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.16", - "balance": "15.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1464, - "quantity": 4, - "cost": 8.79, - "product_key": "voluptates", - "notes": "Fugit tenetur molestiae ut dolores hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1449, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1449, - "key": "ilyix1ahnogqgjnx7bormkatj3v03ib7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1450, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1449", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.45", - "balance": "9.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1465, - "quantity": 7, - "cost": 2.35, - "product_key": "culpa", - "notes": "Sequi expedita ex est delectus at rem aut. Repudiandae aut magni enim deserunt nemo. Rem officia ad eum quis provident. Porro quidem deleniti a hic ut nisi. Cumque voluptatum sit culpa nihil temporibus. Laudantium amet vel in quo occaecati. Ut quod quod quia recusandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1450, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1450, - "key": "2z4m3rspwrxxyu1emicw6zqhsvb0krmm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1451, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1450", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-05-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.09", - "balance": "25.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1466, - "quantity": 9, - "cost": 3.01, - "product_key": "eos", - "notes": "Minima natus deleniti qui et dolor. Repellat doloribus et suscipit necessitatibus accusantium repellat ea a. Officiis et minima et amet possimus officia. Repellendus est quos rerum a qui porro praesentium. Non et mollitia consequatur quam harum repellat eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1451, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1451, - "key": "1uagneovff0616x9fftazew1qqa7q3kc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1452, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1451", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.55", - "balance": "24.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1467, - "quantity": 3, - "cost": 9.85, - "product_key": "quidem", - "notes": "Minima quis culpa praesentium neque porro et qui. Mollitia quaerat ipsa saepe ullam natus. Dolorem sequi et sed cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1452, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1452, - "key": "ggkqcp04ps0wgv11jajinq7bvluovwpw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1453, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1452", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.76", - "balance": "2.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1468, - "quantity": 3, - "cost": 6.92, - "product_key": "quidem", - "notes": "Cumque cum non qui ipsa tempora. Fugit ea et facere et. Veritatis aperiam quidem sed illo temporibus corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1453, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1453, - "key": "bktzcuh1scwgeer1q9ctt10aqafegcok", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1454, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1453", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.20", - "balance": "1.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1469, - "quantity": 2, - "cost": 2.1, - "product_key": "aut", - "notes": "Placeat quis accusamus nemo. Ea doloribus officiis autem iure sed ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1454, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1454, - "key": "afu693nlyg00pvgjwypam49tkaxqu8zn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1455, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1454", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2020-04-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.81", - "balance": "5.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1470, - "quantity": 9, - "cost": 5.09, - "product_key": "ut", - "notes": "Rerum laborum alias quia ratione. Sapiente tenetur omnis unde. Animi ut iste expedita voluptatem iste vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1455, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1455, - "key": "qxyairxuelwp6znbwqriuhv3mcbecimw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1456, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1455", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.66", - "balance": "2.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1471, - "quantity": 3, - "cost": 2.22, - "product_key": "perferendis", - "notes": "Consequuntur et dolorem amet id. Et quis esse sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1456, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1456, - "key": "8uo9w1tbfidsyt3yvthkuwkorrqtezg6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1457, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1456", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.58", - "balance": "4.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1472, - "quantity": 2, - "cost": 6.79, - "product_key": "magnam", - "notes": "Et ipsam laboriosam aut odio enim. Temporibus sapiente voluptas dolores magnam eligendi. Aperiam dolorum eius nostrum. Et architecto architecto et fugiat sed. Sed recusandae maiores unde rerum aut non. Autem laborum eveniet aut dolorum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1457, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1457, - "key": "piy6trtvtkrh5mohc2jktodebhnjiphu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1458, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1457", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-09", - "last_sent_date": null, - "due_date": "2020-01-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "62.40", - "balance": "28.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1473, - "quantity": 8, - "cost": 7.8, - "product_key": "reiciendis", - "notes": "Nulla asperiores corporis ut et aperiam sequi doloremque. Praesentium quod atque ad atque deserunt et aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1458, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1458, - "key": "pb3i05xygsfwlfhcxysgyffjeyppuzka", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1459, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1458", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-12", - "last_sent_date": null, - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.88", - "balance": "11.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1474, - "quantity": 7, - "cost": 1.84, - "product_key": "dolores", - "notes": "Quia numquam sed esse. Occaecati optio dolor neque fugit et nemo dolorem. Et et qui non facere.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1459, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1459, - "key": "aisivmmwndcpqa5anquue6zrqe5g8xz5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1460, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1459", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.40", - "balance": "20.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1475, - "quantity": 8, - "cost": 4.3, - "product_key": "qui", - "notes": "Dolores molestiae vel voluptas cupiditate est ipsa sed. Corrupti odio quod voluptatibus quae enim asperiores. Illo atque ut veritatis nulla deserunt voluptas deleniti aut. Autem dicta sint excepturi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1460, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1460, - "key": "n4riwx6qhxpjgxzt6ezldnmquezjjk8b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1461, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1460", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-02-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.68", - "balance": "4.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1476, - "quantity": 4, - "cost": 5.17, - "product_key": "dolores", - "notes": "Provident eos hic ex eos et ab qui. Culpa repellendus id reiciendis. Sed qui et non consequatur nihil modi id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1461, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1461, - "key": "zgww36drtrf3qvxleywfqud0ydpjqhu4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1462, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1461", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-18", - "last_sent_date": null, - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.68", - "balance": "3.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1477, - "quantity": 1, - "cost": 3.68, - "product_key": "corporis", - "notes": "Nam qui omnis beatae voluptates aliquam eos consequatur velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1462, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1462, - "key": "4klcsxviktpr9l19rmylncvlum3bndj9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1463, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1462", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-20", - "last_sent_date": null, - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.65", - "balance": "0.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1478, - "quantity": 5, - "cost": 6.53, - "product_key": "incidunt", - "notes": "Voluptatem ut voluptatem cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1463, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1463, - "key": "bsrycvjwaiygyfo2y59bkbh7mam9upc5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1464, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1463", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.97", - "balance": "1.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1479, - "quantity": 1, - "cost": 4.97, - "product_key": "rem", - "notes": "Soluta sit et minima labore neque. Enim necessitatibus omnis fuga dignissimos. Quas dignissimos cupiditate nisi voluptates necessitatibus doloribus suscipit qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1464, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1464, - "key": "oiy2oghzkkxajknsblvanfkvpjcjhfgs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1465, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1464", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-02", - "last_sent_date": null, - "due_date": "2020-01-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.90", - "balance": "4.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1480, - "quantity": 5, - "cost": 7.38, - "product_key": "autem", - "notes": "Esse eum velit vero nihil et et. Est quis et error ad rerum ut. Culpa sit molestiae vero sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1465, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1465, - "key": "uvtbez8aa6cne2hb7qjkfoilhnjnh57a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1466, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1465", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.35", - "balance": "18.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1481, - "quantity": 5, - "cost": 7.07, - "product_key": "et", - "notes": "Architecto molestias omnis est minus. Et est ipsum voluptas. Odio laborum aut enim. Impedit non sit molestiae enim commodi id labore voluptate. Qui aut esse commodi magnam est qui cumque. Omnis ab ad aliquid quas perferendis voluptatem. Voluptas corporis a et ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1466, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1466, - "key": "kpe00wkxfjiwtkcykcbqccjk1mszgnsp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1467, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1466", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.70", - "balance": "7.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1482, - "quantity": 6, - "cost": 1.95, - "product_key": "assumenda", - "notes": "Saepe molestiae dolor soluta facilis quia ipsum. Ipsam pariatur doloribus id praesentium. Dolore vitae voluptas harum in molestiae eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1467, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1467, - "key": "64u0xmnq4rocpi2ioj3iauzrkj07ihbq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1468, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1467", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-11", - "last_sent_date": null, - "due_date": "2020-02-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.90", - "balance": "5.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1483, - "quantity": 6, - "cost": 8.15, - "product_key": "odio", - "notes": "Quam debitis debitis enim molestiae ex. Magnam vero dolor placeat maiores vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1468, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1468, - "key": "mqzwk1lcug8gizqnkwj1vf45f1ihjjpi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1469, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1468", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-13", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.44", - "balance": "35.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1484, - "quantity": 4, - "cost": 8.86, - "product_key": "excepturi", - "notes": "Numquam quam rerum consectetur omnis illum enim. Facere sit sint accusantium quaerat corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1469, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1469, - "key": "u5mcbxkuhkodowwvafyruqnqvxp8mfmw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1470, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1469", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-06", - "last_sent_date": null, - "due_date": "2020-05-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.03", - "balance": "12.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1485, - "quantity": 7, - "cost": 3.29, - "product_key": "possimus", - "notes": "Nulla facere error voluptatibus rerum. Et officiis alias ea beatae. Qui non voluptatibus qui officiis praesentium in cupiditate eos. Est nihil distinctio odio reprehenderit et ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1470, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1470, - "key": "dvfqyttq6yiyuuyyji3rzsresivjn4q9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1471, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1470", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-30", - "last_sent_date": null, - "due_date": "2020-03-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "62.02", - "balance": "38.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1486, - "quantity": 7, - "cost": 8.86, - "product_key": "est", - "notes": "Non consectetur magni optio ullam autem est. Animi amet unde molestiae quae. Placeat magnam eveniet temporibus eum sunt. Quae quae libero accusamus et. Facere tenetur labore expedita porro dicta cupiditate sint aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1471, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1471, - "key": "p6tdcatsmdyay37dm4tqsxpogwfo5txa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1472, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1471", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-04-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.17", - "balance": "1.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1487, - "quantity": 3, - "cost": 1.39, - "product_key": "ex", - "notes": "Quibusdam nesciunt dolor ut cumque. Hic sequi beatae voluptates praesentium vel nesciunt. Ipsa quibusdam in quidem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1472, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1472, - "key": "gwqnj2vhotdswkjcyuwglukvnl96km2w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1473, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1472", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2020-02-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.99", - "balance": "3.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1488, - "quantity": 1, - "cost": 4.99, - "product_key": "rerum", - "notes": "Sed minima est ipsa dolores minus. Non et eos dolores. Dignissimos et veniam dolorem doloribus reiciendis illum ea. Debitis aut sed vel ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1473, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1473, - "key": "i9exolcpui2n9n7tng1ulaa4lyu4qprt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1474, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1473", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-06", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.95", - "balance": "22.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1489, - "quantity": 5, - "cost": 8.59, - "product_key": "minima", - "notes": "Pariatur dolore maxime eum excepturi doloribus tempore sit. Consequatur ut voluptatem voluptas veritatis ut ad. Eligendi facere in ea non suscipit consequuntur blanditiis facilis. Iusto aperiam et et aspernatur et ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1474, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1474, - "key": "nzx4gaav2w503hmy503tcmqokaaopqye", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1475, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1474", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.91", - "balance": "9.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1490, - "quantity": 3, - "cost": 4.97, - "product_key": "explicabo", - "notes": "Magnam in quibusdam voluptatibus ratione dolore et consequatur aut. Voluptas rerum ipsam magni est exercitationem molestias. Rerum quo quos illum et natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1475, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1475, - "key": "r1ui77yym7cv15yjjn3e6vprdbdcxj6c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1476, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1475", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.11", - "balance": "4.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1491, - "quantity": 1, - "cost": 6.11, - "product_key": "architecto", - "notes": "Ut tempore qui deleniti repellat illum. Rerum necessitatibus aut ducimus rem ab minima. Sed voluptatibus est quos. Fugit itaque voluptatum at recusandae nesciunt fuga non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1476, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1476, - "key": "i5vf78aygrvllvuriajtgcgtpund3h8n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1477, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1476", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-10", - "last_sent_date": null, - "due_date": "2020-05-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.71", - "balance": "7.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1492, - "quantity": 3, - "cost": 5.57, - "product_key": "repellendus", - "notes": "Minima aut sint quaerat nesciunt dicta placeat. Quo accusantium ut tempore voluptate similique. Sint incidunt est quis quos in nihil necessitatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1477, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1477, - "key": "9xgxphv4igpcrzbi0edjeif3er4hee4r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1478, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1477", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2020-05-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.08", - "balance": "11.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1493, - "quantity": 3, - "cost": 8.36, - "product_key": "deleniti", - "notes": "Non consequatur ut doloremque ea labore assumenda et consequatur. Id quasi id incidunt consequuntur sit excepturi. Eveniet rerum tempora sit dolor aut quia ut. Hic beatae omnis quisquam ratione nobis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1478, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1478, - "key": "mrzuiffgljows3uyx25noyjvxoucgql0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1479, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1478", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-14", - "last_sent_date": null, - "due_date": "2020-02-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.28", - "balance": "3.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1494, - "quantity": 3, - "cost": 1.76, - "product_key": "inventore", - "notes": "Quia qui hic ad officiis suscipit. Consequuntur sed qui quia qui aspernatur reprehenderit dolorum. Ut laboriosam et omnis sint voluptatem molestiae. Cumque sit dolorem soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1479, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1479, - "key": "xgdxjcjft3gizxkxqiekxnwhommipurz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1480, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1479", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.16", - "balance": "30.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1495, - "quantity": 8, - "cost": 5.52, - "product_key": "sit", - "notes": "Eum eligendi voluptatum sed fuga quam iure blanditiis. Architecto deleniti qui veniam ab autem error. Non distinctio qui nam itaque. Est sit illo ipsa deserunt magni qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1480, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1480, - "key": "hnny0e2aln0o9z0ug6y0ygnftcmlhfq9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1481, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1480", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-12", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.70", - "balance": "1.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1496, - "quantity": 1, - "cost": 2.7, - "product_key": "iste", - "notes": "Ex quia molestias qui consequuntur excepturi pariatur. Aut eum nisi et rerum. Occaecati veritatis suscipit ab molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1481, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1481, - "key": "bnvzy7uz3fqwackdtl2fsoswqchuw4k3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1482, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1481", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-09", - "last_sent_date": null, - "due_date": "2020-05-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.60", - "balance": "9.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1497, - "quantity": 6, - "cost": 7.1, - "product_key": "voluptas", - "notes": "Tenetur deserunt qui a non rerum veniam optio voluptatem. Aliquam adipisci aut quia. Veniam eius minima ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1482, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1482, - "key": "one7oapzz9vicsnwj5pbi3dr56zwsxjq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1483, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1482", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.18", - "balance": "7.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1498, - "quantity": 3, - "cost": 9.06, - "product_key": "eos", - "notes": "Est ducimus iure rem sed reiciendis non est. Omnis perspiciatis ipsam et sit eum. Consectetur sint cum adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1483, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1483, - "key": "ch7a6kk1mubfeossqzkqmi1dpxmlswb3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1484, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1483", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-11", - "last_sent_date": null, - "due_date": "2020-03-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "76.86", - "balance": "63.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1499, - "quantity": 9, - "cost": 8.54, - "product_key": "reprehenderit", - "notes": "Aperiam inventore qui qui. Nulla eum est alias. Labore corporis nemo officia a. Quia et minima est ea. Consequatur qui iusto iusto. Et aliquid voluptas natus numquam. Est rerum voluptas sed totam et non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1484, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1484, - "key": "osu0ad31vupbve17h0avl7rhsqdkdtve", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1485, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1484", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-20", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.25", - "balance": "46.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1500, - "quantity": 7, - "cost": 7.75, - "product_key": "quos", - "notes": "Sequi eum ad qui. Quae sed blanditiis quo consequatur. Qui optio ut repellat sunt et molestiae delectus dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1485, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1485, - "key": "0utapbjz8cp6kk2cvluj0t1r7asxzccg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1486, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1485", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-11", - "last_sent_date": null, - "due_date": "2020-01-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.62", - "balance": "26.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1501, - "quantity": 6, - "cost": 5.27, - "product_key": "rem", - "notes": "Illo consequatur magni sunt sit accusamus. Dolor eligendi suscipit quia labore. Numquam aut dignissimos et qui laborum est porro. Dolores totam unde eum nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1486, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1486, - "key": "auqqdti3cxmem3t209jgx7jcgg4uevew", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1487, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1486", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-15", - "last_sent_date": null, - "due_date": "2020-01-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.84", - "balance": "18.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1502, - "quantity": 3, - "cost": 6.28, - "product_key": "cum", - "notes": "Omnis debitis doloremque nulla omnis. Quia at laborum saepe. Animi dicta cupiditate necessitatibus nihil in. Aliquid omnis perspiciatis quasi nobis consequatur. Est nobis ut quod. Eligendi at enim hic autem non iure perspiciatis. Non adipisci distinctio aperiam modi ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1487, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1487, - "key": "i1oi1h05j6n3rx1jyeqqnmz2xzorhowa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1488, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1487", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-20", - "last_sent_date": null, - "due_date": "2020-03-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.25", - "balance": "0.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1503, - "quantity": 5, - "cost": 6.45, - "product_key": "iusto", - "notes": "Nulla ut ad voluptas qui modi voluptas. Voluptate quisquam facere quia excepturi fugiat ab. Deleniti hic vitae ratione tenetur enim.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1488, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1488, - "key": "qw1f8sak9ujdx9dnlbfirskfav7zq8ud", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1489, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1488", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-09", - "last_sent_date": null, - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.25", - "balance": "28.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1504, - "quantity": 5, - "cost": 7.65, - "product_key": "eos", - "notes": "Excepturi eum ipsa ipsum vel in. Consequuntur nihil rerum ex voluptas suscipit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1489, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1489, - "key": "zcsylncvkzhfwvnyoen36hnrtpd2yxk5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1490, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1489", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.38", - "balance": "9.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1505, - "quantity": 2, - "cost": 6.19, - "product_key": "quos", - "notes": "Dolor et et esse ratione sequi autem quisquam aut. Ex delectus numquam amet repellendus. Placeat dignissimos assumenda sint soluta et sit repellendus. Ex qui sit in exercitationem sequi neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1490, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1490, - "key": "1xy2sachstn9fcgt5vpldfmnsmmcrpwx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1491, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1490", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-21", - "last_sent_date": null, - "due_date": "2020-05-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "73.71", - "balance": "47.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1506, - "quantity": 9, - "cost": 8.19, - "product_key": "aliquid", - "notes": "Nemo quas inventore iure temporibus omnis numquam voluptate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1491, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1491, - "key": "ojnan9h5zv3jagqzarenyhpsd6lxwonf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1492, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1491", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.25", - "balance": "17.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1507, - "quantity": 5, - "cost": 9.05, - "product_key": "ipsum", - "notes": "Alias hic aliquam eos. Cum numquam quasi voluptatem quia. Voluptatem non est in doloremque blanditiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1492, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1492, - "key": "nbf5chggq5w4jhsy8xynj9idmfrebkvl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1493, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1492", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-04-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.80", - "balance": "56.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1508, - "quantity": 8, - "cost": 8.85, - "product_key": "pariatur", - "notes": "Corrupti ipsam neque soluta et voluptate quia. Odit magni dolorum labore voluptatem adipisci rem. Quasi in non sapiente qui recusandae. Dolores sunt et dolorem id illum alias aliquid.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1493, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1493, - "key": "xfgtzihmx9kkatekudh56jdzeozvvlbc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1494, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1493", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-22", - "last_sent_date": null, - "due_date": "2020-02-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.60", - "balance": "13.89", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1509, - "quantity": 10, - "cost": 3.56, - "product_key": "voluptates", - "notes": "Dicta quia ad illum et ipsam omnis. Reiciendis at est magnam odio quo. Maiores earum eos blanditiis distinctio ipsam. Aut quidem aperiam et sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1494, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1494, - "key": "oa5v1ur3kkkvfctff1tbfw0kby85gncq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1495, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1494", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-15", - "last_sent_date": null, - "due_date": "2020-02-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.30", - "balance": "11.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1510, - "quantity": 10, - "cost": 4.93, - "product_key": "numquam", - "notes": "Distinctio non sit adipisci cumque voluptate quae autem. Quas officiis totam cumque id est rerum ex. Libero quia in illo id saepe. Qui distinctio assumenda enim ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1495, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1495, - "key": "kgkymgqzlfxpvzxifkpewkjyimxcg7s7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1496, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1495", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-03-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.60", - "balance": "15.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1511, - "quantity": 4, - "cost": 4.9, - "product_key": "qui", - "notes": "Quos eaque eum eos velit quasi. Enim cumque id suscipit. Minus voluptas sed dolorum aspernatur et ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1496, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1496, - "key": "11k7crxcoavfkp9cpp8pys4h47cn3spp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1497, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1496", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-15", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.52", - "balance": "2.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1512, - "quantity": 1, - "cost": 3.52, - "product_key": "eum", - "notes": "Minus iste sint voluptas quia. Velit qui placeat qui est. Vel eaque deserunt sit. Id sunt vel veritatis qui provident nihil a.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1497, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1497, - "key": "qor4qf0icompwi6bam5m0czwaw5tabpa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1498, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1497", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-07", - "last_sent_date": null, - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.10", - "balance": "3.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1513, - "quantity": 7, - "cost": 1.3, - "product_key": "quos", - "notes": "Sed omnis accusamus sunt. Quidem non ad aliquam quia labore aliquid enim qui. Ut id eveniet ea blanditiis odit ea rem. Odio aut vel sed in doloremque ducimus ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1498, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1498, - "key": "2pyaefbjy9r7munwgwdxawjqximod5ly", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1499, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1498", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.68", - "balance": "9.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1514, - "quantity": 9, - "cost": 3.52, - "product_key": "at", - "notes": "At earum labore perferendis ducimus adipisci eos provident quidem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1499, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1499, - "key": "w83obg5hce0i3rkppogpmcocqncvvkmj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1500, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1499", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-30", - "last_sent_date": null, - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.78", - "balance": "4.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1515, - "quantity": 2, - "cost": 3.89, - "product_key": "earum", - "notes": "Ea voluptas saepe ex.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1500, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1500, - "key": "wcel2a3osjosbpc1qkwoxriirqpk9tcy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1501, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1500", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.36", - "balance": "4.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1516, - "quantity": 8, - "cost": 7.17, - "product_key": "quia", - "notes": "Sint voluptas nihil labore ut est. Rerum praesentium sunt beatae consequuntur. Hic rerum qui ex optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1501, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1501, - "key": "ldu1grjrwj3f03dwrmcncfmgqsupf0d6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1502, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1501", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-10", - "last_sent_date": null, - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.18", - "balance": "4.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1517, - "quantity": 6, - "cost": 1.53, - "product_key": "mollitia", - "notes": "Incidunt nam nihil eos non. Dolorum cumque eum deserunt hic nostrum. Beatae dicta ea nesciunt. Doloremque aut ratione inventore alias sed fugit dolore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1502, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1502, - "key": "wsy0l2hvbz6ng6r9adwb0l8ppg8dc6ft", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1503, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1502", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.70", - "balance": "14.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1518, - "quantity": 3, - "cost": 7.9, - "product_key": "ab", - "notes": "Doloremque provident quia et dignissimos numquam omnis impedit. Libero sint voluptas earum iusto incidunt in. Maxime aut temporibus dolorum dolorem et debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1503, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1503, - "key": "aiox935owslyxfajdb9cxvdichqjmwqw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1504, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1503", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-05-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.88", - "balance": "0.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1519, - "quantity": 4, - "cost": 3.72, - "product_key": "consequatur", - "notes": "Nihil dolorem nostrum ullam aut laborum consequatur. Provident voluptas recusandae fuga distinctio dolor sit illum. Ut occaecati consectetur itaque temporibus. Enim fuga sequi at perferendis nostrum maiores atque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1504, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1504, - "key": "fud5exre2ignsa555z0xecgkfhhg8x0q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1505, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1504", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.40", - "balance": "17.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1520, - "quantity": 5, - "cost": 8.08, - "product_key": "molestiae", - "notes": "Ut sequi esse quam dolorem recusandae ut tenetur sint. Ea quia consequatur quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1505, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1505, - "key": "hfjbesguzrcdfcohka86cnziqo5rtl6c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1506, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1505", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.56", - "balance": "11.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1521, - "quantity": 4, - "cost": 7.14, - "product_key": "aliquam", - "notes": "Quae quidem et odio. Ut velit neque quos et quia numquam voluptatem voluptatem. Eius qui natus quam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1506, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1506, - "key": "abtwfpiuxcppvc40dlrmxndtc8mtywdz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1507, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1506", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2019-12-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.11", - "balance": "2.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1522, - "quantity": 1, - "cost": 4.11, - "product_key": "unde", - "notes": "Laboriosam est ab deleniti iste enim quidem. Illum aut laborum quis velit. Ab praesentium iste qui veritatis voluptas aspernatur tempora id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1507, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1507, - "key": "e79iy2gclgtujmdse9pf3scg3vczh5hq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1508, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1507", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2020-04-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.88", - "balance": "1.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1523, - "quantity": 2, - "cost": 1.94, - "product_key": "illum", - "notes": "Assumenda sed tenetur deleniti amet soluta aut quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1508, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1508, - "key": "l3awatxiszgzfvjmjtqsfllrgmyeojb7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1509, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1508", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.23", - "balance": "2.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1524, - "quantity": 1, - "cost": 5.23, - "product_key": "aut", - "notes": "Voluptate enim minus id earum et ut eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1509, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1509, - "key": "25sca7drrvcz2gpbevwctx50khoqdtz3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1510, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1509", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.07", - "balance": "5.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1525, - "quantity": 1, - "cost": 6.07, - "product_key": "ipsum", - "notes": "Odit dolor id neque blanditiis deserunt. Doloribus eveniet eaque quia ex minima suscipit amet. Laborum distinctio officia qui velit maiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1510, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1510, - "key": "r9keak6l8exsasdvwyjq8zqxsbxdgbnp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1511, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1510", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-03-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "84.30", - "balance": "38.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1526, - "quantity": 10, - "cost": 8.43, - "product_key": "sunt", - "notes": "Tempore consequatur consequuntur eligendi quae animi. Pariatur eligendi et nulla eaque vero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1511, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "invoice_id": 1511, - "key": "kwduv0x6kbb6qvjphtqxmyfonmjetpzu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1612, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1611", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.68", - "balance": "11.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1627, - "quantity": 8, - "cost": 3.71, - "product_key": "ipsam", - "notes": "Voluptatum eius a dolorem animi rerum sint. Nulla aliquid quia distinctio dolore natus sit fugit. Ut quia saepe voluptas et. Reprehenderit exercitationem voluptatum consequatur odio dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1612, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1612, - "key": "wwcx9ugwgi47yhjjyscqntptuldskyfj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1613, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1612", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2020-02-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.81", - "balance": "3.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1628, - "quantity": 1, - "cost": 7.81, - "product_key": "est", - "notes": "Fugiat ipsa adipisci cum dolores ut voluptates id numquam. Sint animi debitis veritatis exercitationem libero unde ut doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1613, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1613, - "key": "i9gcdwqan7brjjevvpuyssznara2g8br", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1614, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1613", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-10", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.10", - "balance": "9.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1629, - "quantity": 10, - "cost": 2.81, - "product_key": "et", - "notes": "Saepe eaque consequatur quod hic mollitia. Voluptatem et voluptatem qui ab excepturi nesciunt ut. Quis est rerum fugiat sunt aut labore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1614, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1614, - "key": "tovgnapbmkfbupw7qy93hsbx8qiiuuiv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1615, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1614", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.48", - "balance": "1.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1630, - "quantity": 8, - "cost": 1.56, - "product_key": "consequatur", - "notes": "Et odit excepturi totam ut non explicabo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1615, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1615, - "key": "uogaxu8ldmsrkjakkzhlblcjrkqf7dxc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1616, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1615", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-05-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.85", - "balance": "20.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1631, - "quantity": 5, - "cost": 8.57, - "product_key": "nobis", - "notes": "Quia quia cum qui tenetur deleniti est. A dignissimos laudantium eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1616, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1616, - "key": "vzcofxerhm7v8xtp1dayvxluxv3qxu67", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1617, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1616", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.20", - "balance": "49.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1632, - "quantity": 10, - "cost": 5.42, - "product_key": "voluptatem", - "notes": "Exercitationem quidem qui eos nemo ex distinctio. Voluptates et dolor excepturi nihil enim cupiditate sit quidem. Quisquam enim et natus et est magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1617, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1617, - "key": "btjm9lyumn9hsiyikeejseiafep0b4yl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1618, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1617", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.32", - "balance": "23.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1633, - "quantity": 4, - "cost": 8.33, - "product_key": "recusandae", - "notes": "Animi odit voluptatum molestiae dolorem suscipit eum. Dolores enim id aliquid dolores sunt quae ab et. Dolor nesciunt totam voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1618, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1618, - "key": "ruxh1plddm4lbvvdyae0uxmt8fqvqkey", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1619, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1618", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "56.42", - "balance": "15.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1634, - "quantity": 7, - "cost": 8.06, - "product_key": "eum", - "notes": "Ullam sapiente veniam dolor et maxime. Repellat ea vitae dolorum laudantium ut rerum. Ut consectetur ex temporibus. Laudantium ad et aperiam sit. Soluta blanditiis nihil et. Qui in nulla est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1619, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1619, - "key": "2gzveffulwpnownbrmgvnumuvnxf0kh3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1620, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1619", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.80", - "balance": "51.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1635, - "quantity": 10, - "cost": 5.58, - "product_key": "natus", - "notes": "Doloribus dolores repellendus magni. Consequatur dolorem voluptatem aperiam voluptatem quia sunt. Ad expedita labore rerum iure voluptas nam quidem. Illo dolore delectus nemo quas animi soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1620, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1620, - "key": "kyks6xyelrgsypqpophtx7dryfgvmmph", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1621, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1620", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-18", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.12", - "balance": "1.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1636, - "quantity": 8, - "cost": 2.14, - "product_key": "repellendus", - "notes": "Quidem nobis fuga voluptate iusto. Ex at nobis eum qui accusamus et adipisci. Nostrum et iure placeat quis ut id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1621, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1621, - "key": "2uix5dlyrhpw9tfvj9x5o2ctwmebetrr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1622, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1621", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2020-06-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.44", - "balance": "35.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1637, - "quantity": 8, - "cost": 6.43, - "product_key": "enim", - "notes": "Alias aliquid ipsum doloribus amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1622, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1622, - "key": "88csct2vp2q9muw6tojabu3vyd5e6lyl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1623, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1622", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2019-12-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.40", - "balance": "9.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1638, - "quantity": 10, - "cost": 4.14, - "product_key": "eligendi", - "notes": "Sequi sed soluta at quisquam vero laudantium. Hic alias doloribus incidunt perferendis inventore facere consectetur non. In saepe ut tempora deserunt illum et labore. Sit autem officia omnis a debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1623, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1623, - "key": "ljrawf1uipvdnknlfcuczgb2o1rkyhct", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1624, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1623", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.32", - "balance": "2.89", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1639, - "quantity": 8, - "cost": 8.79, - "product_key": "sint", - "notes": "Et repellendus est consequatur facilis doloremque recusandae quaerat. Iure eum ut tempore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1624, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1624, - "key": "mcyrsiohqznb5wqa0iympdp36p2bn3wq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1625, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1624", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-13", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.06", - "balance": "2.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1640, - "quantity": 1, - "cost": 3.06, - "product_key": "dolores", - "notes": "Quo pariatur qui totam quam laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1625, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1625, - "key": "gi9cucsblx26pc4ztjjiyd7hmwip5a1c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1626, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1625", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.68", - "balance": "5.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1641, - "quantity": 8, - "cost": 3.96, - "product_key": "id", - "notes": "Deleniti libero quae repellendus qui ut aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1626, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1626, - "key": "rrfuqf7s7sekxicxve6igncin6zpsy31", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1627, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1626", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.48", - "balance": "31.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1642, - "quantity": 8, - "cost": 4.06, - "product_key": "ullam", - "notes": "Aut culpa aperiam qui. Ex eligendi voluptas ducimus tempora praesentium vel. Et in dolor sit voluptas non. Eos ut voluptate quia sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1627, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1627, - "key": "oska3pyni5ssixdmvtnvkpahvj5mvwuj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1628, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1627", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.40", - "balance": "1.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1643, - "quantity": 10, - "cost": 4.94, - "product_key": "voluptatem", - "notes": "Aut repellendus voluptas incidunt ut doloremque. Et laborum dolores ut. Officia at doloribus vel a ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1628, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1628, - "key": "ivnudwovncndcz79yi07f8gxpmn9ekst", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1629, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1628", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.23", - "balance": "4.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1644, - "quantity": 1, - "cost": 4.23, - "product_key": "iure", - "notes": "Impedit odit recusandae impedit. A dolorem sapiente et non labore est. Dolorum ut vel dolores est et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1629, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1629, - "key": "v43nhqcypiyt1klcbftuqnaczfmmh5z4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1630, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1629", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-13", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "74.50", - "balance": "11.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1645, - "quantity": 10, - "cost": 7.45, - "product_key": "sed", - "notes": "In odit distinctio nihil accusantium. Ut odio est libero qui consequatur non. Accusamus vitae eos perferendis repellat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1630, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1630, - "key": "e84i4fje2zoeyr9jpo5fegxwwsl7uoql", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1631, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1630", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.10", - "balance": "3.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1646, - "quantity": 7, - "cost": 5.3, - "product_key": "molestiae", - "notes": "In est ullam dolores aperiam facilis. Quas culpa facere omnis. Magnam voluptatem ducimus aut vero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1631, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1631, - "key": "00lxdomyeriw90tr2fbte5uhqtytbgtj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1632, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1631", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2020-02-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.80", - "balance": "4.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1647, - "quantity": 9, - "cost": 1.2, - "product_key": "delectus", - "notes": "Laboriosam ut nostrum eos perspiciatis tenetur excepturi amet. Recusandae qui est perferendis tempore quo laborum dolor. Occaecati aliquam et aut commodi. Est quam quia molestiae eum et tempora nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1632, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1632, - "key": "hkuzwwiksqe9rjfsziohobf0atyqx0aq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1633, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1632", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-10", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.66", - "balance": "17.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1648, - "quantity": 6, - "cost": 8.11, - "product_key": "ea", - "notes": "Repudiandae ipsum vel ut ut laborum. Autem ratione itaque quos quia nobis qui reprehenderit vel. Quo sunt sed voluptatibus aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1633, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1633, - "key": "lmtsasxxhewrfurd704a7oflqvtzxrh8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1634, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1633", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.68", - "balance": "4.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1649, - "quantity": 4, - "cost": 2.92, - "product_key": "necessitatibus", - "notes": "Et aut qui corrupti enim et voluptas voluptas. Sint delectus dolor eligendi aut magni consectetur odio ducimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1634, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1634, - "key": "mw4tlzxdhlxee5kb2tyxaeqf6oqogoew", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1635, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1634", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-03", - "last_sent_date": null, - "due_date": "2020-02-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.56", - "balance": "2.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1650, - "quantity": 4, - "cost": 2.64, - "product_key": "sed", - "notes": "Aspernatur qui in ullam. Aut et ea ut nam occaecati est consequatur delectus. Et nihil nihil tempore aut veniam. Delectus est praesentium doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1635, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1635, - "key": "zyhe0cx9ri9g5pwqmshjzllt7ownzdf3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1636, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1635", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-02-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "75.06", - "balance": "1.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1651, - "quantity": 9, - "cost": 8.34, - "product_key": "in", - "notes": "Maxime laborum voluptatem dignissimos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1636, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1636, - "key": "wftq6xcymrrh5stc2n92uovrhl74i9o2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1637, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1636", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.53", - "balance": "27.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1652, - "quantity": 7, - "cost": 4.79, - "product_key": "eum", - "notes": "Aut reiciendis velit maiores quia dolores quia. Aut voluptas quos minima ad vel et. Et voluptatem aut perspiciatis vero. Dolores fugiat facilis enim et et ratione.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1637, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1637, - "key": "3qjhpxk50mcdqdmfp9zcv0ayah7n9gep", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1638, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1637", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2020-06-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.48", - "balance": "10.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1653, - "quantity": 4, - "cost": 9.62, - "product_key": "veritatis", - "notes": "Sed maxime eligendi sed ullam. Eos quisquam quae animi excepturi nihil. Praesentium quis impedit sint iusto occaecati veritatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1638, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1638, - "key": "gvg3um89vu4pxkxmes5kb3uetnzyqrsu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1639, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1638", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-03", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "58.30", - "balance": "6.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1654, - "quantity": 10, - "cost": 5.83, - "product_key": "et", - "notes": "At voluptatibus qui quae. Ut sunt eos ea temporibus. Quia inventore optio velit beatae. Non corrupti ea suscipit mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1639, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1639, - "key": "mxqxw6e65sxfbhddsgnah7gwiow6yttm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1640, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1639", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": null, - "due_date": "2020-02-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.85", - "balance": "15.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1655, - "quantity": 5, - "cost": 8.37, - "product_key": "odio", - "notes": "Placeat possimus beatae distinctio reiciendis neque omnis necessitatibus. Sit vero dolor non ab eos cupiditate. Ut quo optio aliquid error. Beatae aut optio hic tempore optio omnis qui. Nisi a facilis cum similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1640, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1640, - "key": "ly4xta8h2c7zlavpiewgzxpxnpwp0qpp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1641, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1640", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2020-03-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.20", - "balance": "22.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1656, - "quantity": 5, - "cost": 8.04, - "product_key": "fuga", - "notes": "Eligendi odit repellat ab dolores. Ut magni aut odit unde. Voluptatem veritatis est aut doloribus praesentium. Consequatur explicabo non quos quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1641, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1641, - "key": "ebzpayw8vsvqdh17ywrhxtrz7pa7uteo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1642, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1641", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.07", - "balance": "14.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1657, - "quantity": 3, - "cost": 6.69, - "product_key": "sed", - "notes": "Cum perspiciatis dicta quam rem nulla molestiae qui quos. Blanditiis rerum eaque cumque rerum quos. Voluptates optio sit optio dignissimos ullam dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1642, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1642, - "key": "45zcdi9eqf1nuqcikhjss2qvrhd4ewaw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1643, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1642", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.17", - "balance": "3.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1658, - "quantity": 1, - "cost": 5.17, - "product_key": "non", - "notes": "Voluptatem quibusdam officia tempora ducimus eligendi. Itaque ea ipsum et culpa alias asperiores. Quia repudiandae blanditiis porro.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1643, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1643, - "key": "zmn0oyjz2rrinjafdootn3gmwxlkht0g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1644, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1643", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-03-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.67", - "balance": "7.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1659, - "quantity": 9, - "cost": 1.63, - "product_key": "qui", - "notes": "Adipisci magnam quo autem. Quo et totam inventore veniam fuga. Optio delectus facere impedit possimus et reprehenderit ipsa voluptates.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1644, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1644, - "key": "g8zfxwjppijsugo17figbyyw6x95ov94", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:18", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1645, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1644", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-03-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.20", - "balance": "30.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1660, - "quantity": 5, - "cost": 8.24, - "product_key": "aut", - "notes": "Quam voluptatem et alias et recusandae id. Voluptas est fugiat perferendis officia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:18.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1645, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1645, - "key": "z2e0yndj6rxc9ehxi2hvrbp1m0un7xne", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1646, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1645", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2019-12-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.80", - "balance": "11.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1661, - "quantity": 5, - "cost": 2.76, - "product_key": "eum", - "notes": "Ut voluptas autem vel accusamus ut iusto et et. Id dicta aut ut nesciunt explicabo. Provident quod aut quo aliquid saepe velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1646, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1646, - "key": "zx2dei4jtfdv3kzekgrbdjuafzoc7kja", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1647, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1646", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.60", - "balance": "7.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1662, - "quantity": 8, - "cost": 2.95, - "product_key": "repudiandae", - "notes": "Itaque quia ut sint voluptatibus laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1647, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1647, - "key": "eicgiaymthlgadfmdopy7vdm1oskqtym", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1648, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1647", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-15", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.64", - "balance": "9.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1663, - "quantity": 8, - "cost": 1.83, - "product_key": "omnis", - "notes": "Aliquam voluptatem sint hic. Voluptas maxime et sint aperiam qui quam. Est qui ea nihil suscipit commodi architecto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1648, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1648, - "key": "a5uvmsxnoy5fonqntpom90qzvncqp3ya", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1649, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1648", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-18", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.37", - "balance": "4.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1664, - "quantity": 1, - "cost": 7.37, - "product_key": "id", - "notes": "Hic consequatur asperiores minima id voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1649, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1649, - "key": "p7xhujwi2bay3vgjn47u5wpvbpe0rd2l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1650, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1649", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-28", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.80", - "balance": "12.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1665, - "quantity": 6, - "cost": 2.3, - "product_key": "voluptate", - "notes": "Ab omnis omnis dolore aut sit ipsam dolorem. Quo dolor beatae corporis velit magnam. Voluptas sed debitis sapiente. Nisi pariatur rem eos adipisci aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1650, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1650, - "key": "kmixulx2og5oq0pziq1huoi2lhkm42vz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1651, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1650", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.71", - "balance": "0.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1666, - "quantity": 1, - "cost": 8.71, - "product_key": "enim", - "notes": "Delectus quis et dolores. Soluta sit libero consequuntur. Ducimus exercitationem cumque neque similique. Aut voluptas nemo cum praesentium sed commodi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1651, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1651, - "key": "cj8c18xt6a3pyfr6favtqetwru3hsvu8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1652, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1651", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.15", - "balance": "22.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1667, - "quantity": 5, - "cost": 9.63, - "product_key": "quia", - "notes": "Possimus dolorem ipsum consequatur nulla consectetur aut assumenda et. Sint repudiandae eos veniam ipsa asperiores eum eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1652, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1652, - "key": "fb0p9n3ioryyrn76tib4wuod1v5t4lwl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1653, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1652", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.76", - "balance": "17.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1668, - "quantity": 6, - "cost": 3.46, - "product_key": "laudantium", - "notes": "Qui exercitationem vel explicabo eum rerum et culpa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1653, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1653, - "key": "uagp4fhibcpmzzb35ookbyjtyr3f3amj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1654, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1653", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.40", - "balance": "33.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1669, - "quantity": 8, - "cost": 5.8, - "product_key": "amet", - "notes": "Aut quis et ducimus sint error. Labore quis nostrum qui sequi. Voluptatem et similique quia et soluta dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1654, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1654, - "key": "htfgbxarqdybiphq5edoabdfpxmmf08y", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1655, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1654", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2019-12-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.70", - "balance": "28.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1670, - "quantity": 10, - "cost": 3.57, - "product_key": "ullam", - "notes": "Beatae fuga dolore aut dolor quis ut blanditiis sit. Voluptas dignissimos omnis officia. Ex modi non minima aliquam recusandae. Dolore assumenda officiis magnam esse.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1655, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1655, - "key": "qghdh3hy1ragdqjvmr37niwhf0vuznux", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1656, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1655", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.16", - "balance": "56.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1671, - "quantity": 8, - "cost": 8.52, - "product_key": "veritatis", - "notes": "Praesentium ratione quia consectetur cum magni aut debitis. Nam amet ipsa eaque omnis. Amet iure aut non repellat quo voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1656, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1656, - "key": "4eqqltlc4znzo3xm3j802ylqdc2wrqil", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 1657, - "client_id": 21, + "id": 10362, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 5, + "status_id": 3, "design_id": 1, - "number": "1656", + "number": "0005", "discount": "0.00", "is_amount_discount": false, "po_number": "", "date": "2020-05-08", "last_sent_date": null, - "due_date": "2020-05-12", + "due_date": "2020-09-17", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -69608,22 +5655,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "11.94", - "balance": "9.31", - "partial": null, + "amount": "58.56", + "balance": "47.41", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 1672, - "quantity": 3, - "cost": 3.98, - "product_key": "est", - "notes": "Quod consequatur molestias distinctio est inventore qui. Id rem ducimus et necessitatibus et amet cumque deserunt. Vel impedit ut iusto illo. Vero quasi minima quos aut.", + "id": 10362, + "quantity": 6, + "cost": 9.76, + "product_key": "qui", + "notes": "Nihil est in non. Exercitationem similique eos vitae dolor quia. Sunt a autem provident ad. Dolorem consequuntur eos ad cumque saepe vel assumenda.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:19.000000", + "date": "2020-06-30 11:19:16.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -69632,50 +5683,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1657, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1657, - "key": "ejk9msvggycp0kwaj74k0bvlqkvurvqm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 1658, - "client_id": 21, + "id": 10363, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 5, + "status_id": 3, "design_id": 1, - "number": "1657", + "number": "0006", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-04", + "date": "2020-04-18", "last_sent_date": null, - "due_date": "2020-02-15", + "due_date": "2020-09-21", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -69684,22 +5714,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "12.30", - "balance": "10.16", - "partial": null, + "amount": "76.30", + "balance": "29.55", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 1673, + "id": 10363, "quantity": 10, - "cost": 1.23, - "product_key": "quas", - "notes": "Aut quisquam doloribus aut sint facilis. Unde qui nulla in sequi. Voluptatem totam earum veniam hic.", + "cost": 7.63, + "product_key": "mollitia", + "notes": "Rerum dolorem accusamus odio ut. Ab voluptatem et pariatur qui deserunt facere. Suscipit id repellat dolorem animi sapiente.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:19.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -69708,50 +5742,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1658, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1658, - "key": "l7fcuejusx4fgkra68rqrll8dunqwimt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 1659, - "client_id": 21, + "id": 10364, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 5, + "status_id": 3, "design_id": 1, - "number": "1658", + "number": "0007", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-03-20", + "date": "2020-07-02", "last_sent_date": null, - "due_date": "2020-04-10", + "due_date": "2020-09-05", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -69760,402 +5773,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "1.06", - "balance": "0.66", - "partial": null, + "amount": "8.08", + "balance": "3.53", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 1674, - "quantity": 1, - "cost": 1.06, - "product_key": "reiciendis", - "notes": "Mollitia modi et nihil vero ipsam. Enim cum fugiat harum fuga. Accusamus dolorem impedit architecto rerum sed assumenda incidunt. Quia temporibus doloremque quos reiciendis eius eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1659, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1659, - "key": "ezrda4dipppd428bcetmkt3wtslakcuo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1660, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1659", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.91", - "balance": "5.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1675, - "quantity": 7, - "cost": 2.13, - "product_key": "quia", - "notes": "Aperiam sapiente sed nihil illum. Officia voluptatem laudantium corrupti est quaerat. Recusandae vitae dolores modi repellendus fugiat facilis similique. Et tempore assumenda eum facilis tenetur aut porro. Qui harum exercitationem ut sit. Nobis unde sed officiis quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1660, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1660, - "key": "bjrkcwjjiy1mvv17l8of2cykrwgimive", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1661, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1660", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.22", - "balance": "7.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1676, - "quantity": 6, - "cost": 8.37, - "product_key": "amet", - "notes": "Saepe provident et voluptas dolore voluptas. Exercitationem pariatur consequatur labore et eos est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1661, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1661, - "key": "t2uxjt2joznaptqpsoxjjlsw7dmsjst9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1662, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1661", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-04-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.29", - "balance": "3.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1677, - "quantity": 3, - "cost": 2.43, - "product_key": "sed", - "notes": "Non quia mollitia molestias quia veritatis incidunt. Tempore dicta qui itaque aut consequuntur. Perspiciatis eos accusantium ipsam minus inventore animi. Perferendis id veritatis earum voluptate sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1662, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1662, - "key": "nbaes2fcsxixza24ojzu8oceefqxxkqn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1663, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1662", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2020-06-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.48", - "balance": "16.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1678, - "quantity": 4, - "cost": 6.87, - "product_key": "ratione", - "notes": "Quidem modi incidunt omnis et aut sint dolorem. Non illo qui sunt est nam quod. Sit repudiandae nihil iusto ab quia iure distinctio et. Et qui fugit corporis delectus sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:19.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1663, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1663, - "key": "rmnlowg5kwgo8lex4sghtd4pcenirrhh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1664, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1663", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2020-03-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.00", - "balance": "9.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1679, + "id": 10364, "quantity": 2, - "cost": 6, - "product_key": "ut", - "notes": "Sit veritatis sint nostrum delectus adipisci ut. Ut nihil et dolor minima. Tenetur doloribus itaque sunt optio sint. Rerum odio quo nam et doloremque. Molestias voluptatum voluptas illo hic voluptate et eos.", + "cost": 4.04, + "product_key": "aut", + "notes": "Officiis provident et explicabo ut minus placeat. Repellat ut et qui quas architecto eum. Autem temporibus quos est in. Odit vel magnam quia esse.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:19.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -70164,50 +5801,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1664, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1664, - "key": "rftxo4mssbnmapfpfqsrqe51mxio8s6g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 1665, - "client_id": 21, + "id": 10365, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 5, + "status_id": 3, "design_id": 1, - "number": "1664", + "number": "0008", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-05-06", + "date": "2020-07-31", "last_sent_date": null, - "due_date": "2020-02-07", + "due_date": "2020-09-16", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -70216,22 +5832,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "26.52", - "balance": "5.68", - "partial": null, + "amount": "62.30", + "balance": "46.46", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 1680, - "quantity": 4, - "cost": 6.63, - "product_key": "non", - "notes": "Possimus sed dolores libero et quis omnis. Provident sint earum est sit facilis rerum. Ratione recusandae accusamus occaecati voluptas eius eius sed. Ut et ut qui dignissimos repudiandae consectetur. Qui voluptatem amet quibusdam et ipsum quis dolor aut.", + "id": 10365, + "quantity": 10, + "cost": 6.23, + "product_key": "culpa", + "notes": "Nam voluptas quibusdam et. Unde sed consequatur qui ut illum sint. Illum ea animi impedit nisi maiores.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:19.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -70240,1190 +5860,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1665, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1665, - "key": "kkv8p6jzngwehc8amyev0dvf6hczdwq7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:19", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 1666, - "client_id": 21, + "id": 10366, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 5, + "status_id": 3, "design_id": 1, - "number": "1665", + "number": "0009", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-01-05", + "date": "2020-07-29", "last_sent_date": null, - "due_date": "2020-04-17", + "due_date": "2020-08-26", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.54", - "balance": "2.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1681, - "quantity": 1, - "cost": 2.54, - "product_key": "excepturi", - "notes": "Nobis voluptatibus quaerat non consequatur iusto odit quasi. Voluptatem dicta et sed mollitia. Voluptatem molestias necessitatibus odio cupiditate quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1666, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1666, - "key": "fl7g6kxpdhqx4ss1kodqr7kp9umb5srg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1667, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1666", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2020-03-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.84", - "balance": "1.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1682, - "quantity": 2, - "cost": 1.42, - "product_key": "laboriosam", - "notes": "Sapiente sed et et. Iure ut consectetur laboriosam consequuntur dolorum. Tenetur ea aut quasi sed fugit est placeat nihil. Et doloribus rem omnis id maxime voluptates et ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1667, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1667, - "key": "7gb6e8yrxezib3lerquls17mktvzayuy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1668, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1667", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.08", - "balance": "12.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1683, - "quantity": 2, - "cost": 8.04, - "product_key": "tenetur", - "notes": "Quaerat perspiciatis delectus sed et nihil dicta. Placeat unde optio laborum minus autem aut dolorum voluptates. Commodi non recusandae mollitia magnam omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1668, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1668, - "key": "mzqd0uaavvbrpcktv7wwoe9cczpdxn1u", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1669, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1668", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-02-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.55", - "balance": "1.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1684, - "quantity": 9, - "cost": 3.95, - "product_key": "eaque", - "notes": "Enim labore omnis corrupti nisi sunt error. Ut sunt illo et aut eveniet beatae. Porro enim quia sunt natus vitae. Dolore quaerat mollitia nesciunt et repudiandae repellat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1669, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1669, - "key": "4fshc2yqw6vweor5rlso6zzuwuvqypw3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1670, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1669", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-15", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.55", - "balance": "38.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1685, - "quantity": 7, - "cost": 7.65, - "product_key": "deserunt", - "notes": "Quibusdam molestiae adipisci corrupti est blanditiis veniam laborum qui. Quisquam velit cum dolores dolorum optio quod. Pariatur illo qui dolore officiis nihil autem illum. Est voluptatem velit dolore aliquid ab pariatur aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1670, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1670, - "key": "ww3pau2irkuqcknoycgvlldaaqtyk39h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1671, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1670", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-31", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.18", - "balance": "4.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1686, - "quantity": 2, - "cost": 3.59, - "product_key": "et", - "notes": "Quos expedita ducimus modi dignissimos. Ea est debitis dolores ratione. Fugiat aperiam enim maiores cumque dignissimos labore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1671, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1671, - "key": "vzsfpvbtpoxpt2gfhq2bdc5hsaczlyrz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1672, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1671", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.39", - "balance": "12.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1687, - "quantity": 3, - "cost": 7.13, - "product_key": "fugit", - "notes": "Labore quae ut quas sit qui rerum ipsum. Ut sunt recusandae omnis autem sed. Doloribus sequi similique explicabo eos. Voluptatem et voluptatem delectus ratione harum veritatis culpa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1672, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1672, - "key": "636r9wdlzloymptkgyto7txunugqgaxq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1673, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1672", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.96", - "balance": "8.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1688, - "quantity": 2, - "cost": 4.48, - "product_key": "id", - "notes": "Sunt necessitatibus quisquam voluptatem unde ipsum corrupti. Ut eaque nihil error. Quae tempora commodi quia corporis enim et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1673, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1673, - "key": "pxvhjajnlw0n5scdre56qxadsbib7ak3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1674, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1673", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-03-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.31", - "balance": "1.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1689, - "quantity": 1, - "cost": 4.31, - "product_key": "sint", - "notes": "Aut facere inventore libero qui dignissimos ea laborum asperiores. Vel ut et voluptas tenetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1674, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1674, - "key": "pwzgtsppiv4d09twcngq247hnpldysy5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1675, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1674", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-25", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.24", - "balance": "0.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1690, - "quantity": 8, - "cost": 3.28, - "product_key": "sit", - "notes": "Itaque nihil odit odio quia eligendi perferendis. Qui soluta quo sunt laudantium officiis impedit molestias. Nulla non repellendus placeat est laudantium officiis aut minus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1675, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1675, - "key": "t2lvavmiwtyse5lsrbxkfmibgveyjzng", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1676, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1675", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.74", - "balance": "7.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1691, - "quantity": 6, - "cost": 8.79, - "product_key": "doloribus", - "notes": "Voluptatem perferendis modi omnis est. Architecto sit voluptatem et dolor. Recusandae est omnis numquam facere iure sequi et. Accusamus voluptas debitis hic fugiat exercitationem qui voluptatem. Ut aut autem minima quibusdam fuga. Veniam optio quas itaque possimus ea tempore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1676, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1676, - "key": "zcwdaammcywkyihhojz1afoxginnx3ug", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1677, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1676", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-18", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.40", - "balance": "5.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1692, - "quantity": 2, - "cost": 8.2, - "product_key": "eligendi", - "notes": "Et delectus nisi incidunt beatae ut voluptatem eos aspernatur. Reprehenderit porro sunt delectus consequatur. Sit quo eum adipisci pariatur ab ut quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1677, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1677, - "key": "wpivgv5l5wfgfjet61zhyc5g8joea4s2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1678, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1677", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.10", - "balance": "30.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1693, - "quantity": 6, - "cost": 5.35, - "product_key": "est", - "notes": "Aut et molestias quia omnis et aut. Non at minima accusamus occaecati optio aspernatur ab soluta. Facere doloremque quo harum illo vero. Qui officiis suscipit sed saepe molestias doloribus perferendis autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1678, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1678, - "key": "j91e3z2gsrxwa3mphof3mztcp6xxmpik", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1679, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1678", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-30", - "last_sent_date": null, - "due_date": "2020-05-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.60", - "balance": "9.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1694, - "quantity": 6, - "cost": 4.6, - "product_key": "maxime", - "notes": "Ut et reprehenderit libero quaerat. Quod at repellat beatae occaecati. Ut ut veritatis dolor quibusdam et et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1679, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1679, - "key": "vaqgjm6gefoghvteotuthqw5uovu1tot", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1680, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1679", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-05", - "last_sent_date": null, - "due_date": "2020-01-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.76", - "balance": "2.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1695, - "quantity": 4, - "cost": 2.69, - "product_key": "et", - "notes": "Nisi voluptatem dignissimos consequuntur dolores sunt quae. Nisi sint et tenetur saepe facilis natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1680, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1680, - "key": "tvs3puh3fnkigxb2bnsy8anh6kef176b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1681, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1680", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-28", - "last_sent_date": null, - "due_date": "2020-02-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -71433,10053 +5892,25 @@ "custom_value2": "0.00", "next_send_date": null, "amount": "27.30", - "balance": "18.52", - "partial": null, + "balance": "10.70", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 1696, - "quantity": 6, - "cost": 4.55, - "product_key": "voluptatem", - "notes": "Cupiditate exercitationem veritatis consequatur omnis aliquid ipsam quas qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1681, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1681, - "key": "sujeipvbfpytxv53k8yloon5heq1snk7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1682, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1681", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-28", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.50", - "balance": "17.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1697, - "quantity": 10, - "cost": 3.75, - "product_key": "maiores", - "notes": "Reprehenderit id sunt placeat dicta quos minima. Atque minus est reprehenderit. Alias explicabo ut fuga ipsa non doloremque ea. Autem veniam fugit iusto quia mollitia vero non voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1682, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1682, - "key": "hpt5ytukvacdqcx7fdyv71j5wxzvljqr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1683, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1682", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-31", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.40", - "balance": "14.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1698, - "quantity": 2, - "cost": 7.7, - "product_key": "sunt", - "notes": "Eos perferendis dolore sit dolore. Ut accusantium ut quasi eos est quia. Nobis magnam fugit ab perferendis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1683, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1683, - "key": "c4cwwl1nn1klw2obg65cptflws0rpkyo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1684, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1683", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-02-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.68", - "balance": "3.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1699, - "quantity": 2, - "cost": 2.34, - "product_key": "voluptatem", - "notes": "Ipsa in exercitationem fuga perferendis reiciendis. Sit eos velit consequatur dolores dolores tempora nobis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1684, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1684, - "key": "w7khd9qodfrbhorjf8yu5txhoikqytut", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1685, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1684", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-22", - "last_sent_date": null, - "due_date": "2020-04-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.70", - "balance": "11.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1700, + "id": 10366, "quantity": 5, - "cost": 7.34, - "product_key": "aut", - "notes": "Molestiae ex praesentium quisquam non reiciendis vel molestiae. Vel sequi et ut fugiat. Facilis enim perferendis commodi ipsum aspernatur. Est tempore omnis minima eveniet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:20.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1685, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1685, - "key": "ek3lxjkcynxzyfl4r3jqdbahhj81qpzc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1686, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1685", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2020-04-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.07", - "balance": "20.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1701, - "quantity": 9, - "cost": 5.23, - "product_key": "id", - "notes": "Similique dolor quis autem et repellat amet et. Ut cupiditate autem velit quae corporis et natus. Natus vero aspernatur placeat ea in aspernatur voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1686, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1686, - "key": "3dc6pj7psji1sjikgndbwjjyjyvvjgoc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1687, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1686", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-09", - "last_sent_date": null, - "due_date": "2019-12-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.18", - "balance": "6.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1702, - "quantity": 1, - "cost": 7.18, - "product_key": "ut", - "notes": "Optio explicabo et ut et id voluptatem ea quaerat. Assumenda doloribus dolorum ab aliquid ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1687, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1687, - "key": "lqeowjbekiwkxq3mlqb1iibbjsuvra6j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1688, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1687", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.72", - "balance": "43.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1703, - "quantity": 9, - "cost": 5.08, - "product_key": "sint", - "notes": "Perspiciatis similique quo magni fuga odit odit sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1688, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1688, - "key": "oemgiujzm1qzwlviernn5bfbut14uhqj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1689, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1688", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-05-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.30", - "balance": "5.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1704, - "quantity": 10, - "cost": 6.13, - "product_key": "voluptatem", - "notes": "Et ut ut neque voluptas quae aut. Voluptatum sint minus et sed incidunt doloribus. Doloribus illum dolor doloremque adipisci mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1689, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1689, - "key": "wzsfcdiflfprlqpmsrcfx6v6lmqhklxd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1690, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1689", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-16", - "last_sent_date": null, - "due_date": "2020-02-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.94", - "balance": "2.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1705, - "quantity": 3, - "cost": 2.98, - "product_key": "dignissimos", - "notes": "At magni quas est est. Eligendi amet earum omnis repudiandae. Consequatur est et mollitia culpa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1690, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1690, - "key": "bpsbrm0zfjzakjoc4gfcascq8hp4el7s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1691, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1690", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-22", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.00", - "balance": "34.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1706, - "quantity": 5, - "cost": 8.8, - "product_key": "repellat", - "notes": "Reiciendis hic ea voluptates. Laborum enim perferendis occaecati quisquam repudiandae et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1691, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1691, - "key": "e2b3vbiiokb6jrvxgee9tyze9atpb5js", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1692, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1691", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2020-04-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.40", - "balance": "34.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1707, - "quantity": 6, - "cost": 5.9, - "product_key": "cum", - "notes": "Tempore fuga nisi aut qui. Quia mollitia omnis ut esse. Id dolores facilis beatae consequatur sed enim.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1692, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1692, - "key": "t2n72ze3jnuzml2d2wsxpbhweroxjcwa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1693, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1692", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-05", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.32", - "balance": "5.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1708, - "quantity": 2, - "cost": 2.66, - "product_key": "sed", - "notes": "Autem veniam enim cumque odio omnis magni. Eum aspernatur et velit fugiat. Sit non veniam omnis eligendi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1693, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1693, - "key": "rlaviy8mixjrpxct5y8ywiok2hnxdybn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1694, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1693", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.95", - "balance": "17.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1709, - "quantity": 3, - "cost": 6.65, - "product_key": "amet", - "notes": "Tenetur magnam autem et rerum. Ut omnis quod alias pariatur sit vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1694, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1694, - "key": "jdgspvsljg1iue3cxbz6myckgpmvekwv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1695, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1694", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.07", - "balance": "0.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1710, - "quantity": 1, - "cost": 6.07, - "product_key": "vero", - "notes": "Eum soluta nesciunt qui optio nulla et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1695, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1695, - "key": "zmtuvxmwgaj4ytxqaovlnqu5jxneibhu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1696, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1695", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2019-12-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.00", - "balance": "1.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1711, - "quantity": 10, - "cost": 6.8, - "product_key": "deserunt", - "notes": "Fuga corrupti alias modi qui. Aspernatur sapiente ipsam quas aliquid. Unde aperiam natus nesciunt et assumenda est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1696, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1696, - "key": "aayystas362lswurkvw0azjydvppyh1i", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1697, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1696", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-20", - "last_sent_date": null, - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.13", - "balance": "9.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1712, - "quantity": 9, - "cost": 2.57, - "product_key": "vel", - "notes": "Vero optio deserunt quis voluptas quos quisquam excepturi. Deserunt aspernatur mollitia illum aut quasi et. Minus eos quis voluptatem consequuntur est quibusdam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1697, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1697, - "key": "6ou9hg36942onx8wcinteextzfynrg0d", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1698, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1697", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-05-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.85", - "balance": "29.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1713, - "quantity": 5, - "cost": 6.17, - "product_key": "consequatur", - "notes": "Sed aliquid dicta dolores nisi. Modi est dolorum eligendi est corrupti nulla rerum. Magnam minima nihil et consequuntur expedita quia et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1698, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1698, - "key": "kdkc1kmstf3orxwktlkxqrkdqisnpk8s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1699, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1698", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.90", - "balance": "36.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1714, - "quantity": 5, - "cost": 7.58, - "product_key": "provident", - "notes": "Repudiandae dolor eos sunt laudantium vitae. Rem porro ex et aliquid id perferendis corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1699, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1699, - "key": "2grdv5a4vkxvu3iz4wgqwsw7qiqdikgy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1700, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1699", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2020-02-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.81", - "balance": "37.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1715, - "quantity": 9, - "cost": 5.09, - "product_key": "enim", - "notes": "Placeat dolores aspernatur minima et asperiores vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1700, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1700, - "key": "p6cblqfkeqy8ybzupdib33ybpxt3re5a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1701, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1700", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-16", - "last_sent_date": null, - "due_date": "2020-01-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.30", - "balance": "6.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1716, - "quantity": 2, - "cost": 7.15, - "product_key": "eum", - "notes": "Dolor aut quas ut repudiandae enim. Enim porro iure deleniti et corporis odit est placeat. Id natus incidunt id excepturi et minus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1701, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1701, - "key": "kf3puhlyf6hgpibephthdcb7vud58qhi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1702, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1701", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-03", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.40", - "balance": "10.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1717, - "quantity": 10, - "cost": 1.44, - "product_key": "sed", - "notes": "Autem ullam ipsa beatae earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1702, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1702, - "key": "xb6o4h4jruxaaclxopjdhtb4wwmnt9tb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1703, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1702", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.70", - "balance": "5.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1718, - "quantity": 5, - "cost": 9.14, - "product_key": "illo", - "notes": "Ipsam incidunt necessitatibus eveniet qui dolor. Non exercitationem delectus quaerat rerum ipsam fuga assumenda. Nisi nesciunt omnis qui autem. Quaerat debitis fugit eaque delectus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1703, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1703, - "key": "1bbj6qby8x6wmgxh75on7x3nrrlcvzur", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1704, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1703", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.50", - "balance": "0.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1719, - "quantity": 10, - "cost": 1.45, - "product_key": "sint", - "notes": "Sint et modi sequi facilis et unde quasi. Eaque velit eveniet sint adipisci. Facere asperiores rerum deleniti harum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1704, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1704, - "key": "ggmuyun2gnc7jlmttwsskqwzicqsdtn4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1705, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1704", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-09", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.20", - "balance": "9.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1720, - "quantity": 5, - "cost": 6.64, - "product_key": "veniam", - "notes": "Quam autem ipsa eaque. Corrupti repellendus hic consectetur quibusdam accusamus officia. Repudiandae doloremque eligendi quae perferendis saepe ut vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1705, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1705, - "key": "8gmoupsguxwle9t1aemh6x1xdjtdnjdc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1706, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1705", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-22", - "last_sent_date": null, - "due_date": "2020-03-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.16", - "balance": "2.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1721, - "quantity": 9, - "cost": 2.24, - "product_key": "iure", - "notes": "Vel dolorum labore reiciendis eum fuga dolor ipsa nemo. Debitis non necessitatibus inventore dolore assumenda nulla. Eos labore eos libero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:21.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1706, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1706, - "key": "0ovunnamkkhwoyxj6olylkyqrfbozkiu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:21", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1707, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1706", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.74", - "balance": "3.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1722, - "quantity": 6, - "cost": 1.79, - "product_key": "quas", - "notes": "Ipsam ab explicabo iusto sed dolor. Accusantium illo nemo et illum ex voluptate deserunt. Reiciendis quaerat necessitatibus deserunt sit veritatis cupiditate ipsum consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1707, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1707, - "key": "dr37bkm4dgri6cbstoydlunuwwhtefwk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1708, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1707", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-11", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.24", - "balance": "5.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1723, - "quantity": 4, - "cost": 8.31, - "product_key": "non", - "notes": "Quia inventore esse nostrum delectus est. Inventore ut molestias exercitationem id in iure. Aut minima qui veniam ut enim dolorem voluptas sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1708, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1708, - "key": "p4isrzr7yjgfpttcnlfmrcqmrwke8qsu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1709, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1708", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.70", - "balance": "10.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1724, - "quantity": 5, - "cost": 2.14, - "product_key": "ex", - "notes": "Amet aspernatur excepturi sit omnis. Quia eos praesentium tempore quis autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1709, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1709, - "key": "fydkxa242oizboyfdv0pjxzjymm9jzsa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1710, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1709", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2019-12-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.20", - "balance": "3.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1725, - "quantity": 6, - "cost": 2.2, - "product_key": "aut", - "notes": "Est in pariatur id optio voluptas laboriosam. Labore debitis et voluptatem fugit commodi. Dignissimos debitis qui ut incidunt alias sequi earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1710, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1710, - "key": "mgigefb2watybmyxfdss3qtouksif2fc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1711, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1710", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.66", - "balance": "2.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1726, - "quantity": 3, - "cost": 4.22, - "product_key": "ut", - "notes": "Nobis aperiam reprehenderit eum eum ut fugiat. Maxime qui et eaque est est eum a. Fuga iusto aut quia. Aut et temporibus molestiae dicta explicabo sunt qui. Reprehenderit architecto unde iusto porro perferendis cumque omnis soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1711, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "invoice_id": 1711, - "key": "yuahkmtrsvwwoqmtujrevpl3ug7v91oa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1812, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1811", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2020-03-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.54", - "balance": "27.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1827, - "quantity": 6, - "cost": 4.59, - "product_key": "maxime", - "notes": "Sint qui sunt earum quibusdam provident. Molestias suscipit rerum ab perferendis nobis. Consequatur optio blanditiis voluptatum ipsam quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1812, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1812, - "key": "30petkdtmeeh1zg5tkxeiew3eelx8iri", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1813, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1812", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-01", - "last_sent_date": null, - "due_date": "2020-04-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.95", - "balance": "11.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1828, - "quantity": 7, - "cost": 5.85, - "product_key": "est", - "notes": "Ut quo nesciunt rerum aliquid eum corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1813, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1813, - "key": "ck9jo1bgltaurwugnrmlnv4vdbhzyxtw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1814, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1813", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.12", - "balance": "1.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1829, - "quantity": 4, - "cost": 1.78, - "product_key": "ea", - "notes": "Aut error in quis quaerat ut soluta dolores. Blanditiis odio sapiente nesciunt hic voluptatem quidem. Animi quos occaecati libero aut sed nemo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1814, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1814, - "key": "nwpf1lszkioczpnfjllvirklxt4mcjlv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1815, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1814", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.20", - "balance": "23.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1830, - "quantity": 9, - "cost": 2.8, - "product_key": "nemo", - "notes": "Eum praesentium occaecati fuga aut consectetur inventore id. Velit illo architecto tenetur sit iusto qui. Exercitationem inventore omnis non nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1815, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1815, - "key": "ixn4eegeb0ycf6w72jiro3ravejhpgn5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1816, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1815", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-15", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.32", - "balance": "2.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1831, - "quantity": 3, - "cost": 3.44, - "product_key": "ut", - "notes": "Delectus aut sit atque in. Quidem alias veniam modi dolore. Rerum provident dolor explicabo animi consequuntur ipsum quisquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1816, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1816, - "key": "z842xehyhc8kxnhlkwsped4xdogdhqgq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1817, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1816", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-22", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.68", - "balance": "9.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1832, - "quantity": 7, - "cost": 6.24, - "product_key": "ullam", - "notes": "Quia blanditiis vel eveniet ea ut iste. Ipsa quis aut id et ipsum. Consequatur illo cumque praesentium. Fuga ut perspiciatis qui ea aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1817, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1817, - "key": "vyvlfu2a5jzfcpxulik2cvgticrfi7ng", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1818, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1817", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-06-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.16", - "balance": "15.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1833, - "quantity": 8, - "cost": 2.02, - "product_key": "placeat", - "notes": "Quia culpa non fugiat aut expedita veritatis est. Nesciunt dolor harum delectus consequatur possimus incidunt. Maiores eius aut aut nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1818, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1818, - "key": "hbdqbinzkcf63nph0py9mdhzfeiwj3ow", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1819, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1818", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.09", - "balance": "1.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1834, - "quantity": 1, - "cost": 3.09, - "product_key": "quia", - "notes": "Ut vel consequuntur ad repellendus aut sint est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1819, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1819, - "key": "jmpjwjjdndv3duoijelsujvgkgsgkmvv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1820, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1819", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.90", - "balance": "29.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1835, - "quantity": 10, - "cost": 5.99, - "product_key": "blanditiis", - "notes": "Eum tempora dolor suscipit aut nihil. Necessitatibus facere unde nesciunt labore. Dicta magni libero in adipisci provident harum. Et ut rerum nobis voluptatem unde consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1820, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1820, - "key": "hixvolibe6kmruztxy01wet36keiu0uv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1821, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1820", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2020-06-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.27", - "balance": "12.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1836, - "quantity": 9, - "cost": 3.03, - "product_key": "id", - "notes": "Voluptatem fugit assumenda voluptatibus sint. Aut aspernatur harum aperiam quidem. Hic totam culpa expedita nemo veritatis nemo. Aut aspernatur fugiat rerum dicta fuga modi qui aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1821, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1821, - "key": "wdbnvqppgnquh7knvtib1rhube1s2p4q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1822, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1821", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2020-04-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.90", - "balance": "3.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1837, - "quantity": 5, - "cost": 5.98, - "product_key": "voluptatibus", - "notes": "Dolor exercitationem eius sunt suscipit vel. Perspiciatis dicta sit aspernatur fugit aliquid. Debitis eum fugit perferendis tempora et enim.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1822, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1822, - "key": "yn5sbrn23z75oygc4ebtmxm1j3x8zvtw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1823, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1822", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.52", - "balance": "0.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1838, - "quantity": 6, - "cost": 1.42, - "product_key": "architecto", - "notes": "Quisquam quasi sit necessitatibus minima pariatur autem. Animi ea fugit sapiente nobis ut et at qui. Dicta enim sit soluta aliquam qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1823, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1823, - "key": "mkrhgtkun9kwkyfwgmoxpumonwg8u0qy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1824, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1823", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2020-03-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.74", - "balance": "4.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1839, - "quantity": 9, - "cost": 4.86, - "product_key": "laudantium", - "notes": "Animi eos at autem minus voluptas. Eius debitis enim quas aut nihil. Voluptatem autem maiores quo id. Dolorem ut voluptatem cupiditate sed voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1824, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1824, - "key": "30kzg8utv3uap8r9irn55fwzfdp8bkgr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1825, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1824", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-04-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.78", - "balance": "11.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1840, - "quantity": 2, - "cost": 8.39, - "product_key": "consequatur", - "notes": "Corporis nulla itaque dolores blanditiis enim nostrum a. Alias architecto ea veritatis esse non mollitia quibusdam sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1825, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1825, - "key": "d5lhoskrlspjwmvh86mrwifkqaxjzeel", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1826, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1825", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.86", - "balance": "0.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1841, - "quantity": 2, - "cost": 4.43, - "product_key": "reprehenderit", - "notes": "Molestiae fuga et sequi et tempore vitae excepturi velit. Rerum ut quia facilis quia deleniti autem non vel. Animi nostrum porro quam commodi assumenda.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1826, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1826, - "key": "p4ijaeybznia31ynz9ljz71hy3dwv7lf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1827, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1826", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "76.60", - "balance": "0.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1842, - "quantity": 10, - "cost": 7.66, - "product_key": "neque", - "notes": "Laboriosam id rerum numquam. Cum assumenda esse illo. Sapiente optio occaecati molestias molestiae. Molestiae et at dolores reiciendis molestiae reiciendis facere.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1827, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1827, - "key": "capbkjdjz7jbm4wbot5oe0c5natg2wsu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1828, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1827", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "74.72", - "balance": "9.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1843, - "quantity": 8, - "cost": 9.34, - "product_key": "dolorem", - "notes": "Ut magnam est eius dignissimos at ea. Error dolores voluptas ut qui ab id quidem. Ipsa et accusamus cumque. Blanditiis est ut a tempore asperiores dolores error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1828, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1828, - "key": "ii0mxwsg3afbxgc9svgphnolxrddb2fh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1829, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1828", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.80", - "balance": "16.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1844, - "quantity": 10, - "cost": 4.28, - "product_key": "ea", - "notes": "Unde odit sed et. Est et non sed sunt quis repudiandae. Velit hic sed doloribus in. Corrupti natus sapiente et eaque ducimus nobis. Rerum nemo illum corporis excepturi. Aliquid beatae consequatur aspernatur dolore et quasi qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1829, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1829, - "key": "nvzfads1rrltd4x1thi9klde1jkaqnfg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1830, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1829", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.24", - "balance": "36.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1845, - "quantity": 8, - "cost": 8.28, - "product_key": "repudiandae", - "notes": "Consequatur nisi sed est in sapiente iure dolores fuga. Aut et a sit tempora voluptatem. Accusamus quae nisi animi eum fugiat asperiores. Delectus ea ea voluptatem et exercitationem eum quia. Amet modi voluptas placeat quam illo fugit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1830, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1830, - "key": "vlqgf0zhmnletvxsretegmibysyzwdk7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1831, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1830", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-30", - "last_sent_date": null, - "due_date": "2020-01-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.76", - "balance": "14.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1846, - "quantity": 3, - "cost": 6.92, - "product_key": "est", - "notes": "Minus cumque dolorem nemo natus. Nostrum non dolorem consequuntur quia reprehenderit et. Impedit quibusdam expedita facere ea quibusdam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1831, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1831, - "key": "qyhpe1uo6htuipclyyrpzcl6erzogflx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1832, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1831", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-02-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.64", - "balance": "2.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1847, - "quantity": 8, - "cost": 5.08, - "product_key": "dolor", - "notes": "Et et dolorem sint hic reprehenderit necessitatibus. Sint nisi consectetur rerum reiciendis tempore veritatis officia at. Optio atque a aliquid autem corporis. Labore cumque reiciendis expedita qui. Aperiam et eveniet sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1832, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1832, - "key": "bf2e6rswyc3dozb5xlcbzunbhjyn9dww", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1833, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1832", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2020-03-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.56", - "balance": "29.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1848, - "quantity": 9, - "cost": 6.84, - "product_key": "consequuntur", - "notes": "Quis quae id vitae. Enim culpa rerum est nihil veniam quia quasi. Ea sint est expedita distinctio porro et ut. Voluptatum rerum quia expedita amet aliquam magni.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1833, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1833, - "key": "gvyuqkfrmer6t4xjd7cnufw8jkdechcc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1834, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1833", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.34", - "balance": "15.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1849, - "quantity": 3, - "cost": 5.78, - "product_key": "ex", - "notes": "Aspernatur cupiditate consequatur nihil. Fugit odit corporis sed ipsam nulla doloremque omnis. Dolorem qui nihil labore cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1834, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1834, - "key": "fsxtebmbewyssdu9thgitcxpdtzls4gc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1835, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1834", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2020-06-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.00", - "balance": "1.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1850, - "quantity": 7, - "cost": 9, - "product_key": "voluptatibus", - "notes": "Et fuga in adipisci est. Adipisci et tempora non minus maxime voluptas iste dolor. Ut sit voluptatum expedita animi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1835, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1835, - "key": "ilmi6j6m9ihsjjemr0fmyxkvaksrzreh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1836, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1835", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "71.19", - "balance": "3.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1851, - "quantity": 9, - "cost": 7.91, - "product_key": "inventore", - "notes": "Quaerat corrupti eum quia eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1836, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1836, - "key": "avmoyvomfhvvqploybtq0xpjf8r2lqza", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1837, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1836", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-03", - "last_sent_date": null, - "due_date": "2020-04-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.96", - "balance": "4.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1852, - "quantity": 6, - "cost": 2.66, - "product_key": "perferendis", - "notes": "Nulla dolores qui voluptates qui eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1837, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1837, - "key": "k6eiwpdtcgux7rd6g2vldeefsfdznsfc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1838, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1837", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.94", - "balance": "18.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1853, - "quantity": 3, - "cost": 9.98, - "product_key": "autem", - "notes": "Iure iure consequatur asperiores totam facilis sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1838, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1838, - "key": "y0mst1qzcqdnefhn0hqi6siye5tr5g2k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1839, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1838", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-06", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.16", - "balance": "1.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1854, - "quantity": 6, - "cost": 1.36, - "product_key": "occaecati", - "notes": "In consequatur rem quae. Omnis qui officia dolore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1839, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1839, - "key": "xcbc01gg21mb0fnubmsxr2vtaawukcdx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1840, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1839", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.02", - "balance": "0.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1855, - "quantity": 1, - "cost": 1.02, - "product_key": "explicabo", - "notes": "Omnis mollitia dolorum provident mollitia eum tempore adipisci. Quae consectetur repellendus ea magni optio facilis. Natus quo quibusdam laborum ab vitae ea voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1840, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1840, - "key": "d926fxlrkqctiqxvjjlftrede30swg29", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1841, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1840", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-05-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.79", - "balance": "8.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1856, - "quantity": 1, - "cost": 9.79, - "product_key": "qui", - "notes": "Omnis facilis qui in reprehenderit incidunt dolore autem. Voluptas adipisci accusantium omnis. Consectetur vero nesciunt qui necessitatibus distinctio earum. Est sint sapiente mollitia rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1841, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1841, - "key": "xlnizr5ctgh1odxdxxccuaedxzycviur", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1842, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1841", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.44", - "balance": "41.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1857, - "quantity": 6, - "cost": 7.74, - "product_key": "consectetur", - "notes": "Delectus ut iure aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1842, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1842, - "key": "bydt1u3prw6davptw8aggppamnd0jykq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1843, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1842", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2019-12-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.68", - "balance": "8.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1858, - "quantity": 2, - "cost": 6.34, - "product_key": "laborum", - "notes": "Repellat et iure itaque impedit sit laborum. Animi aut rerum illo velit quos voluptas est amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:25.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1843, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1843, - "key": "6ty3oazq0zwztwzxwtbzj9ifwbzbgnwe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:25", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1844, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1843", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.83", - "balance": "0.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1859, - "quantity": 1, - "cost": 9.83, - "product_key": "totam", - "notes": "Aperiam facere voluptas cum. Natus ab modi a et quos. Rerum tenetur quia inventore non blanditiis repellendus. Aut ut cupiditate itaque corrupti ullam quia iusto nesciunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1844, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1844, - "key": "edhshlcq1qzhv33s7u55fwwz4iaj96rn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1845, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1844", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.68", - "balance": "6.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1860, - "quantity": 9, - "cost": 1.52, - "product_key": "pariatur", - "notes": "Non similique vel nihil. Consequatur est eum est et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1845, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1845, - "key": "kxorxytb8zhdurmatmparggkbeo9fbo0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1846, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1845", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "83.70", - "balance": "46.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1861, - "quantity": 10, - "cost": 8.37, - "product_key": "iure", - "notes": "Modi labore saepe nisi ad. Maiores eveniet libero possimus quod. Eveniet vel illo fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1846, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1846, - "key": "ykcypciyuauxypzj63edqyz10zbayuoa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1847, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1846", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.26", - "balance": "1.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1862, - "quantity": 3, - "cost": 1.42, - "product_key": "et", - "notes": "Nulla quod ad consequuntur unde sunt nihil aut. Dolor asperiores reprehenderit veritatis dicta similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1847, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1847, - "key": "go3rfiendnwesnpq1ci45edkwws65qic", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1848, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1847", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-20", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.64", - "balance": "11.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1863, - "quantity": 4, - "cost": 6.91, - "product_key": "minus", - "notes": "Cupiditate sit ipsam voluptates alias. Labore non sed consequatur quas eaque cum aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1848, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1848, - "key": "9godz9dmqzqkgzvoxqrbdn1tvoprhex0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1849, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1848", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-01", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.76", - "balance": "0.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1864, - "quantity": 1, - "cost": 1.76, - "product_key": "quod", - "notes": "Similique veritatis officia nisi tenetur porro. Hic aut molestias et sunt minima non fugiat. Quidem ut explicabo dignissimos tempora aut. Cupiditate sunt modi occaecati veritatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1849, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1849, - "key": "fgyogfd1luqn5o6dcj7y0f3d2ckilzh7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1850, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1849", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.07", - "balance": "6.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1865, - "quantity": 9, - "cost": 4.23, - "product_key": "et", - "notes": "Hic deleniti et corrupti fuga hic praesentium. Et sit laborum dolore deserunt. Optio sint quam hic et. Nemo ea qui sed consequatur odio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1850, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1850, - "key": "1te5go8c1uhjx59kojnkvw3o6nqnbzei", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1851, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1850", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-03-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.64", - "balance": "42.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1866, - "quantity": 6, - "cost": 8.44, - "product_key": "soluta", - "notes": "Non necessitatibus ipsum aliquam molestiae natus maiores sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1851, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1851, - "key": "1jnyqjipx7h0v4gzfgsytocsvh3xidow", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1852, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1851", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-21", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.98", - "balance": "0.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1867, - "quantity": 1, - "cost": 8.98, - "product_key": "architecto", - "notes": "Dicta ea impedit dolores repellendus sed vel natus consequatur. A sed libero non officiis. Expedita eum omnis vel illo asperiores quia officiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1852, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1852, - "key": "5mobx7wb4jjhlwgnzsbymaahx5d7dr1h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1853, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1852", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2019-12-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.86", - "balance": "8.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1868, - "quantity": 3, - "cost": 3.62, - "product_key": "et", - "notes": "Magni unde et magnam sed odit adipisci quidem. In ut sint ut occaecati officiis excepturi quidem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1853, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1853, - "key": "5tazfhxswlhye3aqp99wnoluxrmh2swx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1854, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1853", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.02", - "balance": "3.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1869, - "quantity": 1, - "cost": 6.02, - "product_key": "tempora", - "notes": "Et corrupti voluptate neque aperiam blanditiis. Et aut ut quia impedit assumenda expedita. Quisquam quis eos ea delectus blanditiis ut quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1854, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1854, - "key": "svuvxkcyxnnjkuay3pdkor7bw2qsbxu9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1855, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1854", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-04-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.56", - "balance": "15.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1870, - "quantity": 9, - "cost": 1.84, - "product_key": "ipsam", - "notes": "Qui officiis earum quos odit dolor sequi eos. Laborum amet culpa quia. Assumenda qui consequuntur et et id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1855, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1855, - "key": "5h6fcjdydxelolrcuyb5yez7klxhsyel", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1856, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1855", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-12", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.72", - "balance": "0.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1871, - "quantity": 4, - "cost": 9.43, - "product_key": "quia", - "notes": "Esse incidunt dolorem earum vel. Voluptatem laboriosam vel enim sit architecto deserunt sit. Ratione saepe possimus occaecati qui nihil quibusdam incidunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1856, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1856, - "key": "t1xbhyznb3czcjcgefzjbxnx7ju03rmn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1857, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1856", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.64", - "balance": "2.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1872, - "quantity": 8, - "cost": 1.83, - "product_key": "nulla", - "notes": "Iste rerum ipsum excepturi. Non nulla omnis debitis aliquid.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1857, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1857, - "key": "vph2zmnkqcgdmwajpsnf3nw6wjuy0jhp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1858, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1857", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.15", - "balance": "17.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1873, - "quantity": 7, - "cost": 7.45, - "product_key": "ut", - "notes": "Sequi vel delectus aut sed sed in. Sequi qui illo dolor nisi optio quo. Quia sint debitis ex odio asperiores deserunt aut et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1858, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1858, - "key": "i6r6l7jmr0ou7s4zxfrborfnb155z2qs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1859, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1858", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-27", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.06", - "balance": "0.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1874, - "quantity": 9, - "cost": 1.34, - "product_key": "enim", - "notes": "Ullam nihil molestiae facere. Sunt omnis tenetur in voluptate. Assumenda quod eius tempore blanditiis. Vel sit non et consequatur. Fuga dolorem ratione provident. Qui eos ullam officiis deleniti est atque molestias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1859, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1859, - "key": "ehe2wfcvup1hxkxsclkhjkyhedi6ldpe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1860, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1859", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-15", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.04", - "balance": "21.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1875, - "quantity": 4, - "cost": 6.76, - "product_key": "aliquam", - "notes": "Deleniti doloremque vero voluptatem enim ducimus necessitatibus. Fuga est sed numquam maxime.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1860, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1860, - "key": "4ij1s35ea3kouuyctjjkelbrlgoovrf1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1861, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1860", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-21", - "last_sent_date": null, - "due_date": "2020-06-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.68", - "balance": "24.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1876, - "quantity": 8, - "cost": 3.96, - "product_key": "natus", - "notes": "Delectus possimus excepturi quam aut. Alias dolores iure veritatis porro. Provident odit itaque inventore quia est nisi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1861, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1861, - "key": "64nihopctpuhcqhoamq6fynfktd2down", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1862, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1861", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-06-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.62", - "balance": "25.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1877, - "quantity": 7, - "cost": 8.66, - "product_key": "sit", - "notes": "Rerum eos a consectetur maxime. Dolores ut error expedita. Architecto sed quam similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1862, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1862, - "key": "5l5wbnspaikaxbvj6g7lmyt4sksehfgp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1863, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1862", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.41", - "balance": "4.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1878, - "quantity": 1, - "cost": 6.41, - "product_key": "sunt", - "notes": "Cupiditate et repellendus quia pariatur nulla. Quaerat vel fugiat non. Explicabo ipsum reiciendis doloremque error nesciunt dolorum eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:26.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1863, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1863, - "key": "cxosnd1aloqwiz2qoxeqhibxoin9vltv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:26", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1864, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1863", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.20", - "balance": "34.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1879, - "quantity": 10, - "cost": 5.92, - "product_key": "commodi", - "notes": "Sunt numquam cum rerum aperiam deleniti dolorem. Est vel nobis blanditiis corrupti aperiam assumenda. Cupiditate corporis expedita sit libero exercitationem quasi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1864, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1864, - "key": "a9rl3esgvjer0fqp4slljy8w2njcesfd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1865, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1864", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.80", - "balance": "32.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1880, - "quantity": 8, - "cost": 8.35, - "product_key": "qui", - "notes": "Ut minima voluptatem vel omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1865, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1865, - "key": "h3mfyjrv1t0kd4rvwqnf4g1bnhaezamg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1866, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1865", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.85", - "balance": "10.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1881, - "quantity": 5, - "cost": 2.57, - "product_key": "odio", - "notes": "Possimus necessitatibus ad sunt laborum consequatur culpa. Voluptas autem ut libero vel. Fugit laudantium quia sit debitis suscipit. Eos inventore omnis aliquam fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1866, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1866, - "key": "u0qpubp3wuq19mxtuawabl7wpyjlphtw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1867, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1866", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-11", - "last_sent_date": null, - "due_date": "2020-02-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.78", - "balance": "0.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1882, - "quantity": 2, - "cost": 1.89, - "product_key": "est", - "notes": "Omnis repudiandae iusto corrupti sunt nostrum. Expedita ad consequatur repudiandae. Sit minus aliquid distinctio soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1867, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1867, - "key": "fuxjdmqb3qs4m5jjkugumoweajvjri6j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1868, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1867", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.55", - "balance": "15.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1883, - "quantity": 3, - "cost": 5.85, - "product_key": "maiores", - "notes": "Distinctio et explicabo non veritatis quae. Qui iure est quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1868, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1868, - "key": "ztozxev1k5znnj2b1hsis7ypzjkuyknt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1869, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1868", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.82", - "balance": "24.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1884, - "quantity": 6, - "cost": 8.47, - "product_key": "est", - "notes": "Nisi iure voluptas vel aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1869, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1869, - "key": "aelf7wphk3xambjjrwyr1jiljgzvw0aq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1870, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1869", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-25", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.98", - "balance": "3.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1885, - "quantity": 3, - "cost": 3.66, - "product_key": "odit", - "notes": "Reprehenderit non id et delectus rem velit dolorem voluptate. Tempora consequatur est ex dolor veniam autem veniam. Reiciendis deleniti porro hic dolorem quis. Incidunt sit numquam repellendus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1870, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1870, - "key": "tv09wowotvbrwvmzathfxyl0pdebopsu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1871, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1870", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2019-12-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.00", - "balance": "11.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1886, - "quantity": 8, - "cost": 5, - "product_key": "dolore", - "notes": "Earum impedit voluptas consequatur ipsum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1871, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1871, - "key": "ystouglw9zpflmeuet8ze04atwjovk8g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1872, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1871", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-04-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.55", - "balance": "23.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1887, - "quantity": 5, - "cost": 6.51, - "product_key": "soluta", - "notes": "Nemo illum ut qui autem voluptas maxime. Nostrum aut veniam aliquid molestias est. Aperiam dicta et in occaecati ab.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1872, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1872, - "key": "rqbro3k8l84xuelpcy0tmmgj84z27u0v", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1873, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1872", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.46", - "balance": "3.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1888, - "quantity": 3, - "cost": 3.82, - "product_key": "impedit", - "notes": "Vel occaecati recusandae est fugiat deserunt velit. Cumque tempora illo voluptas aliquam temporibus eligendi deserunt. Corporis qui aut quos quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1873, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1873, - "key": "uspsvuilvhyfyrts7xmpo7mjtid4eqwc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1874, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1873", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-15", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "74.72", - "balance": "62.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1889, - "quantity": 8, - "cost": 9.34, - "product_key": "qui", - "notes": "Est corporis aliquid id quas ut est corporis totam. Sit minus magni a esse qui et. Maxime ea voluptatum ipsam dolorum voluptatem voluptates nostrum sed. Voluptas ducimus qui numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1874, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1874, - "key": "z2s8eyetm8bcpxks3xgbo7qlyt1gszks", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1875, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1874", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.08", - "balance": "19.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1890, - "quantity": 7, - "cost": 4.44, - "product_key": "molestiae", - "notes": "Provident quo et perspiciatis ullam beatae sed odio. Non dolor similique saepe cupiditate. Asperiores est debitis itaque corporis sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1875, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1875, - "key": "bh4ozy82l18q3k5o5trilo7bvgxg5rqp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1876, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1875", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.12", - "balance": "5.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1891, - "quantity": 2, - "cost": 9.06, - "product_key": "ut", - "notes": "Excepturi pariatur non sunt unde dolore consequatur suscipit. In qui enim officiis aspernatur sit similique ab qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1876, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1876, - "key": "qpd67qle4mygegdzlfart6teq16k0uey", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1877, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1876", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-07", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.65", - "balance": "30.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1892, - "quantity": 5, - "cost": 7.53, - "product_key": "voluptatum", - "notes": "Architecto sapiente ab quia ullam alias temporibus quas omnis. Quidem neque corporis est et qui eius est qui. Ipsum et alias saepe sint totam. Culpa fugiat aut corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1877, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1877, - "key": "gi250n90xtgviofhdpxwiyzjz4sethpp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1878, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1877", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-04-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.00", - "balance": "24.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1893, - "quantity": 10, - "cost": 6.3, - "product_key": "qui", - "notes": "Et quos dolor enim non praesentium delectus ea. Molestiae non molestiae consequuntur quia voluptate. Commodi earum facilis recusandae aut. Perspiciatis saepe itaque a dolore amet. Perspiciatis fugiat omnis quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1878, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1878, - "key": "rjjwy61ut6wxob1fvgrqsrudy2b4o000", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1879, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1878", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": null, - "due_date": "2020-04-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.80", - "balance": "1.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1894, - "quantity": 8, - "cost": 4.35, - "product_key": "aliquam", - "notes": "Ratione dolor quasi voluptatem et. Accusamus ut vero voluptatem asperiores facere.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1879, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1879, - "key": "cprsyftfcpjgxw86besi4kgmqbksyjtl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1880, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1879", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.42", - "balance": "9.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1895, - "quantity": 3, - "cost": 6.14, - "product_key": "accusamus", - "notes": "Blanditiis nemo veritatis quasi quisquam architecto qui nisi. Mollitia sint quibusdam odio nam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1880, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1880, - "key": "gpqtvmceosrsh11zwv9crw27q6gl9ehd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1881, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1880", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-13", - "last_sent_date": null, - "due_date": "2020-06-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.52", - "balance": "6.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1896, - "quantity": 6, - "cost": 3.92, - "product_key": "quas", - "notes": "Vitae magni illum iusto et consequatur occaecati maiores minima.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1881, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1881, - "key": "xhjp6tossja26wtdmecgrbtkzrhueu9s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1882, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1881", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.80", - "balance": "10.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1897, - "quantity": 4, - "cost": 9.45, - "product_key": "rerum", - "notes": "Sed ullam distinctio eius fugiat. Sed exercitationem et quidem voluptatem. Voluptatibus aut ut porro animi consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1882, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1882, - "key": "lc4bido6s5bppxamyh7bbomgqvpetl6f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1883, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1882", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-29", - "last_sent_date": null, - "due_date": "2020-03-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.75", - "balance": "11.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1898, - "quantity": 9, - "cost": 6.75, - "product_key": "quisquam", - "notes": "Quis recusandae culpa facere molestias placeat non voluptatibus. Deserunt asperiores aliquam tenetur in dolor. Libero neque commodi nemo quasi. Eius quis doloribus excepturi delectus rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:27.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1883, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1883, - "key": "rvowjo1khex1pbf4f4p37lvxmciwirte", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:27", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1884, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1883", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-11", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.88", - "balance": "13.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1899, - "quantity": 4, - "cost": 3.47, - "product_key": "vero", - "notes": "Dolores qui veritatis voluptates quod repellendus eius. Sapiente magni nihil cumque dolor. Voluptatem esse sequi expedita iusto pariatur eos. Inventore ullam sunt quo soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1884, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1884, - "key": "ickf6d3pnntc5cqzjs2slgteuvjumdap", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1885, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1884", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.82", - "balance": "5.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1900, - "quantity": 1, - "cost": 5.82, - "product_key": "reiciendis", - "notes": "Molestiae est libero est harum. Voluptatum cumque magnam sequi officiis et ab et. Ipsa modi minima dolorem ipsam qui sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1885, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1885, - "key": "fm0l84hlyqnke0e9rzofenor6s66x2gq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1886, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1885", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-01-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "83.20", - "balance": "77.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1901, - "quantity": 10, - "cost": 8.32, - "product_key": "sit", - "notes": "Ex molestiae eaque et ipsa qui nobis ut. Nesciunt adipisci dolorem voluptatibus vel deleniti cumque cum voluptatibus. Quas consequuntur perspiciatis ab dolorum. Est officia voluptate sapiente nostrum quia et ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1886, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1886, - "key": "jqlldv7qxhcxwopibw77gc4o7izwjpp9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1887, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1886", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-02-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.84", - "balance": "3.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1902, - "quantity": 4, - "cost": 5.71, - "product_key": "suscipit", - "notes": "Doloribus aut quis ullam culpa consequatur voluptas. Architecto dolorem quasi corporis est deserunt velit. Nisi quo aut culpa doloremque voluptas nostrum dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1887, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1887, - "key": "yx9dadftsbh9yjp6ljfgxgr8hgijtbgv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1888, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1887", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-26", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.16", - "balance": "26.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1903, - "quantity": 4, - "cost": 7.04, - "product_key": "qui", - "notes": "Et veritatis sit voluptatem perspiciatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1888, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1888, - "key": "tuhgwdmswggeymvftgo1lx7nfiifxnvy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1889, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1888", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.47", - "balance": "9.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1904, - "quantity": 3, - "cost": 4.49, - "product_key": "aut", - "notes": "Qui est ut quidem et molestiae sint eligendi. Illum velit consectetur minima. Unde officiis voluptatibus qui qui perferendis. Voluptate quisquam eius enim ullam molestias numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1889, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1889, - "key": "x0zzp7g4vgopmb1q17xaqcnuifmjt5fu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1890, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1889", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-27", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.88", - "balance": "36.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1905, - "quantity": 4, - "cost": 9.22, - "product_key": "repellat", - "notes": "Doloremque cum ea aut harum rerum aut debitis neque. Ex culpa quos et sed eos vel. Magnam suscipit ex aliquam et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1890, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1890, - "key": "kewygp210sq62higlrhhpof2fenurfjc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1891, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1890", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-13", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.38", - "balance": "10.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1906, - "quantity": 2, - "cost": 6.19, - "product_key": "vel", - "notes": "Voluptas sunt et exercitationem beatae corrupti hic sequi. Odit quod dicta et at qui. Eum fuga nihil et optio aliquam cupiditate quis. Quia rerum modi sunt accusamus modi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1891, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1891, - "key": "997jw5nwy5cedghoxzshwrftn18kq3ib", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1892, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1891", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.32", - "balance": "15.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1907, - "quantity": 6, - "cost": 9.22, - "product_key": "ipsam", - "notes": "Ducimus illo reiciendis ratione et sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1892, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1892, - "key": "zargnjeirudjump4pdyxq4nwqionqglx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1893, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1892", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.10", - "balance": "26.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1908, - "quantity": 10, - "cost": 6.11, - "product_key": "inventore", - "notes": "Minus nam velit earum ipsum occaecati facilis. In quia similique et enim. Architecto sint et quis occaecati odit non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1893, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1893, - "key": "dlopvdf0emypw2wqd9y0fxeo3knxc28g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1894, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1893", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-02-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.65", - "balance": "1.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1909, - "quantity": 1, - "cost": 1.65, - "product_key": "cumque", - "notes": "Eum amet eveniet facilis recusandae voluptatem quis. Nam sed quia maiores doloremque eos aspernatur velit dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1894, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1894, - "key": "ljqes8ynddgzxyrbuyq3a2evmbql9mqs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1895, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1894", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-27", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.55", - "balance": "6.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1910, - "quantity": 1, - "cost": 7.55, - "product_key": "consequatur", - "notes": "Ipsa eos occaecati amet. Cumque et reiciendis voluptatum esse quia. Ipsa dolores sit pariatur odio. Unde molestiae tempora autem perspiciatis. Voluptates quibusdam eum quia quia rerum eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1895, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1895, - "key": "bxccizgxujwk0bupielfwu9sbswcjohc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1896, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1895", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.68", - "balance": "6.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1911, - "quantity": 4, - "cost": 2.17, - "product_key": "deleniti", - "notes": "Ut explicabo voluptas dolores hic rerum dicta. Et fugit in mollitia optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1896, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1896, - "key": "oilt3awqliddrdnoqttllzoaigyqqgvd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1897, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1896", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-03-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.60", - "balance": "11.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1912, - "quantity": 10, - "cost": 1.46, - "product_key": "laboriosam", - "notes": "Eaque quia asperiores quisquam qui. Saepe at non aut odit. Esse dignissimos deserunt ipsum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1897, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1897, - "key": "copl3ogvthibwi2ou0sqkxr9bnlixr4v", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1898, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1897", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-26", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.30", - "balance": "19.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1913, - "quantity": 10, - "cost": 4.03, - "product_key": "quibusdam", - "notes": "Nulla quis quaerat dolores qui reprehenderit non. Ab optio sed molestias nostrum et tempore. Temporibus rerum asperiores doloribus itaque enim.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1898, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1898, - "key": "4sbmj7salc6zgcmxlzh1amuttopzp3ot", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1899, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1898", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-05", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.90", - "balance": "1.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1914, - "quantity": 5, - "cost": 4.38, - "product_key": "consequatur", - "notes": "Sed doloremque debitis qui nam excepturi perspiciatis. Fuga ut maxime aut quia molestias quia sequi quos. Placeat ratione repudiandae quibusdam architecto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1899, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1899, - "key": "cdgcpkeirdg4ciheqtgpovllej6ndf2l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1900, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1899", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.20", - "balance": "1.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1915, - "quantity": 1, - "cost": 6.2, - "product_key": "excepturi", - "notes": "Odio dicta qui sequi autem. Odio vel consequatur quo maxime et voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1900, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1900, - "key": "atzna2mvv5nanf4eqqczlujrxg0zta3e", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1901, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1900", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-06", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.28", - "balance": "10.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1916, - "quantity": 4, - "cost": 7.07, - "product_key": "aut", - "notes": "Ipsum ut eos consequuntur adipisci a. Exercitationem recusandae animi vitae id iusto aliquam molestias. Nesciunt ut maxime explicabo tempore ad. Est ut cumque reprehenderit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1901, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1901, - "key": "khoqkpusr9sd5z7sznuvvfacutorrkat", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1902, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1901", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.70", - "balance": "5.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1917, - "quantity": 10, - "cost": 3.97, - "product_key": "suscipit", - "notes": "Dolores odit aut asperiores consequuntur. Distinctio dolor ut et. Est amet quae voluptatem voluptatem adipisci porro ea. Sit et doloribus dolores reprehenderit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1902, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1902, - "key": "ygp1ln9sjoxybxbt6j8klnrdz5bznac2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1903, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1902", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "80.01", - "balance": "6.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1918, - "quantity": 9, - "cost": 8.89, - "product_key": "aut", - "notes": "Minima animi et accusantium eius optio voluptate vel. Enim corrupti rerum nemo architecto. Enim facere architecto est in qui explicabo consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:28.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1903, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1903, - "key": "gtudkjqnopth52e0xwvltpyezoh9fbnn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:28", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1904, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1903", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.29", - "balance": "1.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1919, - "quantity": 1, - "cost": 6.29, - "product_key": "ut", - "notes": "Repellendus est aut sit. Earum a consequatur illo doloremque accusantium iure itaque corrupti. Voluptatem suscipit a in id quasi. Cum sit suscipit consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1904, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1904, - "key": "niydtt6puo9kmxfkxmyti4bytqzekudc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1905, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1904", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-30", - "last_sent_date": null, - "due_date": "2020-03-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "81.80", - "balance": "70.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1920, - "quantity": 10, - "cost": 8.18, - "product_key": "assumenda", - "notes": "Exercitationem aut quibusdam sed sed et eum architecto. Quasi repudiandae necessitatibus eos soluta culpa ipsa exercitationem. Modi et eum cumque id voluptas voluptates et. Sint qui alias aut et minus eveniet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1905, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1905, - "key": "yxmhs2l05vg33qnjtjrullnetgzjft8c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1906, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1905", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-15", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.93", - "balance": "48.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1921, - "quantity": 9, - "cost": 5.77, - "product_key": "adipisci", - "notes": "Dolor dolorum provident voluptates alias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1906, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1906, - "key": "wqba3rrixcafvbcq1j0mxmmbojx3load", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1907, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1906", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.56", - "balance": "3.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1922, - "quantity": 4, - "cost": 9.39, - "product_key": "et", - "notes": "Non culpa ullam tempora explicabo ut in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1907, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1907, - "key": "s1p4y7blvovr5bkka0amxvlxlukjshg6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1908, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1907", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.32", - "balance": "7.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1923, - "quantity": 8, - "cost": 5.04, - "product_key": "ut", - "notes": "Eius sit totam dolor aliquam qui dolorem. Sed dolorem et iusto voluptas quaerat. Excepturi recusandae explicabo quia veritatis natus. Consectetur voluptate voluptas veniam architecto at magni.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1908, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1908, - "key": "wbd04trfckiy2fil32oohf8dsmlnkroe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1909, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1908", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.98", - "balance": "4.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1924, - "quantity": 1, - "cost": 4.98, - "product_key": "et", - "notes": "Quaerat repudiandae rem a perspiciatis quo iste. Sunt voluptates dolorem eum ut mollitia. Ut natus sint harum. Nobis earum minima aliquam quia fugit eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1909, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1909, - "key": "nw2eib1h0ylg6cujkljuovyllxux0yyt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1910, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1909", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.33", - "balance": "21.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1925, - "quantity": 9, - "cost": 2.37, - "product_key": "excepturi", - "notes": "Asperiores consequuntur eligendi et laborum quod pariatur vel. Eligendi repudiandae maxime atque impedit quas magnam beatae. Assumenda vero ullam est et iste illum deleniti. Ullam voluptatibus libero omnis fuga. Enim aliquid qui a numquam itaque id iure odit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1910, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1910, - "key": "j11gd7rtzcwdv1gprjryuof9kxnoiduo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1911, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "1910", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.30", - "balance": "0.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1926, - "quantity": 9, - "cost": 4.7, - "product_key": "fugit", - "notes": "Fuga id autem hic culpa eos numquam. Tempore et labore non molestias. Sed qui provident et non doloribus id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1911, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "invoice_id": 1911, - "key": "vuw2m4sgg1b2vhq5t5aoamhcuuhb3lfy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2012, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2011", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-20", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.00", - "balance": "7.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2027, - "quantity": 6, - "cost": 4, - "product_key": "id", - "notes": "Et et iste quis quaerat ipsa voluptatem magnam. Quisquam repellat quis velit quo quis qui ut. Dignissimos tenetur debitis vero similique dolorem enim aut vel. Sequi praesentium ullam qui dolor. Sapiente vel omnis aut nihil suscipit. Nihil quia est officia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2012, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2012, - "key": "oeck29wccis36gj3c8ie04hbw24ohxqg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2013, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2012", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.60", - "balance": "2.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2028, - "quantity": 6, - "cost": 5.6, + "cost": 5.46, "product_key": "labore", - "notes": "Deserunt culpa soluta ipsa aut. Ea animi nesciunt odio sed aspernatur. Corporis voluptates quidem est molestiae facere aut.", + "notes": "Recusandae et fugiat aperiam enim sit nihil. Molestias deleniti eum veritatis assumenda sint porro doloremque. Amet sit numquam rem mollitia iusto.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:31.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -81488,50 +5919,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2013, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2013, - "key": "pelin5bzm8k4yax0n4q0gfdyrgf2bctg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2014, - "client_id": 23, + "id": 10367, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 5, + "status_id": 3, "design_id": 1, - "number": "2013", + "number": "0010", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2019-12-09", + "date": "2020-07-01", "last_sent_date": null, - "due_date": "2020-02-20", + "due_date": "2020-08-09", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -81540,98 +5950,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "39.45", - "balance": "14.87", - "partial": null, + "amount": "73.36", + "balance": "32.32", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2029, - "quantity": 5, - "cost": 7.89, - "product_key": "nobis", - "notes": "Ex dolorum iste temporibus in veniam. Sit consequatur qui explicabo qui nemo. Et aut at sunt itaque sint sint iure qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2014, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2014, - "key": "ipeffwx9okls4cqppeszkuzoryuw9c9r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2015, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2014", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.12", - "balance": "15.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2030, - "quantity": 4, - "cost": 6.53, + "id": 10367, + "quantity": 8, + "cost": 9.17, "product_key": "et", - "notes": "Esse adipisci et velit. Odio architecto ad nihil quidem mollitia. Voluptas reprehenderit laudantium consequuntur ratione.", + "notes": "Porro qui sed numquam. Rerum expedita sint ducimus placeat sed ex.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:31.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -81640,4154 +5978,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2015, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2015, - "key": "8yduj1j2fccnxzwjhzij3k1prlce4m2j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2016, - "client_id": 23, + "id": 10368, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 5, + "status_id": 3, "design_id": 1, - "number": "2015", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "84.42", - "balance": "72.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2031, - "quantity": 9, - "cost": 9.38, - "product_key": "velit", - "notes": "Dolor autem et autem quis ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2016, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2016, - "key": "hqexedoxow8vqc1tdfaoxuiueppndo56", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2017, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2016", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-02", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.00", - "balance": "19.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2032, - "quantity": 8, - "cost": 5.75, - "product_key": "necessitatibus", - "notes": "Et sit incidunt possimus eius. Deserunt dignissimos repudiandae deserunt aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2017, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2017, - "key": "bakscw7qkrzsfdjaqay2juxn3czjasog", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2018, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2017", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-25", - "last_sent_date": null, - "due_date": "2020-04-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.36", - "balance": "19.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2033, - "quantity": 6, - "cost": 4.56, - "product_key": "hic", - "notes": "Aut voluptatem sit repellat cupiditate. Ipsum maiores autem quia quis. Incidunt error ut deserunt iure quidem enim ut quo. Dolor ut itaque minima pariatur voluptas aut eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2018, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2018, - "key": "n3arbxi1zczsf2qynjxwi1frf1lw8uhb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2019, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2018", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.96", - "balance": "28.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2034, - "quantity": 4, - "cost": 9.74, - "product_key": "aut", - "notes": "Animi vero quis voluptatibus et. Occaecati enim sit quod reiciendis libero. Nulla et quas odit eius voluptatibus maiores et. Officiis libero rerum et et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2019, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2019, - "key": "60qwq6c6gwa8uev6xudfaszsoumhgkvq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2020, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2019", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-04-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.08", - "balance": "6.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2035, - "quantity": 4, - "cost": 5.52, - "product_key": "molestias", - "notes": "Est est eum temporibus sit possimus. Ex sunt nostrum nesciunt quibusdam iure ipsum. Et est nulla ipsum esse magnam. Quia sit ipsam quo voluptas odio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2020, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2020, - "key": "fpdwurhz0kd1ondtgejw9nq61403diju", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2021, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2020", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.74", - "balance": "27.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2036, - "quantity": 9, - "cost": 6.86, - "product_key": "ut", - "notes": "Explicabo et unde facilis. Quia nulla sequi quibusdam. Labore in voluptatibus ducimus doloribus sunt beatae facere non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2021, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2021, - "key": "zowjzkd6qawntmijjr0qelmylk2tzhuy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2022, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2021", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-22", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.16", - "balance": "21.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2037, - "quantity": 4, - "cost": 9.29, - "product_key": "corporis", - "notes": "Consectetur dolores sed sed consequatur odio maiores et. Nihil nobis rem sunt. Et aut facere architecto atque eius et ut. Et odit qui nihil omnis officiis. Magni dolorum voluptates dolores numquam occaecati voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2022, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2022, - "key": "acqjqjjanmcrek9hzltyawjw7eqmsqyv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2023, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2022", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.16", - "balance": "2.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2038, - "quantity": 8, - "cost": 2.02, - "product_key": "sint", - "notes": "Unde repellat in quasi praesentium eum possimus recusandae. Quidem temporibus nulla provident molestias modi sit dolorem. Voluptatum similique est alias totam atque. Aut vero qui consequatur aut occaecati.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2023, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2023, - "key": "6tgadrx4zepja1rjcjymyihakzkxtyph", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2024, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2023", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.00", - "balance": "8.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2039, - "quantity": 5, - "cost": 8.4, - "product_key": "totam", - "notes": "Omnis nulla libero quasi ut illo. Cumque perspiciatis ipsum quasi nihil ut. Quo omnis dolorem neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2024, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2024, - "key": "yyc6yrsuukv811gc8jjaffrhrzluebgh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2025, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2024", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-06", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.60", - "balance": "5.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2040, - "quantity": 2, - "cost": 2.8, - "product_key": "nisi", - "notes": "Sed est ut unde aut dolorum soluta corporis. Dignissimos fugit dolores fugiat aperiam. Assumenda perferendis voluptatibus similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2025, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2025, - "key": "bkbhfmssgn0a0dus0hiscq5zinagutvb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2026, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2025", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.70", - "balance": "4.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2041, - "quantity": 3, - "cost": 1.9, - "product_key": "aut", - "notes": "Quo consequatur fugiat sed reprehenderit. Numquam at nemo beatae aperiam deserunt. Voluptate quibusdam quae iusto laborum similique ipsum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2026, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2026, - "key": "mg3wxmjhbvbqnopgkysshifh2ailw74c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2027, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2026", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.80", - "balance": "20.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2042, - "quantity": 4, - "cost": 9.95, - "product_key": "et", - "notes": "Consequatur natus quas rerum magnam. Ex aut qui similique quis in et delectus non. Non sed culpa fugit aut vero voluptatem. Iste consequatur soluta est distinctio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2027, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2027, - "key": "4jfg0ru5wjmpdkzgh2wcfowvq7tkdssk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2028, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2027", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-12", - "last_sent_date": null, - "due_date": "2020-06-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.04", - "balance": "2.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2043, - "quantity": 3, - "cost": 1.68, - "product_key": "dolore", - "notes": "Aliquid quia aliquam dicta porro distinctio id. Tempora neque voluptatem magnam est temporibus nam cum. Alias cumque quaerat consequatur rerum ad labore sint. Esse illum facere laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2028, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2028, - "key": "uy6iidqti7wztbdahjasqavf9dblgb7g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2029, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2028", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-02-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "83.43", - "balance": "68.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2044, - "quantity": 9, - "cost": 9.27, - "product_key": "corrupti", - "notes": "Nihil autem quod a sint. Voluptas sed in maxime veritatis tempore id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2029, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2029, - "key": "txg6zfrlv1xtemqd3ht5jt6ce55lvgnc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2030, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2029", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-13", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.56", - "balance": "2.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2045, - "quantity": 1, - "cost": 6.56, - "product_key": "recusandae", - "notes": "Ut velit est qui. Ducimus odio et qui incidunt aut. Voluptatem ut cum quia qui et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2030, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2030, - "key": "sp9ub8vdbjzvljl1omqbmlkx8r9xthej", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2031, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2030", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-26", - "last_sent_date": null, - "due_date": "2020-02-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.14", - "balance": "5.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2046, - "quantity": 6, - "cost": 1.19, - "product_key": "ut", - "notes": "Quasi in vel consectetur facilis deserunt. Consequatur voluptas eius quis fugiat voluptatem ut maiores. Non eaque animi quibusdam pariatur modi sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2031, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2031, - "key": "ykhp2d0z1qajoaldjg0jwrjzuf0npelz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2032, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2031", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.46", - "balance": "3.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2047, - "quantity": 2, - "cost": 5.23, - "product_key": "explicabo", - "notes": "Vitae totam enim iste. Reprehenderit ea exercitationem molestiae odio nemo error iusto. Fuga ea corrupti nesciunt dolorem officiis. Nostrum quis quo eaque debitis autem modi voluptatem et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2032, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2032, - "key": "nokwhaotizddgrm5zqrxjzde0n4pzbrs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2033, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2032", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.52", - "balance": "8.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2048, - "quantity": 9, - "cost": 1.28, - "product_key": "quis", - "notes": "Minus assumenda nulla reiciendis qui officiis quia. Commodi dolores repellat sint quos sed aliquid et. Assumenda corrupti similique qui aut ea hic ut repellendus. Nobis et accusantium rem expedita doloribus eveniet omnis sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2033, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2033, - "key": "lriwmprplvabmutntzbzacosgolpb1j1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2034, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2033", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.74", - "balance": "16.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2049, - "quantity": 2, - "cost": 9.87, - "product_key": "quasi", - "notes": "Saepe laborum dolores eaque fuga aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2034, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2034, - "key": "cqsjtcmtsipjlyuzsxtjak3ikybugrr5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2035, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2034", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-20", - "last_sent_date": null, - "due_date": "2020-05-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.00", - "balance": "2.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2050, - "quantity": 10, - "cost": 4.1, - "product_key": "aut", - "notes": "Aut doloremque explicabo incidunt illo. Eius sed unde optio eum dolorem vero porro. Tenetur ipsam aperiam quo neque nobis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2035, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2035, - "key": "funs4vqoqzspsd2xwagxurnn08vnr8zv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2036, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2035", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-19", - "last_sent_date": null, - "due_date": "2020-03-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.12", - "balance": "7.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2051, - "quantity": 6, - "cost": 2.02, - "product_key": "sit", - "notes": "Fugiat natus nulla perferendis veniam officia. Libero nobis eum natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2036, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2036, - "key": "lnmqlyt4orgjuvrawkxbj4sbmfhfubxm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2037, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2036", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-01-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.02", - "balance": "11.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2052, - "quantity": 2, - "cost": 7.51, - "product_key": "similique", - "notes": "Nobis quia dolor fugit. Sunt nulla sapiente eum sunt voluptatibus ea necessitatibus. Vel voluptates et aut mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2037, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2037, - "key": "gxqgxl90foskwpso20irvnttqs66mgq9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2038, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2037", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.60", - "balance": "11.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2053, - "quantity": 10, - "cost": 1.26, - "product_key": "aut", - "notes": "Quia dignissimos expedita rem. Beatae ut labore adipisci et expedita nihil. Vitae natus est sint quibusdam debitis rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2038, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2038, - "key": "ooxqxtu0eibun7oj4zyzwez6ns8mzluc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2039, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2038", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-02-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.36", - "balance": "48.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2054, - "quantity": 8, - "cost": 7.17, - "product_key": "qui", - "notes": "Molestias ut accusantium commodi quia praesentium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2039, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2039, - "key": "lnsa9ofz8qdpcbjodhq2vbcj24ydb7qu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2040, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2039", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-03-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.77", - "balance": "32.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2055, - "quantity": 9, - "cost": 5.53, - "product_key": "quas", - "notes": "Nam nihil accusamus odio eaque omnis facere consequatur. Dicta reiciendis perferendis quam corporis odio ad nesciunt. Numquam est consectetur et velit nihil error illum dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2040, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2040, - "key": "59mqdxqbclypmcru5ctdu3muftvrmlyd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2041, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2040", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-12", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.06", - "balance": "54.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2056, - "quantity": 7, - "cost": 8.58, - "product_key": "aut", - "notes": "Quia et ratione iusto sed molestiae magni culpa. Fugit asperiores voluptatum mollitia eos quia autem. Dolorem quia sed doloribus ea sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2041, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2041, - "key": "fw1gtnflszyioptn9otodfkpffsvuqbs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2042, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2041", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-17", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.72", - "balance": "19.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2057, - "quantity": 6, - "cost": 7.62, - "product_key": "consectetur", - "notes": "Nam est eius adipisci qui molestiae ea autem temporibus. Error consectetur voluptate quia architecto. Et quo ab dignissimos aliquid.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2042, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2042, - "key": "kvy67cudpshs1iolyexj9kpdj93cobww", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2043, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2042", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-06", - "last_sent_date": null, - "due_date": "2020-02-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.52", - "balance": "20.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2058, - "quantity": 4, - "cost": 7.13, - "product_key": "sunt", - "notes": "Velit cum placeat labore accusamus ut repellendus culpa. Provident illo aliquid molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2043, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2043, - "key": "jwjy0ewlrh7pkjraqt8vrhuodemshcaq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2044, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2043", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-22", - "last_sent_date": null, - "due_date": "2020-04-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.97", - "balance": "9.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2059, - "quantity": 3, - "cost": 8.99, - "product_key": "nesciunt", - "notes": "Fugiat suscipit esse ea explicabo et est. Repudiandae dolore iste magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2044, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2044, - "key": "sb13z6lk27mshsqwaohr2t5nbof9xpfs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2045, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2044", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.50", - "balance": "50.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2060, - "quantity": 10, - "cost": 5.55, - "product_key": "in", - "notes": "Et illo vitae rerum et. Cum nesciunt dicta eveniet delectus animi facilis. Velit voluptatibus alias natus aut consectetur. Aut eum ut at reprehenderit aperiam ex ipsam vitae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2045, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2045, - "key": "b06l9msbbuwtn30bt5jymdmjbzwy5wjr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2046, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2045", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2019-12-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.04", - "balance": "22.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2061, - "quantity": 7, - "cost": 3.72, - "product_key": "natus", - "notes": "Qui quia sit voluptas dolorem repudiandae et assumenda. Harum earum omnis minima voluptatem aspernatur rerum. Nesciunt optio hic eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2046, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2046, - "key": "7zowsgraz1nxac8q1estykztidprd2zu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2047, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2046", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-28", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.63", - "balance": "5.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2062, - "quantity": 7, - "cost": 5.09, - "product_key": "rerum", - "notes": "Officiis ea est omnis est. Atque minus ipsa hic commodi reprehenderit at quam repellat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2047, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2047, - "key": "wcedl3x1kbsskmokbjwpg8st9yc8h8km", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2048, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2047", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.02", - "balance": "36.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2063, - "quantity": 9, - "cost": 4.78, - "product_key": "possimus", - "notes": "In placeat ab autem. Voluptas eius eum exercitationem et et. Culpa hic omnis eum harum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2048, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2048, - "key": "vbqqfhbcndngyizejdgrh6dhxndqo5qi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2049, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2048", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-21", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.20", - "balance": "13.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2064, - "quantity": 10, - "cost": 1.72, - "product_key": "repudiandae", - "notes": "Fugiat doloribus enim deleniti amet similique sint. Consequuntur hic et fugiat enim officia at.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2049, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2049, - "key": "juurbracnjnhoasjr0kxifmauwwxs8za", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2050, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2049", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.16", - "balance": "13.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2065, - "quantity": 8, - "cost": 3.52, - "product_key": "nam", - "notes": "Temporibus dignissimos ea ut quia voluptas ut voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2050, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2050, - "key": "wcadzrvctxyb6lp2dewpr3yty6rqqbxs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2051, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2050", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.20", - "balance": "9.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2066, - "quantity": 2, - "cost": 7.6, - "product_key": "ut", - "notes": "Doloremque nulla et quo unde sapiente atque sint. Sit rerum quo consequatur aut. Eos et sunt corrupti deserunt voluptatem cum. Eum velit aut qui rerum odit sint laudantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2051, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2051, - "key": "gqzpxdlkmbaeuiz1gzubairdwvnnblr8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2052, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2051", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.84", - "balance": "9.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2067, - "quantity": 6, - "cost": 3.64, - "product_key": "labore", - "notes": "Velit eos cupiditate mollitia vel. Eos laboriosam ut illo repudiandae explicabo. Saepe error aut inventore sed quis quia qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2052, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2052, - "key": "7tlhyacn35i3sxjoesnb7otgkluban5n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2053, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2052", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.11", - "balance": "0.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2068, - "quantity": 9, - "cost": 4.79, - "product_key": "aut", - "notes": "Quis molestias a saepe voluptates alias enim autem. Culpa odit voluptas molestiae sunt praesentium et. Qui eligendi perspiciatis voluptatem veritatis sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2053, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2053, - "key": "g4m6jpdqj7zlr9lqhrihmyxzdqcoxxi4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2054, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2053", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.20", - "balance": "4.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2069, - "quantity": 4, - "cost": 2.3, - "product_key": "maxime", - "notes": "Delectus laudantium tempora sit tenetur omnis. Porro quod excepturi voluptates debitis. Ullam blanditiis qui ut dicta consequuntur quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2054, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2054, - "key": "2icih5anmjo7wcadwdozcl1rcwkjvubf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2055, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2054", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.30", - "balance": "0.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2070, - "quantity": 1, - "cost": 9.3, - "product_key": "hic", - "notes": "Sapiente quas sit quo voluptas beatae aliquid. Reprehenderit reprehenderit cumque vitae quas. Sint sapiente est dolorum itaque accusantium totam. Mollitia doloremque modi necessitatibus at.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2055, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2055, - "key": "cxksf77wlxbbdokei6lpr7c0x6qxvtba", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2056, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2055", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.96", - "balance": "8.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2071, - "quantity": 2, - "cost": 9.98, - "product_key": "qui", - "notes": "Fuga aut voluptatibus similique. Quasi dolor distinctio quae molestias laboriosam. Ratione tempora aliquam dolorem molestiae et nam impedit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2056, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2056, - "key": "4r5jszdci4r14ydydotmlfuapwxyvfm8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2057, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2056", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-04-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.68", - "balance": "13.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2072, - "quantity": 2, - "cost": 9.34, - "product_key": "adipisci", - "notes": "Facere deleniti maiores consequatur vel. Esse porro nam non id amet dolor nesciunt. Soluta eum expedita sit consectetur. Repudiandae rerum et ab.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2057, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2057, - "key": "9zbzvf9hgcxjumtcajc592aureh7i6fq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2058, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2057", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.30", - "balance": "1.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2073, - "quantity": 5, - "cost": 1.66, - "product_key": "aut", - "notes": "Placeat exercitationem nesciunt molestiae. Dolorum ipsum dicta commodi eos. At quis a ipsam officiis ratione illo fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2058, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2058, - "key": "e6yzwkesheia3wpmllp9bwtkbuwkvtl1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2059, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2058", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-08", - "last_sent_date": null, - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.72", - "balance": "11.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2074, - "quantity": 4, - "cost": 3.93, - "product_key": "autem", - "notes": "Amet repellat veritatis ipsum illum. Natus ut quos soluta quia et. Et excepturi dignissimos consequatur impedit aliquid. Omnis soluta aut asperiores vitae. Corrupti et quo exercitationem nemo. Ut excepturi animi maxime velit illum. Sint deleniti illo eaque id debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2059, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2059, - "key": "fhanrptohk8lo9vv2np3cv8qtgxgmeqc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2060, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2059", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-11", - "last_sent_date": null, - "due_date": "2020-04-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.00", - "balance": "16.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2075, - "quantity": 7, - "cost": 4, - "product_key": "ex", - "notes": "Fugiat alias rerum consequuntur voluptatum. Ad nisi nulla quam magnam natus. Omnis necessitatibus eius rerum dolores officia reiciendis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2060, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2060, - "key": "u0vv81aujma9oiozfeszjw3rmqx50bq3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2061, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2060", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.24", - "balance": "7.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2076, - "quantity": 7, - "cost": 3.32, - "product_key": "provident", - "notes": "Sed distinctio et impedit et aut earum repellat. Molestiae perspiciatis temporibus deleniti voluptatem qui nam occaecati ab.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2061, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2061, - "key": "3vsr806oo9l2qjspctdwo0ebkfb3xjue", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2062, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2061", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-13", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.95", - "balance": "8.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2077, - "quantity": 5, - "cost": 3.59, - "product_key": "dicta", - "notes": "Recusandae accusamus error eligendi ea eos nemo incidunt. Architecto molestias eos amet ea autem. Quod nihil aut laudantium iure corrupti consequuntur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2062, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2062, - "key": "ltanuwz57qhiofaulmglbqxcqutoyert", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2063, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2062", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.93", - "balance": "0.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2078, - "quantity": 1, - "cost": 1.93, - "product_key": "voluptatem", - "notes": "Qui numquam odit rerum et quas. Non aut sint rem rerum voluptatum ut ea ipsum. Ut velit repellat ducimus nam voluptas saepe sed et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2063, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2063, - "key": "ccjh9qiyxdcxnyetcqtwuson9cycdbdf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2064, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2063", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.24", - "balance": "3.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2079, - "quantity": 4, - "cost": 9.56, - "product_key": "tempora", - "notes": "Consequuntur excepturi sed harum esse adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2064, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2064, - "key": "h6qw4e21gmif1ny3nbovgggp6gixcwht", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2065, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2064", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.64", - "balance": "1.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2080, - "quantity": 8, - "cost": 3.83, - "product_key": "distinctio", - "notes": "Vero quibusdam in sequi quo ut nisi modi. Amet impedit et optio. Placeat eum eos aut eos nobis qui. Nisi eius nam in aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2065, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2065, - "key": "wabpeysitdxipcpyfelwtxaicz48vqnf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2066, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2065", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-02-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.34", - "balance": "33.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2081, - "quantity": 7, - "cost": 7.62, - "product_key": "praesentium", - "notes": "Delectus provident qui eaque fugiat. Ducimus nam et impedit laborum rerum laudantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2066, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2066, - "key": "vrnhtnfclye5cbzqdclosqp1xnhjzx4v", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2067, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2066", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2020-02-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.50", - "balance": "6.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2082, - "quantity": 10, - "cost": 2.25, - "product_key": "delectus", - "notes": "Debitis totam impedit voluptas repellat. Tempora quia aut consequatur. Quia hic fugiat error adipisci commodi id quam. Illum ullam quis omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2067, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2067, - "key": "e26um1zfir0totfvj7rpucuhaeoxli5r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2068, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2067", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2020-01-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.16", - "balance": "5.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2083, - "quantity": 4, - "cost": 9.54, - "product_key": "dolorem", - "notes": "Minima quis accusantium vel quia. Repudiandae quo est nostrum exercitationem quis unde. Consequatur aspernatur enim velit consequuntur delectus doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2068, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2068, - "key": "fnnvk0k5xdg7s5ok1bkjjn8io3w8xvh8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2069, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2068", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-15", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.06", - "balance": "4.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2084, - "quantity": 2, - "cost": 2.53, - "product_key": "iste", - "notes": "Reprehenderit veritatis voluptatem sed amet. A eius quia odio a nostrum voluptatem. Illo labore et ipsum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2069, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2069, - "key": "ep0vbfnpnwwtif8vxqww6695htojshy0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2070, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2069", + "number": "0011", "discount": "0.00", "is_amount_discount": false, "po_number": "", "date": "2020-05-30", "last_sent_date": null, - "due_date": "2020-03-24", + "due_date": "2020-09-12", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -85796,1010 +6009,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "14.85", - "balance": "0.11", - "partial": null, + "amount": "45.90", + "balance": "9.60", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2085, - "quantity": 9, - "cost": 1.65, - "product_key": "odit", - "notes": "Ut aut ut inventore magnam voluptas sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2070, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2070, - "key": "f5cziojeolenrcq2sw26ngq3jaovypb1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2071, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2070", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-20", - "last_sent_date": null, - "due_date": "2020-02-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.60", - "balance": "10.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2086, - "quantity": 4, - "cost": 9.15, - "product_key": "sed", - "notes": "Ab consequatur qui soluta ut. Sint et excepturi ullam maiores. Magnam omnis et cupiditate unde.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2071, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2071, - "key": "l4tb3k19yo8iqja51rms8litywt9qunh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2072, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2071", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-26", - "last_sent_date": null, - "due_date": "2020-05-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.52", - "balance": "11.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2087, - "quantity": 4, - "cost": 4.63, - "product_key": "voluptate", - "notes": "Nesciunt nisi quos quam et omnis nisi. Tempora repellendus velit delectus alias qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2072, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2072, - "key": "3xaxzeiuedrkdbbbx3olga2pm0smfigj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2073, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2072", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-06-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.60", - "balance": "5.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2088, - "quantity": 4, - "cost": 6.9, - "product_key": "consectetur", - "notes": "Illo a modi reprehenderit distinctio dolores voluptate. Fugiat ex et error autem id. Vitae qui dolores repudiandae perspiciatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2073, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2073, - "key": "uipx8rpa7u9gebpteiu0p0ec3i5z81x6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2074, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2073", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-03-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.18", - "balance": "3.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2089, - "quantity": 1, - "cost": 7.18, - "product_key": "earum", - "notes": "Iure nesciunt temporibus ea non labore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2074, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2074, - "key": "rhug6n4ben1npvmipe59ru5hmm9fx4va", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2075, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2074", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.06", - "balance": "5.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2090, - "quantity": 2, - "cost": 2.53, - "product_key": "molestiae", - "notes": "Beatae tempora totam aut expedita cumque quo veniam. Impedit rerum commodi animi eos cupiditate quos. Animi quia explicabo quia ut magni ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2075, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2075, - "key": "drzetrttm3g85go4xpcqffcdy8rdqqut", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2076, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2075", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.54", - "balance": "3.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2091, + "id": 10368, "quantity": 6, - "cost": 1.59, - "product_key": "quod", - "notes": "Quod voluptatem quis alias atque sed sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2076, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2076, - "key": "ldfxpddjooppjdwlqlxmynihups7ga3c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2077, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2076", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-31", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "92.80", - "balance": "36.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2092, - "quantity": 10, - "cost": 9.28, - "product_key": "et", - "notes": "Ratione optio et nihil suscipit fuga atque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2077, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2077, - "key": "p0rhvudyo5itjioozwpmzww2qqbloqpu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2078, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2077", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.70", - "balance": "13.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2093, - "quantity": 10, - "cost": 4.47, - "product_key": "eligendi", - "notes": "Eaque culpa minima et repudiandae quasi. Autem qui quod praesentium earum recusandae. Fugit eos necessitatibus nam hic ipsa est consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2078, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2078, - "key": "xlji3kpaqykmwyogmxhaal4vqt7zpdrb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2079, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2078", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-04-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.20", - "balance": "4.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2094, - "quantity": 8, - "cost": 2.4, - "product_key": "tempore", - "notes": "Ad rerum aut commodi distinctio qui dolorum similique. Repudiandae et odit dolorem nesciunt quo. Animi fugiat tempore explicabo ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2079, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2079, - "key": "aj648ui1s1jrk9k2b6yqjmpudidswzsh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2080, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2079", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-26", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.55", - "balance": "30.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2095, - "quantity": 7, "cost": 7.65, - "product_key": "consequatur", - "notes": "Sint ea minima ut eligendi. Dignissimos aliquid rerum et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2080, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2080, - "key": "r4gqfmb4sfxouqpcumnjzej3pjru6jgw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2081, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2080", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.38", - "balance": "5.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2096, - "quantity": 2, - "cost": 7.19, - "product_key": "commodi", - "notes": "Culpa qui quaerat illo consequatur totam sint repellat recusandae. Veritatis ea quaerat vel commodi officiis dolores fuga. Et enim quisquam ut amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2081, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2081, - "key": "htyiucjsqvqryfioacz14kvmzfssgepr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2082, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2081", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.73", - "balance": "8.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2097, - "quantity": 3, - "cost": 9.91, - "product_key": "rerum", - "notes": "Voluptas animi nam et error. Omnis in voluptatibus corrupti corrupti dolor deserunt illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2082, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2082, - "key": "pqn4hllozvsifopjgzafamziacge57yc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2083, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2082", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.82", - "balance": "23.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2098, - "quantity": 7, - "cost": 4.26, "product_key": "aut", - "notes": "Voluptatem aut laudantium voluptate nobis incidunt aperiam. Qui libero eos corrupti nemo vel.", + "notes": "Ipsum maxime et odio. Sed animi in rerum aperiam libero quia voluptate.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:35.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -86808,2558 +6037,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2083, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2083, - "key": "6rthcgr45kagpzfzsnfy8w9xrduy6h8m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2084, - "client_id": 23, + "id": 10369, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 5, + "status_id": 3, "design_id": 1, - "number": "2083", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.60", - "balance": "17.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2099, - "quantity": 4, - "cost": 4.9, - "product_key": "sed", - "notes": "Quos ut est eos animi aut exercitationem magni. Sit doloribus odit ea nihil molestias. Vitae omnis quo amet. Reprehenderit non odit et laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2084, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2084, - "key": "gpx3vrkhimsrcngblo6kisreuoimth0p", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2085, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2084", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2019-12-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.64", - "balance": "21.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2100, - "quantity": 6, - "cost": 3.94, - "product_key": "nesciunt", - "notes": "Asperiores facilis est dolores maiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2085, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2085, - "key": "8jr6wdpzziesn5jq807ke5ocqjbco1nz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2086, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2085", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.80", - "balance": "59.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2101, - "quantity": 8, - "cost": 8.85, - "product_key": "iste", - "notes": "Maxime mollitia et possimus iusto. Consequatur recusandae sit consequatur odit eum rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2086, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2086, - "key": "f5ucuqxuo23kzn7myavcjnpahnzkoyj7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2087, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2086", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.44", - "balance": "1.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2102, - "quantity": 1, - "cost": 2.44, - "product_key": "alias", - "notes": "Maxime aut officiis velit ad. Aut perspiciatis et temporibus consequatur deserunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2087, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2087, - "key": "7npvovd8ppnxcwgolz9ekb5ribm5woxy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2088, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2087", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-13", - "last_sent_date": null, - "due_date": "2020-05-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.90", - "balance": "0.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2103, - "quantity": 2, - "cost": 1.45, - "product_key": "cumque", - "notes": "Quibusdam qui voluptas nemo quas nemo placeat exercitationem. Rerum assumenda harum maiores quo possimus aut. Voluptatem iusto voluptas ut necessitatibus praesentium ea vero. Magni soluta est et cum quia voluptate doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2088, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2088, - "key": "icu0q2yf4h0sgcmuy4e837qy7mct2qfb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2089, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2088", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.26", - "balance": "0.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2104, - "quantity": 2, - "cost": 4.13, - "product_key": "debitis", - "notes": "Et facere ea aut. Cupiditate iusto quaerat incidunt corporis sunt hic. Voluptatum et voluptas laudantium harum voluptas nisi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2089, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2089, - "key": "wvvfrffen7vrsocwsqgm1gfusvw14zon", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2090, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2089", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.34", - "balance": "13.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2105, - "quantity": 6, - "cost": 4.89, - "product_key": "esse", - "notes": "Sit aut expedita dolores ea est sed qui. Animi accusamus iusto reprehenderit molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2090, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2090, - "key": "lefudkdkq5srxdyfpm1aunspke5z8lfi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2091, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2090", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-06-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.20", - "balance": "6.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2106, - "quantity": 10, - "cost": 2.92, - "product_key": "eaque", - "notes": "Provident iusto nulla rerum cum perspiciatis quia libero. Quibusdam est facere vero aut voluptate. Dolorum voluptatem et pariatur est enim quaerat tenetur. Molestias ullam quia repellendus consequatur omnis deleniti repellendus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2091, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2091, - "key": "shdmkv7gnx2pvfpbmk8ggses8edi8gtf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2092, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2091", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.45", - "balance": "32.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2107, - "quantity": 5, - "cost": 6.69, - "product_key": "exercitationem", - "notes": "Officia odio ea neque in et. Voluptas voluptatem atque sequi. Id iure sed et explicabo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2092, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2092, - "key": "qe3snjktisgktjdbzlqbgxzio48ewcpb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2093, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2092", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-01-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.92", - "balance": "17.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2108, - "quantity": 4, - "cost": 9.48, - "product_key": "sint", - "notes": "Provident et quae est libero et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2093, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2093, - "key": "ns9hd5pbqfycobfa4ioz3vfqhhcc8thn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2094, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2093", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.00", - "balance": "30.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2109, - "quantity": 6, - "cost": 8, - "product_key": "temporibus", - "notes": "Natus voluptas dolores non voluptatem aut autem quod dolores. Ad est vitae quia et eos suscipit. Nisi quis nisi sed aliquam provident.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2094, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2094, - "key": "urc8novck6e6yikek1p0jqek4wgafdvs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2095, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2094", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.50", - "balance": "10.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2110, - "quantity": 10, - "cost": 1.95, - "product_key": "atque", - "notes": "Laboriosam aut rerum occaecati itaque explicabo et doloremque. Dolorum id maiores fuga hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2095, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2095, - "key": "ltnwiz7l9jpvlktvff57wdnqvttinnod", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2096, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2095", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.41", - "balance": "7.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2111, - "quantity": 7, - "cost": 6.63, - "product_key": "nostrum", - "notes": "Autem quis distinctio et voluptatum qui. Recusandae est et aspernatur consequuntur laboriosam. Enim sunt aspernatur sint reiciendis assumenda eum maxime.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2096, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2096, - "key": "zrknuinhmy9gspx94u5sktybivbfpajb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2097, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2096", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-27", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "89.64", - "balance": "6.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2112, - "quantity": 9, - "cost": 9.96, - "product_key": "culpa", - "notes": "Dicta nihil omnis voluptas. Dolor nostrum aspernatur dolorem tenetur omnis. Neque et aperiam repellendus aliquid. Et at in expedita itaque et sequi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2097, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2097, - "key": "1j8oiohrjfvntg4ltec0l2fnxita0hoz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2098, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2097", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2020-02-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.80", - "balance": "0.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2113, - "quantity": 10, - "cost": 1.08, - "product_key": "alias", - "notes": "Doloribus voluptatem sit libero necessitatibus nostrum accusamus et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:35.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2098, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2098, - "key": "zkoc5rd5rouyc1nppqc80zhfwdtxbesb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:35", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2099, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2098", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.03", - "balance": "2.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2114, - "quantity": 3, - "cost": 6.01, - "product_key": "quisquam", - "notes": "Non ullam atque odit ut sunt. Mollitia qui reprehenderit perferendis laborum corrupti. Itaque et dolores qui repellat eveniet hic explicabo. Consequatur dolores commodi esse.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2099, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2099, - "key": "6ldt3li8wy0vrpx0pbhoo8kdnoktuthe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2100, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2099", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-10", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.00", - "balance": "33.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2115, - "quantity": 4, - "cost": 9, - "product_key": "aut", - "notes": "Quod consequatur in officiis at autem consequatur. Omnis ducimus molestias saepe velit dignissimos distinctio nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2100, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2100, - "key": "poep5avd65arzxuroez2p1ukbkxcd3rm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2101, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2100", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-20", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.31", - "balance": "0.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2116, - "quantity": 7, - "cost": 3.33, - "product_key": "cum", - "notes": "Est voluptas aliquid quis vel in qui accusamus. Ut recusandae nihil aliquam velit assumenda rerum ea dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2101, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2101, - "key": "yb7pncduvk9l4etwgavntfnnk2oaobp1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2102, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2101", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-03", - "last_sent_date": null, - "due_date": "2020-03-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.34", - "balance": "1.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2117, - "quantity": 3, - "cost": 8.78, - "product_key": "sint", - "notes": "Consequatur velit ratione porro voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2102, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2102, - "key": "tflcqxvmosiooff0kfgkt9qyd8ycxxvk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2103, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2102", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-20", - "last_sent_date": null, - "due_date": "2020-02-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.48", - "balance": "38.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2118, - "quantity": 7, - "cost": 9.64, - "product_key": "hic", - "notes": "Modi iusto provident et dolor similique. Quia quia aut labore dolor rerum saepe.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2103, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2103, - "key": "fuowmdgi9mfirpx0mca3ihqtbvjggbky", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2104, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2103", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-02-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.47", - "balance": "7.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2119, - "quantity": 3, - "cost": 4.49, - "product_key": "vitae", - "notes": "Voluptates explicabo id eius dolor ducimus. Odio aut aliquam quasi sunt ut inventore eos doloribus. Soluta sunt voluptatum sit nobis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2104, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2104, - "key": "3uflp0zbjzthg7qfmtxquwsdefmci93h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2105, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2104", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-28", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.15", - "balance": "17.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2120, - "quantity": 5, - "cost": 7.03, - "product_key": "eveniet", - "notes": "Omnis minima et ullam culpa. Alias laborum ut sunt temporibus eum eveniet quod. Voluptatem optio ipsum dignissimos optio porro minima qui veritatis. Perspiciatis eius hic dicta harum. Dolores omnis quia harum aut neque reprehenderit autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2105, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2105, - "key": "8hvyp3lqrhnlwdfnd37bphqpwundwm5j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2106, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2105", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-15", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.45", - "balance": "5.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2121, - "quantity": 5, - "cost": 5.09, - "product_key": "qui", - "notes": "Deleniti nobis voluptatem perferendis mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2106, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2106, - "key": "wui7cxhvpnbvfsbyqujhj6c7wdg2korq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2107, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2106", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-06-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.96", - "balance": "6.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2122, - "quantity": 6, - "cost": 7.66, - "product_key": "maxime", - "notes": "Omnis dolore tenetur voluptatum quo esse. Omnis est unde et aspernatur reiciendis quia pariatur. Et sit et officia non tempora. Illum dolor alias voluptatum expedita laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2107, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2107, - "key": "p3ru4sk17zmbdeoa3pk6st8653wjpzge", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2108, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2107", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-18", - "last_sent_date": null, - "due_date": "2020-04-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.74", - "balance": "2.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2123, - "quantity": 1, - "cost": 2.74, - "product_key": "omnis", - "notes": "Quidem distinctio quam ea perferendis. Sed ipsum itaque commodi voluptate fugit quasi tempora non. Repellendus nostrum facilis esse quibusdam assumenda. Quisquam rerum ipsa inventore. Sed aperiam non eveniet et delectus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2108, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2108, - "key": "ke6o3vu2ryuw6dewf3iyqma2fdbmrvm1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2109, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2108", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-12", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.78", - "balance": "6.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2124, - "quantity": 7, - "cost": 8.54, - "product_key": "quis", - "notes": "Nobis et ea et minus velit. Delectus dolor non laborum quisquam culpa cupiditate magnam. Impedit aut ea ullam veritatis ea et sapiente odit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2109, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2109, - "key": "z8jtwefdhsoziywm7bj2pkmkspap5kyf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2110, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2109", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-30", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.80", - "balance": "9.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2125, - "quantity": 10, - "cost": 2.98, - "product_key": "fugit", - "notes": "Commodi ducimus ut provident voluptates corporis. Rerum non doloribus tenetur non facere ut aperiam. Et dolorem omnis itaque vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2110, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2110, - "key": "xvdphwiig2hlj4x6bz155xpax65xe3fc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2111, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2110", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2019-12-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.83", - "balance": "3.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2126, - "quantity": 3, - "cost": 9.61, - "product_key": "iste", - "notes": "Similique iure et quam quis. Veritatis ut doloremque optio eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2111, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "invoice_id": 2111, - "key": "nd8cndnynocgipqedzref1dwitjyteg9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2212, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2211", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.28", - "balance": "11.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2227, - "quantity": 8, - "cost": 2.16, - "product_key": "qui", - "notes": "Aut maxime eum in fugiat. Repudiandae aperiam autem delectus sint mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2212, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2212, - "key": "vgahfj4wyhkogy8xzmpxrkydv3bz6ykb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2213, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2212", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-29", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.16", - "balance": "0.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2228, - "quantity": 1, - "cost": 5.16, - "product_key": "accusamus", - "notes": "Reiciendis sunt explicabo voluptas atque. Delectus nostrum minus modi dolor molestiae. Quo nesciunt quia ut id minima omnis est doloribus. Minima doloremque debitis alias ducimus eius rem est. Qui autem magnam accusamus quaerat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2213, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2213, - "key": "3mepvdmnk262xxx0aggtzaahauf7tiqq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2214, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2213", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-15", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.04", - "balance": "2.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2229, - "quantity": 2, - "cost": 2.52, - "product_key": "blanditiis", - "notes": "Omnis incidunt ad beatae quia omnis itaque assumenda sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2214, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2214, - "key": "aowxwqeoufbyxxuxbiwfbjaro0xpqjtt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2215, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2214", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.54", - "balance": "11.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2230, - "quantity": 2, - "cost": 9.27, - "product_key": "sit", - "notes": "Ipsam quia aspernatur porro ut ab magni ut totam. Modi atque maxime quo veniam. Quisquam recusandae asperiores possimus doloremque veniam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2215, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2215, - "key": "ycp5gmygwgrsn9o1cns7sqiyggzzaq42", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2216, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2215", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-02-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.66", - "balance": "7.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2231, - "quantity": 7, - "cost": 2.38, - "product_key": "voluptates", - "notes": "Praesentium fugiat molestias expedita aut quod natus. Praesentium et aspernatur iusto qui assumenda vitae nobis consequatur. Sit sunt quia ut earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2216, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2216, - "key": "izf8qmmc3jd9mbb7gucqmn5ysdiqnznl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2217, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2216", + "number": "0012", "discount": "0.00", "is_amount_discount": false, "po_number": "", "date": "2020-04-11", "last_sent_date": null, - "due_date": "2020-01-12", + "due_date": "2020-08-25", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -89368,1466 +6068,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "10.26", - "balance": "2.32", - "partial": null, + "amount": "67.90", + "balance": "33.68", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2232, - "quantity": 2, - "cost": 5.13, - "product_key": "eos", - "notes": "Velit quisquam ipsum officiis est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2217, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2217, - "key": "vdxm3ewgmzvnp0l4schjbsdeufo27kfw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2218, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2217", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.56", - "balance": "7.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2233, - "quantity": 4, - "cost": 2.64, - "product_key": "voluptatem", - "notes": "Eius recusandae consequatur nam debitis. Voluptatibus non sed ullam qui aut animi. Natus et necessitatibus beatae cumque consequatur consequatur dolores. Tempora modi et odit neque est fuga voluptas. Impedit repellendus et assumenda tempora recusandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2218, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2218, - "key": "1du2krwg5c04izencnh8qfmgnf0b68wh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2219, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2218", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-03-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.56", - "balance": "18.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2234, - "quantity": 4, - "cost": 7.14, - "product_key": "voluptates", - "notes": "Saepe omnis illum voluptatem nihil. Molestiae sit expedita sunt excepturi. Architecto et molestiae occaecati doloremque voluptate. Assumenda eaque quae voluptatem corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2219, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2219, - "key": "p5hdbhobrxkwuiugez0fmboqpzyiwsjj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2220, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2219", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-16", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.90", - "balance": "21.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2235, - "quantity": 10, - "cost": 2.19, - "product_key": "asperiores", - "notes": "Dolore et quod est sapiente enim. Ut blanditiis est nam aut inventore aut. Laborum ut commodi ut. Est enim assumenda ipsam sed voluptas ut. Fugit impedit sit ea similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2220, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2220, - "key": "jj2kmudqbrqrscn6ijmja9pljdg0memz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2221, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2220", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2019-12-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "75.24", - "balance": "31.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2236, - "quantity": 9, - "cost": 8.36, - "product_key": "a", - "notes": "Incidunt aspernatur in quis quae quo voluptatibus et aut. Enim fugit nesciunt vel aut. Et provident qui et aut necessitatibus libero ut. Qui suscipit dolorem quibusdam. Ut corrupti sed vel quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2221, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2221, - "key": "24x8xzclausm7iqqkcodtmkb9reiakw3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2222, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2221", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-30", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.04", - "balance": "6.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2237, - "quantity": 2, - "cost": 3.52, - "product_key": "quos", - "notes": "Rerum debitis ut sunt ea quae. Adipisci excepturi aspernatur temporibus totam iure nihil quo. Quam magni id commodi sit. Neque repudiandae quia repellat fuga eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2222, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2222, - "key": "dtoqsk3mfvkqeou6okcv3rrkdpi39tsi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2223, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2222", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-28", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.39", - "balance": "16.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2238, + "id": 10369, "quantity": 7, - "cost": 7.77, - "product_key": "provident", - "notes": "Ut qui dolore sed. Ad similique inventore et et fugiat autem voluptas. Ducimus dignissimos reiciendis voluptates vero. Molestiae quod porro soluta modi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2223, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2223, - "key": "grqcfpjf5fg6u5xctjluqgzt2r8mu6lw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2224, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2223", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2020-04-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.85", - "balance": "62.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2239, - "quantity": 7, - "cost": 9.55, - "product_key": "modi", - "notes": "Ea nulla suscipit ut tempore. Voluptatem culpa quibusdam enim excepturi. Laborum distinctio rem non ut. Quisquam officia et qui ut soluta molestiae. Ipsum sunt nobis quasi sapiente quas qui dolor neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2224, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2224, - "key": "yb2qxix6dblyblpubkzpnxfhj6kwymye", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2225, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2224", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2020-05-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.02", - "balance": "3.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2240, - "quantity": 1, - "cost": 9.02, - "product_key": "ab", - "notes": "Ut est doloremque omnis officiis ut voluptates. Enim cupiditate amet recusandae exercitationem rerum. In vero rerum fuga est qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2225, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2225, - "key": "re7jmrllf1xd4nqrhjsxbdcmijxhdgzf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2226, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2225", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.50", - "balance": "1.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2241, - "quantity": 2, - "cost": 2.75, - "product_key": "esse", - "notes": "Esse illum perferendis voluptatem. Aliquid id maiores autem dolorum. Aut ea placeat harum animi neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2226, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2226, - "key": "7uuep6ee82w7dkzvub4w3c0vimuosyrz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2227, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2226", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.12", - "balance": "11.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2242, - "quantity": 3, - "cost": 8.04, - "product_key": "omnis", - "notes": "Deserunt qui accusamus quia. Aut ex inventore delectus eligendi nesciunt nisi culpa. Aperiam culpa atque voluptas quis vel perferendis aut. Omnis a et provident est consequatur soluta quidem sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2227, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2227, - "key": "1vr4puzgo6cd3ojzqvzikry86dx6js3m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2228, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2227", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-13", - "last_sent_date": null, - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "85.00", - "balance": "48.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2243, - "quantity": 10, - "cost": 8.5, - "product_key": "voluptatum", - "notes": "Voluptas nulla et numquam eos deleniti quibusdam. Adipisci dicta id et. Omnis non tenetur dignissimos beatae ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2228, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2228, - "key": "inklab4qk7kpdjsddt2hdu8tqcnvhwdc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2229, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2228", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-05-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.22", - "balance": "17.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2244, - "quantity": 6, - "cost": 6.87, - "product_key": "repellendus", - "notes": "Amet ipsa saepe assumenda eos quo vel. Quas ipsum enim non reprehenderit eius ut perspiciatis. Odit iusto ipsam rerum atque ex quis. Asperiores pariatur aut est eius maiores magnam. Corporis vero sed architecto quia enim esse veritatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2229, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2229, - "key": "vl2oa2wvef8y4dl1jv3s4xuevkgpt1jh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2230, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2229", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.55", - "balance": "3.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2245, - "quantity": 5, - "cost": 3.31, - "product_key": "occaecati", - "notes": "Laudantium minima placeat et distinctio officia. Sed similique ut iure reiciendis et sint delectus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2230, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2230, - "key": "jnpcgs44us2elgbvssrhv9hyftogcsqi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2231, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2230", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.64", - "balance": "7.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2246, - "quantity": 1, - "cost": 9.64, - "product_key": "veritatis", - "notes": "Laudantium quia numquam eius voluptatem. Magni voluptatem nemo qui asperiores fugit quisquam iste.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2231, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2231, - "key": "tyc1hpbu3ara5cg77trsfhxa6augq3n2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2232, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2231", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2020-06-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.59", - "balance": "2.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2247, - "quantity": 7, - "cost": 2.37, - "product_key": "praesentium", - "notes": "Explicabo quia dolor fuga illo et. Inventore ea velit ullam sapiente quia. Laboriosam quo et veniam vitae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2232, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2232, - "key": "qer5y4kfqgupk72rxj5bmw4wrzidjshy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2233, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2232", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2019-12-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.00", - "balance": "31.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2248, - "quantity": 10, - "cost": 6.6, - "product_key": "molestias", - "notes": "Nam aut qui non placeat ratione. Expedita consectetur consequatur voluptas ducimus ratione illum aliquam omnis. Hic dolore fugiat officiis eligendi est eveniet. Consequatur repellat quasi fugiat sunt non animi non corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2233, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2233, - "key": "ot9z6few5vt7fpxhqiggx4t1wd8tmrcb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2234, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2233", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.08", - "balance": "5.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2249, - "quantity": 3, - "cost": 9.36, - "product_key": "veritatis", - "notes": "Omnis culpa numquam natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2234, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2234, - "key": "lbkfweh7p386boo9x6nsh8y5prlyk8ej", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2235, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2234", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-15", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "95.60", - "balance": "41.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2250, - "quantity": 10, - "cost": 9.56, - "product_key": "vitae", - "notes": "Praesentium voluptatibus nesciunt sequi et dolores neque labore. Sint dolor eum animi tenetur non et omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2235, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2235, - "key": "tcqh10a5tpa03dojjd9cszvjmisftdfd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2236, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2235", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.75", - "balance": "23.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2251, - "quantity": 9, - "cost": 5.75, + "cost": 9.7, "product_key": "ut", - "notes": "Aspernatur enim nostrum aut nulla corporis atque fugiat. Error ut sapiente est neque vel sint iure. Ullam et nulla cumque earum quam quibusdam.", + "notes": "Aut voluptatum nobis hic rerum et laboriosam deserunt. Cupiditate ut id in ipsum.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:40.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -90836,7417 +6096,24 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2236, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2236, - "key": "axxf7gynkmdxabnxeap6gnf4fyc4c8li", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2237, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2236", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.85", - "balance": "10.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2252, - "quantity": 3, - "cost": 8.95, - "product_key": "amet", - "notes": "Necessitatibus fugit distinctio quidem exercitationem et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2237, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2237, - "key": "qbzx7yto6xwagdqsqtt8ifop9xrpjhde", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2238, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2237", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-06", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.00", - "balance": "8.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2253, - "quantity": 6, - "cost": 2.5, - "product_key": "recusandae", - "notes": "Beatae possimus et et voluptatem quisquam. Saepe non consequatur sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2238, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2238, - "key": "swdjjl1iffhzumwr6v9n8pdxlwq01xtu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2239, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2238", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-31", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.82", - "balance": "6.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2254, - "quantity": 1, - "cost": 7.82, - "product_key": "aut", - "notes": "Voluptas facilis dolores ut aliquam autem architecto soluta id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2239, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2239, - "key": "pggprfue4evzzho0cgh7rbmyahdqokku", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2240, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2239", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2019-12-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.42", - "balance": "6.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2255, - "quantity": 1, - "cost": 7.42, - "product_key": "vitae", - "notes": "Ratione recusandae quia et iure et laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2240, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2240, - "key": "rlk8z19xwhzvynfyoicpu2sypucbmx5f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2241, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2240", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.87", - "balance": "21.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2256, - "quantity": 3, - "cost": 9.29, - "product_key": "et", - "notes": "Debitis placeat a laborum explicabo inventore. Omnis repellendus alias dolor. Pariatur ducimus magnam inventore rerum et aperiam. Illum nisi modi placeat perspiciatis et excepturi dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2241, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2241, - "key": "xqsjx21cheaqi92p8tu3ndxtgsjiwslz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2242, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2241", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-06", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.60", - "balance": "7.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2257, - "quantity": 10, - "cost": 6.46, - "product_key": "corporis", - "notes": "Distinctio facilis aut deserunt minima voluptatem in nesciunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2242, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2242, - "key": "cutsgeg6pwl4t0wplfpmt1onvzjr5yai", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2243, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2242", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.70", - "balance": "60.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2258, - "quantity": 10, - "cost": 6.67, - "product_key": "odit", - "notes": "Quae molestiae quis cum consequatur eius perspiciatis. Repudiandae aliquam voluptas nisi doloremque rerum quo quia. Odio sed a amet aperiam in ipsum placeat. Eos qui ut totam praesentium dignissimos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2243, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2243, - "key": "noukjzswps0i9v6dpotows9hhdzr4hpq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2244, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2243", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-02", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.54", - "balance": "3.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2259, - "quantity": 1, - "cost": 9.54, - "product_key": "dicta", - "notes": "Dolorum debitis beatae id officia. Dolor in qui reiciendis debitis deserunt. Labore impedit voluptatem consequatur. Ut ut velit recusandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2244, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2244, - "key": "w86fmblvr6z7wqays5ppcwi5cxtlv5jx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2245, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2244", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-04", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.62", - "balance": "0.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2260, - "quantity": 2, - "cost": 1.81, - "product_key": "voluptate", - "notes": "Quia iure eos eum voluptatibus. At fugiat dolorum est pariatur saepe placeat. Illum aliquid nulla dolor hic ducimus quas consequatur exercitationem. Quis error sed ipsum aut debitis eos odio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2245, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2245, - "key": "f1l2fbp6d3fzc0dgwsjgqqzgndn14bc3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2246, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2245", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.36", - "balance": "15.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2261, - "quantity": 8, - "cost": 4.42, - "product_key": "inventore", - "notes": "Consequuntur quae eaque quos eveniet maiores. Animi repellendus ipsum quidem est incidunt dolorum non nostrum. Libero molestias vel maiores sit numquam iure facilis cum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2246, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2246, - "key": "bv1dt11jmlzttqwvrypowfqnfkiedpeb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2247, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2246", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-20", - "last_sent_date": null, - "due_date": "2020-04-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.72", - "balance": "16.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2262, - "quantity": 4, - "cost": 8.68, - "product_key": "magni", - "notes": "Eos earum omnis est non totam rem. Earum excepturi iusto cum rerum exercitationem. Soluta reprehenderit voluptatum rerum eius ea repellat voluptas eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2247, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2247, - "key": "ffgl6v6wyxezg7lq7wvqs8h36cmxfmwf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2248, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2247", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2019-12-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.91", - "balance": "14.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2263, - "quantity": 3, - "cost": 8.97, - "product_key": "harum", - "notes": "Voluptatem adipisci sed molestias itaque omnis asperiores et. Fugiat est eos expedita molestiae. Enim aut qui dignissimos optio tempore dolores rem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2248, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2248, - "key": "znhxfvtzh4wj0uexpm983iwxxidipmas", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2249, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2248", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.78", - "balance": "36.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2264, - "quantity": 7, - "cost": 9.54, - "product_key": "nulla", - "notes": "Dolorum ut perspiciatis quia sed. Libero qui perferendis sunt. Architecto voluptatem eaque nisi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2249, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2249, - "key": "5w1yspnrg90tiqy6lmn01bfvxtwpikue", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2250, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2249", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "99.40", - "balance": "91.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2265, - "quantity": 10, - "cost": 9.94, - "product_key": "harum", - "notes": "Et rerum quia blanditiis ea voluptatem dolores libero. Enim qui sed dolor reprehenderit nobis deleniti animi. Molestiae provident asperiores rerum quam consequatur. Doloremque voluptatem et ut praesentium aliquam aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2250, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2250, - "key": "uhy1kdiax71tii3m4u2lnu5o3esu0lqf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2251, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2250", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.40", - "balance": "11.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2266, - "quantity": 8, - "cost": 8.05, - "product_key": "cupiditate", - "notes": "Qui autem soluta dolore a illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2251, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2251, - "key": "r2bsepofyxpufmm4a6ul2dsy7nzdjefw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2252, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2251", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-05-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.81", - "balance": "22.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2267, - "quantity": 3, - "cost": 9.27, - "product_key": "architecto", - "notes": "Rerum aliquid laboriosam officiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2252, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2252, - "key": "5mur8jwkt4gaz5shy1jfrnabfp6qtrok", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2253, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2252", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "88.50", - "balance": "25.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2268, - "quantity": 10, - "cost": 8.85, - "product_key": "sed", - "notes": "Cupiditate voluptatem quis perferendis nesciunt tenetur ullam. Quis non est voluptate est et perferendis. Qui quo in possimus animi quia incidunt et. Eveniet est voluptatem adipisci odit ea quis necessitatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2253, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2253, - "key": "gaktxhlrduxksqdjhtdfv7b5b3ivq9cq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2254, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2253", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.50", - "balance": "6.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2269, - "quantity": 10, - "cost": 1.25, - "product_key": "modi", - "notes": "At voluptatibus a minus. At beatae ut vel est quidem necessitatibus. Sunt illum sint quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2254, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2254, - "key": "sgzf7noh5mvdc3rgoqknw31amgjyjt4s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2255, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2254", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.36", - "balance": "0.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2270, - "quantity": 3, - "cost": 2.12, - "product_key": "dolores", - "notes": "Aut omnis atque placeat nulla suscipit saepe illum. In porro necessitatibus itaque aliquam quam quis voluptas. Exercitationem facilis ut et corporis architecto quasi vel omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2255, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2255, - "key": "9r6u6bmoibhhb82iau2xqvy8d0mrmlmq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2256, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2255", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.79", - "balance": "42.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2271, - "quantity": 9, - "cost": 5.31, - "product_key": "consequatur", - "notes": "Esse cumque sequi voluptas necessitatibus. Qui consectetur ullam quos qui. Voluptates asperiores iste voluptate delectus sed. Ut illo consequuntur laudantium maxime consequatur velit ea qui. Corrupti error qui et quaerat ea ea at.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2256, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2256, - "key": "kckjfohjllh2fhiocwlfxmbdpnsjw6hq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2257, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2256", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.55", - "balance": "4.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2272, - "quantity": 1, - "cost": 6.55, - "product_key": "autem", - "notes": "Quis sequi qui illum rem veritatis quia accusamus cupiditate. Nihil voluptates commodi id labore inventore ipsam. Quam non quis omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2257, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2257, - "key": "pgqgvwkqfdrwwn35buz9hpugikpfs4j6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2258, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2257", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "96.20", - "balance": "77.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2273, - "quantity": 10, - "cost": 9.62, - "product_key": "sint", - "notes": "Aut in modi delectus itaque ut rem. Temporibus aut quia totam alias. Consequatur aut aspernatur vel accusamus. Dolorum perspiciatis facere illo ut necessitatibus molestias deleniti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2258, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2258, - "key": "sdmkyuafxutlnyrl4yh0d4lycheyytnh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2259, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2258", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.81", - "balance": "2.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2274, - "quantity": 1, - "cost": 4.81, - "product_key": "repellendus", - "notes": "Nam mollitia neque ipsum. Dolores animi neque facere in aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2259, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2259, - "key": "nqr1r59autgo8j0ljsnlnz0klugitw3k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2260, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2259", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-27", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.44", - "balance": "9.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2275, - "quantity": 1, - "cost": 9.44, - "product_key": "aperiam", - "notes": "Excepturi occaecati officiis necessitatibus labore iste. Dolores corporis dolore adipisci perferendis. Possimus tempore aut aliquam sit modi eius quisquam. Sint quasi odio necessitatibus natus excepturi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2260, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2260, - "key": "ozugotml57m3evkacwntjdzvs7itjvz3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2261, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2260", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-18", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "56.49", - "balance": "34.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2276, - "quantity": 7, - "cost": 8.07, - "product_key": "omnis", - "notes": "Officiis modi harum labore rem. Rerum iste enim exercitationem quibusdam magnam aut. Aut debitis soluta natus dolore. Exercitationem nihil qui est est nobis voluptas sunt sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2261, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2261, - "key": "3syvoprpozhdlkgb1llc07nztbgtx2nb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2262, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2261", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.05", - "balance": "5.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2277, - "quantity": 5, - "cost": 2.41, - "product_key": "soluta", - "notes": "Esse officiis quis numquam voluptatibus animi dolore maiores cum. Magnam earum harum praesentium aut repudiandae. Omnis beatae non reprehenderit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2262, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2262, - "key": "pw6ntlz96hgahimwwvli7h7vffycyvwl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2263, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2262", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.64", - "balance": "8.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2278, - "quantity": 8, - "cost": 3.58, - "product_key": "excepturi", - "notes": "Sapiente sed et delectus eveniet eligendi commodi modi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2263, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2263, - "key": "zqjy0fqdtozqngcebzlu0jhdu3g3e77u", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2264, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2263", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.00", - "balance": "20.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2279, - "quantity": 6, - "cost": 8, - "product_key": "asperiores", - "notes": "Repudiandae consequatur ea in qui placeat tempore. Beatae non aliquam provident voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2264, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2264, - "key": "moads5bflc3pv0jfwzdvtvfceztmxdta", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2265, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2264", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.37", - "balance": "19.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2280, - "quantity": 3, - "cost": 8.79, - "product_key": "tempora", - "notes": "Et esse dolorem odit aliquam. Porro molestiae distinctio esse pariatur dolorem cum. Facilis non ipsam doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2265, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2265, - "key": "0f9zso7zosspfws5nigjqdftjgdm9kd4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2266, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2265", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.78", - "balance": "3.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2281, - "quantity": 6, - "cost": 9.63, - "product_key": "illum", - "notes": "Magnam sed eum et error sed accusantium eos qui. Adipisci qui voluptatibus nulla est voluptatem sit animi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2266, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2266, - "key": "pygi8fviv0jgdhks1wqyh7b9bgtgfmb7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2267, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2266", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-03-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.70", - "balance": "6.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2282, - "quantity": 2, - "cost": 3.35, - "product_key": "laudantium", - "notes": "Voluptate repellendus a commodi tempore fugiat dolor. Rerum eligendi quo totam et dicta quis qui quaerat. Ea voluptate eum culpa. Porro rem nulla et recusandae voluptatibus numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2267, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2267, - "key": "wbujsjbv7ba9evouxwl3w2pfu6pvkw3o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2268, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2267", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-26", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.90", - "balance": "30.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2283, - "quantity": 10, - "cost": 4.29, - "product_key": "eaque", - "notes": "Architecto laudantium unde ut. Voluptatem sequi corporis adipisci molestiae. Amet nemo veniam perspiciatis ullam. Nobis ab qui velit ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2268, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2268, - "key": "kvtpvkk6aaeukafw788apwz6dux1flhv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2269, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2268", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "81.45", - "balance": "68.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2284, - "quantity": 9, - "cost": 9.05, - "product_key": "neque", - "notes": "Placeat doloribus soluta eos quae quas. Et itaque ex qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2269, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2269, - "key": "6banhmeabmc0hbv7xiuh3u30vumkrgo2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2270, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2269", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.94", - "balance": "2.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2285, - "quantity": 1, - "cost": 2.94, - "product_key": "incidunt", - "notes": "Quas animi accusamus deleniti eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2270, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2270, - "key": "7iakwhjaw3vmunhtkg9mgcx6sfuoiaup", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2271, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2270", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "74.00", - "balance": "55.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2286, - "quantity": 8, - "cost": 9.25, - "product_key": "esse", - "notes": "Occaecati illum aut tempore magni libero. Sit voluptatibus eos consectetur reiciendis. Molestiae corrupti qui et asperiores cumque. Ducimus qui maiores ad asperiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2271, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2271, - "key": "iwo8edkyjrdt29reu908eu1pmiotuzsb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2272, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2271", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2019-12-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.11", - "balance": "9.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2287, - "quantity": 3, - "cost": 7.37, - "product_key": "suscipit", - "notes": "Consequatur quae ea ut voluptatum et fugiat. Alias amet accusamus aperiam et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2272, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2272, - "key": "8geilfvm16ekieeubjpk9wgzyw4ghvlo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2273, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2272", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-04-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.93", - "balance": "8.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2288, - "quantity": 1, - "cost": 8.93, - "product_key": "nemo", - "notes": "Facilis praesentium laborum quisquam iusto omnis sequi. Dicta mollitia aliquam deserunt at consequatur omnis qui. Ab nostrum eum dolor error explicabo est. Odio magnam ut dolores eius id sequi. Laborum est asperiores eius. Voluptatibus dolores quae quia aut deleniti et. Odit nam dolores aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2273, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2273, - "key": "neheysgaovu6zn8dd9si53d9rjtgrreg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2274, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2273", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.43", - "balance": "0.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2289, - "quantity": 3, - "cost": 2.81, - "product_key": "autem", - "notes": "Excepturi culpa a deleniti aspernatur voluptatem voluptatem. Veritatis eligendi sapiente voluptatem ipsum. Ipsum et rerum nam rerum est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2274, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2274, - "key": "5limhk938sxp25zrlnyiyzlgiwybmjgu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2275, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2274", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2019-12-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.51", - "balance": "6.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2290, - "quantity": 3, - "cost": 2.17, - "product_key": "ut", - "notes": "Praesentium est repudiandae et non consectetur sit in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2275, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2275, - "key": "wtdtqugdoe7ghbiht1xm8vyzbpoqmono", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2276, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2275", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.12", - "balance": "1.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2291, - "quantity": 2, - "cost": 1.56, - "product_key": "voluptatem", - "notes": "Blanditiis ut unde facere neque pariatur nemo. Est dolores eum et sit quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2276, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2276, - "key": "w73dk44xmdvxwcpkcapogr4pntdwgqha", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2277, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2276", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": null, - "due_date": "2019-12-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.49", - "balance": "11.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2292, - "quantity": 7, - "cost": 3.07, - "product_key": "quam", - "notes": "Non facere laudantium dolorem ex perspiciatis dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2277, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2277, - "key": "ncqmwfvjr6sb5h7d1d4bhss4otyptxnj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2278, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2277", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "71.73", - "balance": "4.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2293, - "quantity": 9, - "cost": 7.97, - "product_key": "laudantium", - "notes": "Nulla dolore autem amet commodi velit molestias. Nostrum iste nesciunt facilis dolorum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2278, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2278, - "key": "nrdkivzufokwy5gtb3ptketv2rroiccz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2279, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2278", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-09", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.30", - "balance": "20.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2294, - "quantity": 10, - "cost": 2.43, - "product_key": "voluptatem", - "notes": "Minus nisi incidunt velit aperiam eos. Esse dignissimos vero voluptas molestiae. Omnis distinctio quam et. Iusto dolore veritatis amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2279, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2279, - "key": "yo3sq3fjyl2hvvs5eqgnpafy2imbitr7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2280, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2279", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2020-04-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.34", - "balance": "22.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2295, - "quantity": 7, - "cost": 3.62, - "product_key": "atque", - "notes": "Consequatur et molestias magnam ex reiciendis adipisci velit. Voluptas dolorem et dolorum eveniet. Ad eos ab voluptatem autem sequi. Quo quos et mollitia perspiciatis vel necessitatibus velit. Et magni nam quia corrupti sed placeat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2280, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2280, - "key": "6lrg3hiykrgboeibk05lbtzrzcwuhyg6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2281, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2280", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.32", - "balance": "25.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2296, - "quantity": 4, - "cost": 9.08, - "product_key": "dolor", - "notes": "Molestiae nulla similique quia reprehenderit sit iure. Non quidem est necessitatibus autem iusto corrupti mollitia. Necessitatibus perspiciatis recusandae quidem labore dolorem ipsum aut. Minima pariatur soluta voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:42.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2281, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2281, - "key": "8wkeryuoy70hgtfk4szoadajbksz30jb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:42", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2282, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2281", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": null, - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.74", - "balance": "3.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2297, - "quantity": 2, - "cost": 3.87, - "product_key": "facere", - "notes": "Eveniet quas dolorum quia tempora. Facilis est unde tempora quibusdam amet impedit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2282, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2282, - "key": "layeknfz9bmh3gekzau49owkqavtyg8i", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2283, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2282", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "2020-02-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.12", - "balance": "3.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2298, - "quantity": 1, - "cost": 4.12, - "product_key": "eius", - "notes": "Deleniti sunt voluptatem odit corrupti totam velit. Et facere reprehenderit provident deserunt eos quos aut. Officia laudantium ullam dolore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2283, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2283, - "key": "z0wmnh0mcjdprdoihr3s1tklrwjvf1ut", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2284, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2283", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.93", - "balance": "5.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2299, - "quantity": 9, - "cost": 1.77, - "product_key": "quo", - "notes": "Est pariatur quo explicabo reiciendis iste eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2284, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2284, - "key": "hkmiswhihmz2why54i2jxkmwt4ph5n8g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2285, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2284", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-18", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.40", - "balance": "1.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2300, - "quantity": 1, - "cost": 4.4, - "product_key": "eos", - "notes": "Non voluptatem architecto ut ratione esse. Et dolor modi pariatur eum voluptatem. Ad et expedita eligendi corporis in eos. Qui perferendis quis quasi qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2285, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2285, - "key": "p2sio3xw7kqoxievyyd62mtedjvvlhyr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2286, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2285", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.85", - "balance": "1.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2301, - "quantity": 1, - "cost": 5.85, - "product_key": "dolores", - "notes": "Nisi sunt necessitatibus porro dignissimos quo recusandae. Eveniet sint iusto sed a enim aliquam numquam tenetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2286, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2286, - "key": "owkaefuwrfyvzyq3tsc2zdbceqbmgupc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2287, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2286", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.29", - "balance": "26.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2302, - "quantity": 9, - "cost": 4.81, - "product_key": "eligendi", - "notes": "Laudantium odit quidem aut aut. Assumenda modi ab alias similique repellendus. Libero pariatur minus ut est. Et ex in deserunt minus. Tempore suscipit vel fugit sunt ducimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2287, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2287, - "key": "82nay2aggblirymehtx2bkn8fzzxcmzs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2288, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2287", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.75", - "balance": "6.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2303, - "quantity": 5, - "cost": 5.95, - "product_key": "dolores", - "notes": "Vero ea cumque et in sunt omnis. Deleniti quam dignissimos tempora recusandae. Ut optio sint eius id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2288, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2288, - "key": "myxodxs4c2xtea3ekezfhekeaceuvcxg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2289, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2288", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.48", - "balance": "1.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2304, - "quantity": 4, - "cost": 3.87, - "product_key": "nesciunt", - "notes": "Unde consequatur ea consequuntur hic pariatur fuga et. Itaque consequuntur consectetur sunt sit cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2289, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2289, - "key": "icw40pouwzhi5lrm5u8lvzuzh8ice3g6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2290, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2289", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-13", - "last_sent_date": null, - "due_date": "2020-02-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.75", - "balance": "2.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2305, - "quantity": 5, - "cost": 7.55, - "product_key": "dolorem", - "notes": "Explicabo consequuntur necessitatibus nulla mollitia. Placeat quia accusamus excepturi totam dolorem eius sed. Ab quos rem iure vero deleniti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2290, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2290, - "key": "iqxdo4vwwf1mcviapifyc91zk6yjz0px", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2291, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2290", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "91.10", - "balance": "28.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2306, - "quantity": 10, - "cost": 9.11, - "product_key": "temporibus", - "notes": "Nulla in sit repellendus ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2291, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2291, - "key": "laq3oahzxb6rx01bk5qnrhx6qjpxhdkz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2292, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2291", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-15", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.75", - "balance": "44.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2307, - "quantity": 5, - "cost": 9.75, - "product_key": "quos", - "notes": "Et natus veniam illum ipsum voluptatem culpa. Asperiores rem et sapiente numquam nihil. Architecto rerum alias et hic velit deserunt unde.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2292, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2292, - "key": "vp3jmifqn8ba6vvy9i2sadhpap68xdoy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2293, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2292", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-02-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.25", - "balance": "6.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2308, - "quantity": 5, - "cost": 3.85, - "product_key": "dolorum", - "notes": "Ut rerum quo ut. Eos laborum accusamus doloribus asperiores. Sequi autem pariatur fugit aut dolor error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2293, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2293, - "key": "2ejpq2s13gh3jwi8cqrdc8wzde414bek", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2294, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2293", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2020-01-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.10", - "balance": "5.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2309, - "quantity": 2, - "cost": 9.55, - "product_key": "itaque", - "notes": "Veniam hic omnis iure ratione sequi laborum. Soluta dicta distinctio dicta aut corrupti minus non atque. Omnis animi fugiat praesentium ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2294, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2294, - "key": "ypbegpaa66vo6pcifgzcdwwjpebeylpo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2295, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2294", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-05", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.55", - "balance": "9.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2310, - "quantity": 5, - "cost": 2.91, - "product_key": "aut", - "notes": "Quidem qui autem et illum. Quos rerum itaque laboriosam qui. Consequatur deserunt harum aliquam inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2295, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2295, - "key": "dkowilvjfmtnrotggcmjwyylcyec2rbb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2296, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2295", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-01", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.42", - "balance": "29.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2311, - "quantity": 7, - "cost": 6.06, - "product_key": "necessitatibus", - "notes": "Expedita sed laborum exercitationem animi sunt est. Nisi nihil dolores alias illo rerum. Molestias quisquam ipsam aperiam nihil. Deleniti repudiandae sint autem est ipsum atque animi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2296, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2296, - "key": "j7hrddhwmssgs2lpoft0xubexg1fs4yp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2297, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2296", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-13", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.00", - "balance": "5.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2312, - "quantity": 4, - "cost": 9.5, - "product_key": "dolores", - "notes": "Sit molestiae et reiciendis in. Qui sunt culpa nemo error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2297, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2297, - "key": "nblkesmcso2rekxor3ito7tptv3lftub", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2298, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2297", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-01-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.65", - "balance": "2.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2313, - "quantity": 3, - "cost": 1.55, - "product_key": "est", - "notes": "Voluptatem atque fugit maxime est laudantium rerum. Minus ut dolorem qui quam ipsa exercitationem. Nemo et aspernatur et unde eos sit. Autem impedit sit dolorem sapiente recusandae id impedit placeat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2298, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2298, - "key": "zk9ch1jgqjql1a4azw9iwpwbvstce7ty", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2299, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2298", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-11", - "last_sent_date": null, - "due_date": "2020-02-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.42", - "balance": "26.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2314, - "quantity": 6, - "cost": 7.07, - "product_key": "omnis", - "notes": "Molestias unde rerum libero et. Officia sit praesentium quos rerum vitae eligendi et. Eum occaecati debitis qui officiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2299, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2299, - "key": "odawqmbdxzl7mybckfofh8xl46zussxw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2300, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2299", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.74", - "balance": "14.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2315, - "quantity": 3, - "cost": 6.58, - "product_key": "eaque", - "notes": "Voluptates pariatur sequi natus voluptatem maxime nostrum natus. Nihil debitis autem magnam et. Fuga officia deleniti rem sunt doloribus veritatis quos modi. Ut sit illum quia sit voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2300, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2300, - "key": "mvsgw28vv2vhpivuijppea9rgyonp6xo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2301, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2300", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.71", - "balance": "18.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2316, - "quantity": 9, - "cost": 5.19, - "product_key": "distinctio", - "notes": "Nobis et in nostrum similique qui eos. Quia sunt est vel nihil vel totam. Porro inventore non provident.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:43.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2301, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2301, - "key": "t0jfwi0zsopiuktdvyslz2lp0ioveycd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:43", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2302, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2301", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-08", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "82.80", - "balance": "26.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2317, - "quantity": 9, - "cost": 9.2, - "product_key": "exercitationem", - "notes": "Dolor quo itaque voluptatum laboriosam. Illo soluta numquam rerum totam velit nisi ut iste. Autem reprehenderit rerum impedit est aperiam. Ut aliquid tenetur voluptas sed neque veniam sunt. Laboriosam consequatur pariatur dolores et perferendis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2302, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2302, - "key": "qcoufzt6dxbuybjrxad8lrehv7bh4rn2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2303, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2302", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.45", - "balance": "9.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2318, - "quantity": 5, - "cost": 5.29, - "product_key": "est", - "notes": "At quia ad praesentium ut soluta quidem inventore est. A et et quisquam aut veniam illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2303, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2303, - "key": "etk4yd8bka61w9uy4ygzbmd4s9qhk86t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2304, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2303", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.25", - "balance": "47.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2319, - "quantity": 7, - "cost": 7.75, - "product_key": "quod", - "notes": "Aut exercitationem quia atque voluptatem enim esse. Incidunt sequi dolores rerum iure iusto commodi. Aliquid corrupti qui ea possimus aliquam. Quisquam expedita sint magni.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2304, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2304, - "key": "b1cjpnwwcipch6bg6eiyzqytvk4ir1wd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2305, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2304", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-20", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.99", - "balance": "1.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2320, - "quantity": 1, - "cost": 7.99, - "product_key": "corporis", - "notes": "Vitae assumenda consequatur explicabo unde ex. Libero aperiam dolore ut animi omnis rerum. Enim atque rerum nihil reiciendis qui. Nostrum dolorum quibusdam et error et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2305, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2305, - "key": "4flqpnt0iaebcva1ih0h0z3rwijppzf8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2306, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2305", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.99", - "balance": "9.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2321, - "quantity": 3, - "cost": 6.33, - "product_key": "veniam", - "notes": "Id possimus eos saepe eius molestiae. Quod est molestias et omnis molestiae. Laboriosam voluptates neque vel cupiditate illo dignissimos et. Non est architecto dolorem non eaque libero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2306, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2306, - "key": "tlc5xywragoet6tjgen4sjskcidp0hle", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2307, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2306", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-02-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "65.94", - "balance": "40.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2322, - "quantity": 7, - "cost": 9.42, - "product_key": "tenetur", - "notes": "Quisquam voluptatibus dolorem minima ut eius et asperiores error. Aut delectus consequatur modi in rerum nisi dolore nihil. Ipsam facilis voluptas alias sed ipsa autem qui voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2307, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2307, - "key": "ucfzj0va06cbz1js7btuhtxwt45vpnnj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2308, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2307", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-13", - "last_sent_date": null, - "due_date": "2020-04-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.96", - "balance": "5.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2323, - "quantity": 2, - "cost": 2.98, - "product_key": "quas", - "notes": "Quos rerum autem a. Placeat quia dolor et amet nemo occaecati quam. Numquam id amet et. Minus et corrupti et. Aut molestiae ea minus ex placeat aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2308, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2308, - "key": "fc5vgdqmbyw7mof2yki3h2frk1c9uwd5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2309, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2308", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-03-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.80", - "balance": "44.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2324, - "quantity": 5, - "cost": 9.36, - "product_key": "provident", - "notes": "Repudiandae est nostrum facere ut unde minima. Exercitationem reprehenderit recusandae autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2309, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2309, - "key": "vr3phwdvr5nuqiugtg3a5t8yif2qwqca", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2310, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2309", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-28", - "last_sent_date": null, - "due_date": "2019-12-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.90", - "balance": "3.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2325, - "quantity": 2, - "cost": 2.95, - "product_key": "sit", - "notes": "Incidunt commodi nostrum ex. Eum explicabo ut aspernatur veniam ut. Dolorem ducimus quia fugit vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2310, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2310, - "key": "lhhemrtzpvup0xhe6sq1l0pn2c6gkgmn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2311, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2310", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "82.40", - "balance": "0.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2326, - "quantity": 10, - "cost": 8.24, - "product_key": "eos", - "notes": "Eum sunt qui nihil. Quasi ducimus aut expedita maiores. Dolores tenetur ratione in fugiat tempore sed. Commodi minus modi exercitationem consequatur eaque. Eius ut cupiditate enim. Qui nihil nihil quia labore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2311, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "invoice_id": 2311, - "key": "fthmbexnd6u3oevjhjhojwp5hnsdx5n2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2412, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2411", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.60", - "balance": "42.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2427, - "quantity": 5, - "cost": 8.72, - "product_key": "ducimus", - "notes": "Voluptates voluptatum rem reiciendis labore occaecati aut vel. Ipsam et nulla ut odit. Et ab ipsa corrupti impedit omnis voluptas qui. Veritatis facilis et id ut omnis nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2412, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2412, - "key": "gad9sbdagbrupyfardc8dcgnuhaig0nw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2413, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2412", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-02-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.61", - "balance": "17.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2428, - "quantity": 3, - "cost": 6.87, - "product_key": "dolorem", - "notes": "Omnis enim hic molestias rem iste. Dolorem natus et unde nam similique. Autem earum quis eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2413, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2413, - "key": "ptdhmjxvu59bil1cccgb0n1af5mzigzx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2414, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2413", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-31", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.11", - "balance": "27.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2429, - "quantity": 7, - "cost": 6.73, - "product_key": "animi", - "notes": "Ut in aut dicta. Vel saepe alias ut. Reprehenderit in nesciunt placeat quia alias facilis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2414, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2414, - "key": "if6xzosrwwi2eif9rmp99vuakik6bgvb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2415, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2414", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2020-02-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.84", - "balance": "0.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2430, - "quantity": 2, - "cost": 1.92, - "product_key": "consequuntur", - "notes": "Rem est magnam repellat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2415, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2415, - "key": "qh3oicpxogxw7tqtr28jqbgucl0njqnj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2416, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2415", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": null, - "due_date": "2020-04-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "98.10", - "balance": "5.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2431, - "quantity": 10, - "cost": 9.81, - "product_key": "alias", - "notes": "Rerum reiciendis iusto dolores et nihil atque. Voluptatum officia necessitatibus laborum soluta cumque aperiam. Ab reiciendis aut vitae. Est nisi quidem eaque harum et aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2416, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2416, - "key": "mi1nzl8euf0ce6cdcf9ngfq1mqhejpvy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2417, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2416", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.25", - "balance": "2.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2432, - "quantity": 5, - "cost": 5.65, - "product_key": "ipsam", - "notes": "Reiciendis sit ipsa deleniti iste. Et unde magni iste pariatur fugiat sit. Suscipit qui minus non dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2417, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2417, - "key": "18bgue6z8xaqozmcrifiea3gl87xaz7u", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2418, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2417", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2020-02-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.39", - "balance": "7.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2433, - "quantity": 3, - "cost": 3.13, - "product_key": "eos", - "notes": "Est dolor fugiat nam. Maiores qui explicabo reiciendis distinctio aut. Atque quia iste quisquam et animi. Debitis dolore quia repudiandae maiores aliquid autem rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2418, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2418, - "key": "b51xi0fordvmcif9hzzyz524nlvtxvzc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2419, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2418", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.24", - "balance": "7.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2434, - "quantity": 4, - "cost": 8.81, - "product_key": "accusamus", - "notes": "Ab ratione adipisci quo temporibus. Qui molestiae possimus voluptas qui quo sapiente. Dolor totam blanditiis doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2419, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2419, - "key": "0bos94ewruy3fhqqdsrwfgehy53awlqr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2420, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2419", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.80", - "balance": "23.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2435, - "quantity": 8, - "cost": 3.6, - "product_key": "et", - "notes": "Quisquam consectetur deserunt numquam nihil maxime earum est. Est reiciendis excepturi qui repellendus. Fugit aspernatur deleniti tempora. Et corporis modi ad consectetur voluptatum. Quos et odit iure praesentium. Ex ut facilis omnis quaerat maxime asperiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2420, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2420, - "key": "5sfzvpa7biixux7wq8ssmasm7jvclote", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2421, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2420", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-01", - "last_sent_date": null, - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.24", - "balance": "3.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2436, - "quantity": 4, - "cost": 4.81, - "product_key": "optio", - "notes": "Impedit quam praesentium dignissimos unde minima commodi adipisci. Ut ut sit a dolorum quam et. Ea tempore dolore ut aut consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2421, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2421, - "key": "aznmvu3y6p97fbkgjgs3oapqxpqoadgm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2422, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2421", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-26", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.99", - "balance": "15.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2437, - "quantity": 9, - "cost": 4.11, - "product_key": "cum", - "notes": "Eligendi et deserunt aliquid sunt. Molestiae aperiam est sapiente tempora.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2422, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2422, - "key": "y4pnk8cfl2bxficn1pob8iitsntvnw6w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2423, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2422", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.88", - "balance": "0.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2438, - "quantity": 2, - "cost": 1.44, - "product_key": "possimus", - "notes": "Et aliquam ut blanditiis adipisci temporibus quisquam est consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2423, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2423, - "key": "7yrkuwjzfgjokalmrg73woj3ovmj94yd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2424, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2423", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.08", - "balance": "29.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2439, - "quantity": 8, - "cost": 6.01, - "product_key": "qui", - "notes": "Molestiae iste excepturi assumenda possimus quia. Et corporis debitis quos officiis. Inventore ea laboriosam enim ut tempora. Recusandae quasi incidunt aut quo atque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2424, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2424, - "key": "miuyyp7nik7lvtdj2bgxirybjwczn777", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2425, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2424", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.68", - "balance": "16.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2440, - "quantity": 4, - "cost": 5.92, - "product_key": "iste", - "notes": "Enim nam omnis doloribus dicta eum dolorum similique. Cum autem qui adipisci beatae. Voluptatum non dolores quis fugiat laborum temporibus fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2425, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2425, - "key": "bcgdwizmnv8dv40cczivl9tonlp27fjo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2426, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2425", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-03", - "last_sent_date": null, - "due_date": "2020-06-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.48", - "balance": "4.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2441, - "quantity": 1, - "cost": 5.48, - "product_key": "itaque", - "notes": "Sit consequuntur iure sunt minus nostrum exercitationem blanditiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2426, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2426, - "key": "4cyalrdht62qrstp2jqv97ox9pvduyim", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2427, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2426", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-16", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.02", - "balance": "7.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2442, - "quantity": 6, - "cost": 2.17, - "product_key": "optio", - "notes": "Vel doloremque delectus excepturi unde magni ratione. At possimus sit aliquid tempore architecto odio. Similique rem consequatur blanditiis voluptatem quod.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2427, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2427, - "key": "cslw0b4asqepgbmq5myuqafnxrgbafmg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2428, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2427", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2020-03-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.48", - "balance": "2.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2443, - "quantity": 2, - "cost": 1.24, - "product_key": "beatae", - "notes": "Provident possimus dolore sequi. Qui inventore in tenetur doloribus molestiae eaque asperiores. Excepturi est ratione laboriosam tenetur iste qui odio. Exercitationem ut accusantium veritatis voluptatem quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2428, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2428, - "key": "wgf8cf0hli85yxnrlw7cdzxgqunv82r1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2429, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2428", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.67", - "balance": "18.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2444, - "quantity": 3, - "cost": 8.89, - "product_key": "amet", - "notes": "Ab tempore qui ut ut praesentium. Non quia magni vel est qui et ipsum. Cupiditate voluptatibus maiores molestiae ex consequatur inventore hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2429, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2429, - "key": "6jd93w7oydpzyegfryszs2lqprcgpvxf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2430, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2429", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-12", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.74", - "balance": "4.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2445, - "quantity": 9, - "cost": 3.86, - "product_key": "qui", - "notes": "Est in ea sequi sint non voluptatibus aut. Voluptatem rerum omnis ut sint odio eum voluptatem error. Et ipsa blanditiis qui quod qui. Odio occaecati et nostrum est inventore consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2430, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2430, - "key": "xnktv5aqgb5ksl8bokha7ooyvc0apipd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2431, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2430", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-05", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.84", - "balance": "14.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2446, - "quantity": 6, - "cost": 5.64, - "product_key": "et", - "notes": "Id vero aut fugiat. Voluptatum quia quo sit id. Aut eos sequi maxime impedit. Vero sit facere similique quae molestiae corporis. Eveniet ut voluptates quam enim. Et laborum ut voluptatem sint autem incidunt nihil eos. Voluptatem quis laboriosam rerum sapiente suscipit voluptatem error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2431, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2431, - "key": "kxflhmvbrarp8lqc8dc5cjgykwgfok5h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2432, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2431", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-26", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.60", - "balance": "0.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2447, - "quantity": 8, - "cost": 1.45, - "product_key": "reprehenderit", - "notes": "Consequatur qui hic quod qui. Ea nobis non sed nobis fugiat autem. Ad aliquid aut placeat ducimus dicta odit quidem. Et sunt sed et accusantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2432, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2432, - "key": "b9ve3bcrgwurplkpqxlvhjvacjwwtgrr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2433, - "client_id": 25, + "id": 10370, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 5, + "status_id": 3, "design_id": 1, - "number": "2432", + "number": "0013", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-03-12", + "date": "2020-07-12", "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.78", - "balance": "35.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2448, - "quantity": 7, - "cost": 9.54, - "product_key": "qui", - "notes": "Minus mollitia incidunt ad et nesciunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2433, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2433, - "key": "fcfxjcznzp8wogdqk2ybywizxtwpxtao", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2434, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2433", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": "2020-03-14", - "due_date": "2020-01-28", + "due_date": "2020-08-28", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", @@ -98254,12434 +6121,6 @@ "private_notes": "", "terms": "", "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.84", - "balance": "32.59", - "partial": "0.00", - "partial_due_date": null, - "line_items": [ - { - "id": 2578, - "quantity": 9, - "cost": 5.76, - "product_key": "aut", - "notes": "Atque dolorum possimus hic aut illum voluptas et. Sunt velit saepe consequatur totam qui quis voluptatem. Aliquam eos repellendus perferendis eum inventore.", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-03-14 21:30:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 2434, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2434, - "key": "xzpvrfczg0bvzjsuen1rn08jxrtkh0ae", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2435, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2434", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.12", - "balance": "1.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2450, - "quantity": 3, - "cost": 2.04, - "product_key": "quia", - "notes": "Possimus asperiores nobis sed. Temporibus est alias eos sed possimus voluptas perferendis maiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2435, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2435, - "key": "kkbtbm4jqa8u563fczfpjlvholgd7ans", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2436, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2435", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-03-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.30", - "balance": "6.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2451, - "quantity": 10, - "cost": 1.93, - "product_key": "consequatur", - "notes": "Odio cum aut similique aliquid vel expedita corrupti quisquam. Qui voluptates ea accusantium consequatur voluptatem. Quis ab et quisquam. Omnis aut quis quasi dolor pariatur assumenda. Quia alias magni quo magnam qui quod.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2436, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2436, - "key": "7zluh8yt1cyqj0ivbwtb8azwvukudimj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2437, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2436", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.00", - "balance": "16.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2452, - "quantity": 4, - "cost": 7, - "product_key": "quidem", - "notes": "Quia consectetur rem corrupti et et saepe sint aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2437, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2437, - "key": "5lmcvclio3n2q1hb6xfiugn0ulk9kcpu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2438, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2437", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-06-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.12", - "balance": "40.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2453, - "quantity": 8, - "cost": 6.89, - "product_key": "iste", - "notes": "Qui qui quisquam vitae sed fuga id voluptatibus dolores. Nulla magni qui vel eveniet ut in. Quasi nostrum non soluta est eaque nostrum quis aut. Id in expedita consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2438, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2438, - "key": "qr33uk9gbzpfhapyq2quh1ljjkhrhev0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2439, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2438", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.43", - "balance": "3.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2454, - "quantity": 3, - "cost": 1.81, - "product_key": "qui", - "notes": "Et quia et facilis perferendis. Dignissimos cum iste corrupti qui assumenda. Alias officia eveniet sed aut voluptatibus odio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2439, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2439, - "key": "hsf2g6aerqgb22rief166e2y8oz82eiv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2440, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2439", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.64", - "balance": "8.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2455, - "quantity": 8, - "cost": 6.33, - "product_key": "eos", - "notes": "Et architecto quos saepe animi. Esse minima quia neque nam voluptas fugit sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2440, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2440, - "key": "kl5mmbiybsorcjchbuc1bbmb55clotap", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2441, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2440", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.83", - "balance": "6.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2456, - "quantity": 7, - "cost": 1.69, - "product_key": "harum", - "notes": "Quibusdam temporibus quae laborum ut culpa. A necessitatibus sint culpa illum id aspernatur vel vel. Velit et eveniet id voluptatum labore ad in. A ratione nesciunt modi aliquam explicabo et perspiciatis voluptate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2441, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2441, - "key": "0bx5t6pa3hgchivqffamfsqzgi8y3eo5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2442, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2441", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.25", - "balance": "20.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2457, - "quantity": 7, - "cost": 4.75, - "product_key": "architecto", - "notes": "Nisi accusamus necessitatibus ex dolores delectus aspernatur itaque nemo. Sit non fuga qui mollitia. Omnis sed autem at omnis. Sequi ipsam velit fugit architecto qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2442, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2442, - "key": "fxnvc2hokbvgmk8ba5q6vracf560sqod", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2443, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2442", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-20", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.20", - "balance": "18.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2458, - "quantity": 10, - "cost": 2.02, - "product_key": "assumenda", - "notes": "Voluptas iusto recusandae possimus quisquam saepe sed laborum. Aut eum quod harum aperiam sit quis velit. Non iusto et enim laudantium aut nisi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2443, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2443, - "key": "jyrlmp7mhtl54upahox3worwhrbs1jcr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2444, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2443", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-08", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.24", - "balance": "18.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2459, - "quantity": 4, - "cost": 8.81, - "product_key": "consectetur", - "notes": "Minus dolor eum animi recusandae molestiae suscipit molestiae. Ea cum omnis est ut optio. Consequatur similique quis magnam mollitia omnis ad voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2444, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2444, - "key": "a1lwsmu7mjcrsqhusmsvkragm2w95hjg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2445, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2444", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-28", - "last_sent_date": null, - "due_date": "2019-12-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.36", - "balance": "1.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2460, - "quantity": 9, - "cost": 2.04, - "product_key": "nisi", - "notes": "Et nisi qui aut atque quos. Nihil ex laborum sunt. Autem quibusdam nulla est omnis perspiciatis et dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2445, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2445, - "key": "mlvzdb992wdrow3dugemd3ukevtrx1b3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2446, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2445", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2020-01-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.08", - "balance": "18.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2461, - "quantity": 6, - "cost": 7.68, - "product_key": "corporis", - "notes": "Sed beatae quo minus ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2446, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2446, - "key": "gfhivnuqemyixoucjulm3fdp44mayway", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2447, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2446", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2020-04-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.07", - "balance": "0.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2462, - "quantity": 1, - "cost": 2.07, - "product_key": "doloremque", - "notes": "Sint dolores reprehenderit nobis. Et sed pariatur aut voluptate accusamus quisquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2447, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2447, - "key": "qmcprnhqu8npazm0eh48z2nnni02uz9a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2448, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2447", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.00", - "balance": "44.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2463, - "quantity": 9, - "cost": 7, - "product_key": "provident", - "notes": "Earum mollitia sapiente saepe vel et itaque. Pariatur dolor et consectetur architecto dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2448, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2448, - "key": "eltrghr3f0qqrnfhgoazd3yshtnlj2q4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2449, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2448", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-06-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.10", - "balance": "4.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2464, - "quantity": 5, - "cost": 5.42, - "product_key": "dolorum", - "notes": "Dicta omnis nihil aspernatur. Corrupti dolor quo numquam voluptatem blanditiis. Odit pariatur voluptate eum vel qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2449, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2449, - "key": "xwv8lcjv114lzmcmhnjoq1g0fethwqaa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2450, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2449", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.98", - "balance": "0.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2465, - "quantity": 9, - "cost": 2.22, - "product_key": "pariatur", - "notes": "Ullam quis dicta vel nostrum ut non aut. Aliquam quo et ipsum non. Odit est veniam eveniet odio quas dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2450, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2450, - "key": "1vj2jcezcdo2hzwuzz1xvvzj4td5vce7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2451, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2450", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2020-03-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.73", - "balance": "6.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2466, - "quantity": 7, - "cost": 3.39, - "product_key": "facere", - "notes": "Voluptatem aut sint voluptatem tempore. Minus et rerum iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2451, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2451, - "key": "h37ohttp2hnic8rlrj5bsggnpkkpguge", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2452, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2451", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-10", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.94", - "balance": "5.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2467, - "quantity": 9, - "cost": 2.66, - "product_key": "qui", - "notes": "Dolores sit consequatur maiores quia natus. Voluptatem assumenda unde in voluptate veritatis molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2452, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2452, - "key": "qugdxm5ifi0a1xrsd3bpzwsjzh0lsp20", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2453, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2452", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-06-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.56", - "balance": "18.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2468, - "quantity": 2, - "cost": 9.78, - "product_key": "et", - "notes": "Molestiae corporis ea nostrum. Ea quod adipisci at voluptatum. Aliquam nesciunt ut facere temporibus non tempora quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2453, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2453, - "key": "4fltecfsgvtgcc4u8wkl0gea6mxnjbxl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2454, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2453", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-15", - "last_sent_date": null, - "due_date": "2020-01-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.98", - "balance": "3.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2469, - "quantity": 2, - "cost": 3.99, - "product_key": "rerum", - "notes": "Odio assumenda molestias itaque et saepe laborum. Libero et quibusdam ad non molestiae mollitia quo. Voluptatem sequi sit maiores quaerat vel consectetur totam aut. Sit maxime quaerat qui nisi ut autem cupiditate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2454, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2454, - "key": "5ljgazl4tpb7p2kcq93sngr9av2zxqpm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2455, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2454", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.27", - "balance": "4.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2470, - "quantity": 9, - "cost": 3.03, - "product_key": "quia", - "notes": "Nemo dolorum unde id praesentium fuga id non. Sit ad quas reprehenderit id illum qui esse harum. Earum odit blanditiis consequatur temporibus at nostrum molestiae. Culpa modi quibusdam et mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2455, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2455, - "key": "jeraazbicjblvofbsyufoq7ptjodjrjr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2456, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2455", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.24", - "balance": "9.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2471, - "quantity": 4, - "cost": 7.06, - "product_key": "quis", - "notes": "Porro perferendis quia nesciunt modi. Molestiae assumenda qui recusandae ipsum aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2456, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2456, - "key": "hw0dssltyxfup3dgk9bpuqpj7xs5jh13", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2457, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2456", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-02-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.56", - "balance": "17.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2472, - "quantity": 2, - "cost": 9.28, - "product_key": "aspernatur", - "notes": "Quam et et veritatis distinctio sit et. Sed repellendus qui expedita hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2457, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2457, - "key": "lhono2xjspvwaah7yrtqas4y48v8awf9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2458, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2457", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-12", - "last_sent_date": null, - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.76", - "balance": "15.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2473, - "quantity": 6, - "cost": 7.46, - "product_key": "maiores", - "notes": "Odio voluptate distinctio quos tempora maiores. Sed aliquid beatae doloremque est unde magni nihil. Quos eos optio reprehenderit consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2458, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2458, - "key": "vrjgrz3duf517xqysbmfed0swdq34glf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2459, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2458", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-19", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.45", - "balance": "5.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2474, - "quantity": 5, - "cost": 5.29, - "product_key": "fuga", - "notes": "Et et expedita voluptas vel. Quisquam sint sunt debitis et. Veniam aspernatur animi et magni ipsa sed ea perferendis. Quo sint repellendus est placeat est fuga voluptates.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2459, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2459, - "key": "cj8edruqct7hvmdddonlpo5tminsoh26", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2460, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2459", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-28", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.96", - "balance": "5.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2475, - "quantity": 8, - "cost": 1.37, - "product_key": "veritatis", - "notes": "Sed quo sint aut unde aut at est. Et fuga saepe nesciunt omnis. Dolor ratione aut maxime quo nisi fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2460, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2460, - "key": "1kgrhvxe0pqw4bhu3plfjgdaog8ufhbz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2461, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2460", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2020-03-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "71.40", - "balance": "7.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2476, - "quantity": 10, - "cost": 7.14, - "product_key": "neque", - "notes": "Rerum velit provident nisi sunt placeat iste incidunt. Consectetur doloribus alias et aut praesentium consequatur. Enim perferendis architecto non asperiores debitis quidem repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2461, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2461, - "key": "gdn0wkhbgqzz0atviuwbnfra1tqpcwwb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2462, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2461", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.50", - "balance": "23.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2477, - "quantity": 10, - "cost": 4.65, - "product_key": "sit", - "notes": "Dicta assumenda natus a et. Ut pariatur et qui aperiam quo voluptatem. Sit corporis quia autem facere. Eligendi aliquid quas tempore voluptas consequatur odio eius omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2462, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2462, - "key": "jcozhgfapwdn830osrr6n8hdtlvbu9hj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2463, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2462", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.96", - "balance": "22.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2478, - "quantity": 4, - "cost": 8.24, - "product_key": "non", - "notes": "Excepturi vero debitis commodi fugiat explicabo tenetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2463, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2463, - "key": "r5m8bz8xjay8yfkgdalihr42rvrhrmub", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2464, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2463", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-13", - "last_sent_date": null, - "due_date": "2020-06-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.84", - "balance": "0.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2479, - "quantity": 6, - "cost": 9.14, - "product_key": "recusandae", - "notes": "Natus sed nisi dolor. Ea et rerum ea dolor mollitia. Eum aut sit sapiente voluptatem sint magni.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2464, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2464, - "key": "o1fug9hsp3renpgmuqjgiskd9npgpfvi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2465, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2464", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.96", - "balance": "3.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2480, - "quantity": 4, - "cost": 1.49, - "product_key": "sint", - "notes": "Consequuntur id repellendus corrupti aliquam omnis optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2465, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2465, - "key": "vjhlzxtrikb36jh5wf7jeplsf2fbgzb4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2466, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2465", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.32", - "balance": "30.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2481, - "quantity": 4, - "cost": 9.08, - "product_key": "nam", - "notes": "Dolore ipsam doloremque alias corporis sit quia ut. Nesciunt ullam qui cum adipisci veniam. Ea vero consequatur nihil. Quia praesentium rerum quis qui porro quia molestias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2466, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2466, - "key": "l4hrzomoxwgetxwj5z2h0vcruldzve4k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2467, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2466", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.23", - "balance": "2.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2482, - "quantity": 3, - "cost": 3.41, - "product_key": "labore", - "notes": "Veniam animi ducimus fuga modi fugit. Repellendus fugit et qui aut sed eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2467, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2467, - "key": "on9fjd75zivcya2vydeztiafkqgwowdr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2468, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2467", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.19", - "balance": "7.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2483, - "quantity": 7, - "cost": 7.17, - "product_key": "autem", - "notes": "Dolor ex qui nam quia fugiat quos. Nobis consectetur et ab sunt. Voluptatibus facere quo autem nihil architecto aut. Molestiae dolor voluptatem doloremque atque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2468, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2468, - "key": "2fbhz8no4wmoc3mpazohhlh5pediivwg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2469, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2468", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-09", - "last_sent_date": null, - "due_date": "2019-12-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.68", - "balance": "8.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2484, - "quantity": 8, - "cost": 2.96, - "product_key": "doloribus", - "notes": "Numquam corrupti laborum repellat voluptatem. Neque nulla tempore nihil. Sit nulla maiores sapiente temporibus est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2469, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2469, - "key": "5kme5wsx902c7ltczzav0wpo2yhfl0k8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2470, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2469", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.00", - "balance": "19.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2485, - "quantity": 10, - "cost": 4.8, - "product_key": "sed", - "notes": "Quo cupiditate totam laudantium optio eos qui. Consectetur voluptate quis magnam optio explicabo perferendis. Esse nulla eum sint laboriosam non aliquid quis eum. Consequuntur fugit aut dolorem libero excepturi amet iste at. Est et minima aut ea adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2470, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2470, - "key": "zynwgxk5p7xaus9va4ozmyjhswiqrxxq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2471, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2470", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.12", - "balance": "24.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2486, - "quantity": 7, - "cost": 4.16, - "product_key": "commodi", - "notes": "Placeat sint quia minus. Et quam enim nemo iste. Amet minus hic sit quia nostrum dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2471, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2471, - "key": "ng1fhhcowbv92w7xq7emsz6bebwu1z2z", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2472, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2471", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-05-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.64", - "balance": "16.89", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2487, - "quantity": 6, - "cost": 3.44, - "product_key": "facere", - "notes": "Qui tempora commodi voluptatem molestiae optio distinctio quidem optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2472, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2472, - "key": "2fjlxeu3l7ypsea02oqeox9eitmy6l4t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2473, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2472", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.71", - "balance": "2.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2488, - "quantity": 1, - "cost": 7.71, - "product_key": "et", - "notes": "Est ea omnis dolore totam. Ex est vel ducimus quibusdam aspernatur. Praesentium quia sequi delectus quaerat. In ipsum nobis omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2473, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2473, - "key": "fzuwunrcbiungsosdh0rnmvsnyfzmvrx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2474, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2473", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2019-12-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.72", - "balance": "25.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2489, - "quantity": 8, - "cost": 3.34, - "product_key": "qui", - "notes": "Dolores et aut dolorem ea dolorum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2474, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2474, - "key": "hyndh0wr3fztidkfdbxbmvd8ku50i1gp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2475, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2474", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-04-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.18", - "balance": "13.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2490, - "quantity": 6, - "cost": 3.03, - "product_key": "minus", - "notes": "Aliquid cupiditate et reiciendis distinctio eum et. Debitis dolor qui necessitatibus labore quia et ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:49.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2475, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2475, - "key": "rptndracd6qkhs7v5kpz0e8ehfv7dct0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2476, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2475", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-27", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.60", - "balance": "15.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2491, - "quantity": 8, - "cost": 2.7, - "product_key": "cupiditate", - "notes": "Hic harum ut eius fugit. A et officia quis eum et delectus blanditiis. Eligendi totam laudantium sit. Ratione dolores voluptas molestias voluptatem voluptatem ut sunt. Natus quia suscipit eveniet sit consequuntur quos commodi. Et ad quia magnam ut numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2476, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2476, - "key": "kjqx18roivstzat9kmuhyeh2kpupj6cr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2477, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2476", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2020-03-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.02", - "balance": "16.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2492, - "quantity": 9, - "cost": 3.78, - "product_key": "qui", - "notes": "Consequatur itaque suscipit rerum officiis. Quod dignissimos nostrum unde consequuntur. Delectus et eos ut tenetur excepturi repellat qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2477, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2477, - "key": "fa9grbhuvl1hlbtwc1uwv2ifhf68ta7b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2478, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2477", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2020-04-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.11", - "balance": "12.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2493, - "quantity": 3, - "cost": 8.37, - "product_key": "architecto", - "notes": "Fugit et minima ullam accusantium. Voluptas possimus saepe nihil dicta dicta veniam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2478, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2478, - "key": "vymxwl4gnjwlycjnczklj9y7dg1xb80o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2479, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2478", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.36", - "balance": "8.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2494, - "quantity": 2, - "cost": 7.18, - "product_key": "velit", - "notes": "Vitae dicta dignissimos in earum eos est. Quibusdam dolore voluptatem blanditiis vel. Nihil eligendi sapiente ipsa veniam consectetur sapiente. Dolorum delectus quia omnis dolorum officia impedit perferendis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2479, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2479, - "key": "ovbzuo5gpfpp4qhxdnkfnbucf8x6onry", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2480, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2479", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2020-03-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.74", - "balance": "6.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2495, - "quantity": 2, - "cost": 5.37, - "product_key": "nobis", - "notes": "Porro at illo dicta vitae et necessitatibus molestias sit. Non et ullam expedita dolor dolorem praesentium vel doloremque. Repudiandae sint eveniet alias itaque cupiditate est id. Quas sint esse labore unde ex.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2480, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2480, - "key": "uyrlwdwgpvga9m7vuejgurztjdjcroea", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2481, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2480", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2020-05-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.03", - "balance": "8.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2496, - "quantity": 3, - "cost": 4.01, - "product_key": "est", - "notes": "In et inventore totam. Deserunt voluptatem expedita asperiores reprehenderit dolorum. Soluta cumque impedit sunt quia id eos aperiam. Officia recusandae ut facilis maiores quibusdam repellat odio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2481, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2481, - "key": "4bv3qvzqa4jt2iyhvbwxibwwljnzwmsr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2482, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2481", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.40", - "balance": "35.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2497, - "quantity": 10, - "cost": 3.74, - "product_key": "ut", - "notes": "Soluta quibusdam omnis reprehenderit vero. Qui incidunt in dolor suscipit minus autem vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2482, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2482, - "key": "3qqhk0vowadbkhldxdm2vysx5b8gulpi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2483, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2482", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.32", - "balance": "14.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2498, - "quantity": 4, - "cost": 9.58, - "product_key": "error", - "notes": "Et incidunt voluptatem ullam impedit ut. Repellendus dolorum delectus quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2483, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2483, - "key": "bgjkwfdaef6jzlrwa7qkv8br7englgpe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2484, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2483", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-16", - "last_sent_date": null, - "due_date": "2020-03-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.75", - "balance": "37.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2499, - "quantity": 5, - "cost": 9.35, - "product_key": "commodi", - "notes": "Sit quibusdam iure sed porro aut sit. Unde repellat necessitatibus qui vitae ut corporis. Cumque magnam et praesentium velit corporis corporis ipsam consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2484, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2484, - "key": "ukmuykrek4hpcjg6kswgazuqirdtxody", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2485, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2484", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.52", - "balance": "17.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2500, - "quantity": 8, - "cost": 2.19, - "product_key": "doloremque", - "notes": "Quam repellat voluptatibus ut tempore odio est. Atque id consectetur voluptatibus velit fugit mollitia. Sapiente officia voluptas ducimus quo rerum eos est. Rerum repellendus aperiam ea eligendi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2485, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2485, - "key": "sgy5vzsefkrrwccjou4xdqci8cdytdoh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2486, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2485", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.72", - "balance": "20.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2501, - "quantity": 4, - "cost": 6.43, - "product_key": "ipsum", - "notes": "Sit sit omnis reprehenderit. Eos odit saepe voluptas necessitatibus voluptate. Alias ut voluptatem mollitia nesciunt cumque ut qui. Illum qui atque dignissimos rerum sint consequuntur sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2486, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2486, - "key": "kzuzm6lr3e1hn8o5eww9exb9p4otnreq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2487, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2486", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-29", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.58", - "balance": "6.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2502, - "quantity": 2, - "cost": 3.79, - "product_key": "velit", - "notes": "Commodi et sint dolores voluptatem. Error porro doloremque ut accusamus. Quaerat est aut enim quas est et aliquam quos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2487, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2487, - "key": "kypvbq2lshgzppgpof90gwxuyv7jtewv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2488, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2487", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.83", - "balance": "25.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2503, - "quantity": 3, - "cost": 9.61, - "product_key": "consequatur", - "notes": "Voluptatem fugiat voluptatum animi unde. Quas ipsam est maxime sapiente. Odit deserunt rerum quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2488, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2488, - "key": "0wnkciupaxvimb9kj4hufrmbuuakguwl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2489, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2488", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.00", - "balance": "8.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2504, - "quantity": 5, - "cost": 1.8, - "product_key": "perspiciatis", - "notes": "Aperiam fuga error qui. Eos necessitatibus adipisci ex. Temporibus alias unde illum beatae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2489, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2489, - "key": "kxpweir6bvkvghpgjusbqis8j9dzsuo1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2490, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2489", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.92", - "balance": "16.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2505, - "quantity": 4, - "cost": 7.23, - "product_key": "labore", - "notes": "Sit ut ullam facilis cupiditate facere. Quia maiores voluptas optio et nobis voluptas. Nesciunt quam debitis esse itaque a est quam. Et minima illo commodi non aut. Et id nulla dolores veniam. Necessitatibus blanditiis natus in vel incidunt culpa laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2490, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2490, - "key": "i74bgls1ivwsqa77bfzw4adxdod4sw6m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2491, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2490", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-20", - "last_sent_date": null, - "due_date": "2020-01-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "58.73", - "balance": "35.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2506, - "quantity": 7, - "cost": 8.39, - "product_key": "dolorum", - "notes": "Veniam quas illo corporis at quaerat. Praesentium eveniet expedita delectus asperiores. Odit quasi repellendus nihil consequatur qui magnam ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2491, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2491, - "key": "i6sxc2jpmc3mfjlfnknlnkdanxshfsym", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2492, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2491", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-02-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.20", - "balance": "4.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2507, - "quantity": 10, - "cost": 2.32, - "product_key": "ad", - "notes": "Minima et vel itaque non facere. A rerum aut nesciunt non mollitia doloribus. Ex quod quae veritatis tempore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2492, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2492, - "key": "catgmvtaczcs3neeywtrv1cqz97ndijq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2493, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2492", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.12", - "balance": "21.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2508, - "quantity": 7, - "cost": 3.16, - "product_key": "quia", - "notes": "Sequi doloremque nostrum quis autem id quia. Qui non at id tempore inventore. Eos id nostrum in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2493, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2493, - "key": "w7m6gd6alzhakddn0bfpil8pja7zxmlv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2494, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2493", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-02", - "last_sent_date": null, - "due_date": "2020-03-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.76", - "balance": "6.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2509, - "quantity": 4, - "cost": 3.69, - "product_key": "et", - "notes": "Consequatur reprehenderit ullam porro sint. Ipsum quibusdam libero voluptas magni voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:50.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2494, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2494, - "key": "bxpkrp42hyrwvwe5kfmxdlgyqcksw9vu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:50", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2495, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2494", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.52", - "balance": "9.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2510, - "quantity": 4, - "cost": 7.13, - "product_key": "delectus", - "notes": "Doloremque dolorem ut non et perferendis. Dolores velit commodi quibusdam aliquid repellat et. Voluptatem blanditiis possimus cupiditate vitae nobis excepturi. Sunt temporibus quasi voluptates nisi hic eos tempore ut. Aut repellendus aspernatur voluptatem neque aut non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2495, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2495, - "key": "2xuap0xinuypymbzexnsrzxynifin5mz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2496, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2495", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.90", - "balance": "12.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2511, - "quantity": 6, - "cost": 2.65, - "product_key": "atque", - "notes": "Laborum non exercitationem non vero et. Amet nostrum et quasi sint vel. Labore sit ullam non dolorum itaque voluptatem exercitationem nobis. Rem magnam doloremque qui qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2496, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2496, - "key": "yzfybpn1nu2lqfuiakehnmwvkkbje1ch", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2497, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2496", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.18", - "balance": "13.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2512, - "quantity": 2, - "cost": 9.09, - "product_key": "cumque", - "notes": "Unde delectus quis aliquid saepe rerum unde. Aut ipsa voluptatibus ut quas et ut et. Quos laudantium sint et et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2497, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2497, - "key": "adtwp64jzmyjepxkiai8tvmmt8ks4ico", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2498, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2497", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.50", - "balance": "57.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2513, - "quantity": 10, - "cost": 6.45, - "product_key": "nulla", - "notes": "Aspernatur expedita in voluptate quis. Ducimus non dolores dolores neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2498, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2498, - "key": "gq4rljfwu5h8vc6tluii5bfhbjti5vis", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2499, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2498", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.18", - "balance": "2.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2514, - "quantity": 6, - "cost": 3.53, - "product_key": "aperiam", - "notes": "At enim iste voluptas enim aut qui. Qui animi ipsam cupiditate vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2499, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2499, - "key": "xfocsgnhyjayidzqonfa2bhnyheebhdu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2500, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2499", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.80", - "balance": "21.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2515, - "quantity": 5, - "cost": 8.56, - "product_key": "voluptas", - "notes": "Rerum at et et corporis facere ipsa. Facere fugit non est. Dolore dolore et rerum odit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2500, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2500, - "key": "rghnglrfifkplry5sxecitscng2k6aeu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2501, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2500", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "78.80", - "balance": "58.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2516, - "quantity": 10, - "cost": 7.88, - "product_key": "molestias", - "notes": "In adipisci corrupti quae ea. Unde itaque et quasi alias in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2501, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2501, - "key": "hiuitvyogndqdwbofvokvq1r8dhjukyw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2502, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2501", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.03", - "balance": "2.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2517, - "quantity": 3, - "cost": 3.01, - "product_key": "voluptates", - "notes": "Aspernatur fuga quis eius et qui quam voluptas. Cum reprehenderit magni illo saepe sapiente sint. Saepe voluptates veniam sapiente consequatur. Et quos exercitationem voluptatibus in perspiciatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2502, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2502, - "key": "sjx3n6ovummgkbaqhhm8lek2qny24szr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2503, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2502", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-13", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.84", - "balance": "40.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2518, - "quantity": 8, - "cost": 5.98, - "product_key": "ea", - "notes": "Occaecati quaerat magni dolor labore vel. Nihil est ea eligendi blanditiis odit. Nobis occaecati qui quisquam eius. Iusto nisi nulla minima dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2503, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2503, - "key": "cyn9ahczkxq6zrupqs44fnwde5jkilej", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2504, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2503", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-26", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.52", - "balance": "2.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2519, - "quantity": 7, - "cost": 3.36, - "product_key": "asperiores", - "notes": "Error reiciendis est eum sit mollitia. Iste animi est sunt tenetur possimus ex sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2504, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2504, - "key": "9nwulb0l8ouoid9pb1bacswx6fag0bgr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2505, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2504", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.84", - "balance": "15.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2520, - "quantity": 8, - "cost": 2.73, - "product_key": "illum", - "notes": "Aut dolor mollitia omnis. Et dolores fugit repellat libero explicabo. Impedit voluptas et non ut est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2505, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2505, - "key": "9ejd79bmpzsjfrlbdzjeoxkuv9u07cuy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2506, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2505", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.83", - "balance": "0.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2521, - "quantity": 1, - "cost": 3.83, - "product_key": "quam", - "notes": "Exercitationem et dolor est voluptatibus quasi non voluptatem. Et ipsam nemo eum amet similique. Commodi placeat voluptatem et eaque et. Iure expedita quaerat harum ad corrupti facilis voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2506, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2506, - "key": "ly51ubwiuqcaqgzpkcnrmrqcwbxxf2bq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2507, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2506", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-18", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.32", - "balance": "9.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2522, - "quantity": 2, - "cost": 7.16, - "product_key": "minus", - "notes": "Ad molestias et autem voluptatem saepe ea. Corrupti porro praesentium blanditiis minima fugit fuga. Eaque tempore dicta et soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2507, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2507, - "key": "sewzaa9s2mzojlogqtwwwmznn5ltss8t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2508, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2507", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.22", - "balance": "12.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2523, - "quantity": 2, - "cost": 6.61, - "product_key": "reiciendis", - "notes": "Tempore qui delectus similique veritatis commodi. Sed quia et qui repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2508, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2508, - "key": "f38oi6gihhlonbocgccdc4b7q6hapnmq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2509, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2508", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-13", - "last_sent_date": null, - "due_date": "2020-01-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.72", - "balance": "5.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2524, - "quantity": 1, - "cost": 8.72, - "product_key": "magnam", - "notes": "Qui dolores molestiae ut optio. Velit provident maiores dolorem libero provident molestiae. Eos soluta in praesentium vitae nam laborum saepe. Qui veniam laboriosam quam corporis enim blanditiis. Quia reprehenderit dolore reprehenderit est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2509, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2509, - "key": "e3aripp2ongz4dbjbtwjie3rf1gfgtlm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2510, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2509", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-26", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "65.52", - "balance": "5.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2525, - "quantity": 9, - "cost": 7.28, - "product_key": "velit", - "notes": "Odio in qui qui nihil dolor. Veniam rem vel praesentium rerum velit atque. Quo nihil voluptas alias dolorem aliquam voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2510, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2510, - "key": "diykmffps3i5tylfmjps1wznquzch7o3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2511, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2510", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-31", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.80", - "balance": "7.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2526, - "quantity": 8, - "cost": 1.35, - "product_key": "rerum", - "notes": "Aut nesciunt iure asperiores esse veritatis quia. Quod sint voluptas blanditiis aut. Vero sed quia sed consectetur consequuntur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2511, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "invoice_id": 2511, - "key": "ag0pl6ilft1b4nrab1odsekgqvfop2hf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2554, - "client_id": 1, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1584221945.748879", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": "2020-03-14", - "due_date": "0000-00-00", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": "", - "terms": "", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "0.00", - "balance": "0.00", - "partial": "0.00", - "partial_due_date": null, - "line_items": [], - "created_at": "2020-03-14", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 2553, - "company_id": 1, - "user_id": 1, - "client_contact_id": 1, - "invoice_id": 2554, - "key": "wjphqsxro7vc52cuh587gjmy32seaniq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:39:05", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-14", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 2555, - "client_id": 1, - "user_id": 1, - "company_id": 1, - "status_id": 1, - "design_id": 1, - "number": "R2553", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": "2020-03-14", - "due_date": null, - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "0.00", - "balance": "0.00", - "partial": null, - "partial_due_date": null, - "line_items": [], - "created_at": "2020-03-14", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 2554, - "company_id": 1, - "user_id": 1, - "client_contact_id": 1, - "invoice_id": 2555, - "key": "qades5ehsj0sivijxxbggertgoueojiz", - "transaction_reference": null, - "message_id": null, - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": null, - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-14", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 2556, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1584222260.17998", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": "2020-03-14", - "due_date": "0000-00-00", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": "", - "terms": "", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.00", - "balance": "1.00", - "partial": "0.00", - "partial_due_date": null, - "line_items": [ - { - "id": 2580, - "quantity": 1, - "cost": 1, - "product_key": "1", - "notes": "1", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-03-14 21:44:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-14", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 2555, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 2556, - "key": "spmfrxye3yrtozvmveaacznok0qmg5t5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-14 21:44:20", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-14", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 2557, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 1, - "design_id": 1, - "number": "R2554", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": "2020-03-14", - "due_date": null, - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.00", - "balance": "1.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2581, - "quantity": 1, - "cost": 1, - "product_key": "1", - "notes": "1", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-03-14 21:44:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": "", - "custom_value2": "", - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-14", - "updated_at": "2020-03-14", - "deleted_at": null, - "invitations": [ - { - "id": 2556, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "invoice_id": 2557, - "key": "vmkn7p6kghnzcv7vvvqvfbr9uutqmjqs", - "transaction_reference": null, - "message_id": null, - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": null, - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-14", - "updated_at": "2020-03-14", - "deleted_at": null - } - ] - }, - { - "id": 2558, - "client_id": 26, - "user_id": 1, - "company_id": 1, - "status_id": 6, - "design_id": 1, - "number": "2555", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-04", - "last_sent_date": null, - "due_date": null, - "uses_inclusive_taxes": 0, - "is_deleted": 1, - "footer": "", - "public_notes": "", - "private_notes": "", - "terms": "", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "100.00", - "balance": "0.00", - "partial": "0.00", - "partial_due_date": null, - "line_items": [ - { - "id": 2584, - "quantity": 100, - "cost": 1, - "product_key": "", - "notes": "", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-04-04 08:32:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-04-04", - "updated_at": "2020-04-04", - "deleted_at": "2020-04-04", - "invitations": [ - { - "id": 2557, - "company_id": 1, - "user_id": 1, - "client_contact_id": 26, - "invoice_id": 2558, - "key": "0veioxkvjq6kc0o3jkger1m5flsdllho", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-04-04 08:32:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-04-04", - "updated_at": "2020-04-04", - "deleted_at": null - } - ] - }, - { - "id": 2559, - "client_id": 26, - "user_id": 1, - "company_id": 1, - "status_id": 5, - "design_id": 1, - "number": "2556", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-04", - "last_sent_date": null, - "due_date": null, - "uses_inclusive_taxes": 0, - "is_deleted": 1, - "footer": "", - "public_notes": "", - "private_notes": "", - "terms": "", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "100.00", - "balance": "50.00", - "partial": "0.00", - "partial_due_date": null, - "line_items": [ - { - "id": 2585, - "quantity": 100, - "cost": 1, - "product_key": "", - "notes": "", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-04-04 08:35:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-04-04", - "updated_at": "2020-04-04", - "deleted_at": "2020-04-04", - "invitations": [ - { - "id": 2558, - "company_id": 1, - "user_id": 1, - "client_contact_id": 26, - "invoice_id": 2559, - "key": "tjhfwqmiwalvzc74zxuamlfxpykzbasc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-04-04 08:35:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-04-04", - "updated_at": "2020-04-04", - "deleted_at": null - } - ] - }, - { - "id": 2560, - "client_id": 1, - "user_id": 1, - "company_id": 1, - "status_id": 1, - "design_id": 1, - "number": "2557", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": null, - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": "", - "terms": "", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.00", - "balance": "4.00", - "partial": "0.00", - "partial_due_date": null, - "line_items": [ - { - "id": 2586, - "quantity": 2, - "cost": 2, - "product_key": "a", - "notes": "", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-04-07 22:46:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-04-07", - "updated_at": "2020-04-07", - "deleted_at": null, - "invitations": [ - { - "id": 2559, - "company_id": 1, - "user_id": 1, - "client_contact_id": 1, - "invoice_id": 2560, - "key": "i3b2soihyblv0vuk6cd8sie8eh2fczhr", - "transaction_reference": null, - "message_id": null, - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": null, - "viewed_date": null, - "opened_date": null, - "created_at": "2020-04-07", - "updated_at": "2020-04-07", - "deleted_at": null - } - ] - } - ], - "quotes": [ - { - "id": 1, - "client_id": 1, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0001", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-11", - "last_sent_date": null, - "due_date": null, - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": "", - "terms": "", - "tax_name1": "", - "tax_name2": "", - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.00", - "balance": "4.00", - "partial": "0.00", - "partial_due_date": null, - "line_items": [ - { - "id": 1, - "quantity": 2, - "cost": 2, - "product_key": "a", - "notes": "", - "discount": 0, - "tax_name1": "", - "tax_rate1": 0, - "date": { - "date": "2020-02-11 20:41:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-11", - "updated_at": "2020-04-07", - "deleted_at": null, - "invitations": [ - { - "id": 1, - "company_id": 1, - "user_id": 1, - "client_contact_id": 1, - "quote_id": 1, - "key": "gbvf5ueasnrxsmnk0pg0kpyqpgbkbbya", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-04-07 22:45:57", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-11", - "updated_at": "2020-04-07", - "deleted_at": null - } - ] - }, - { - "id": 15, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0015", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.20", - "balance": "10.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 15, - "quantity": 6, - "cost": 1.7, - "product_key": "voluptas", - "notes": "Et commodi autem facilis est consequatur. Eius harum quam aperiam necessitatibus quo voluptas sunt. Et quia rerum et quisquam. Sit animi facilis provident qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 15, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "quote_id": 15, - "key": "6s1drv22pgqda2njaeka8jjcfjqowslg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 16, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0016", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.41", - "balance": "49.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 16, - "quantity": 9, - "cost": 5.49, - "product_key": "qui", - "notes": "Cumque culpa aliquid aut placeat. Impedit asperiores praesentium eum repudiandae maxime et eius. Perferendis quaerat fugit voluptate error provident illum cumque eos. Dolore quia est nam possimus distinctio natus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 16, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "quote_id": 16, - "key": "7u5cuiqyorpd8ifpsbfjh1siwlazqpkc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 17, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0017", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2019-11-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.99", - "balance": "24.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 17, - "quantity": 7, - "cost": 3.57, - "product_key": "quis", - "notes": "Quos possimus adipisci unde unde velit. Et qui eaque itaque enim voluptas occaecati.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 17, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "quote_id": 17, - "key": "xkavw2c2nhntc4ihuhonsj8u4yaagxya", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 18, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0018", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-02-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.98", - "balance": "43.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 18, - "quantity": 6, - "cost": 7.33, - "product_key": "non", - "notes": "Eveniet aperiam nihil laudantium sapiente dolorum omnis. Voluptas est sapiente voluptas non. Dolor ab accusantium quia dolor quod a. Corporis et quod ea dolor expedita.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 18, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "quote_id": 18, - "key": "8ohzyzaafuxkrelhsvqksosjqwljbxcj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 19, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0019", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-25", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.55", - "balance": "28.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 19, - "quantity": 5, - "cost": 5.71, - "product_key": "et", - "notes": "Ut aliquam veritatis rem rerum et. Nulla dolorum veritatis enim dolorem autem officia est. Odio esse libero ab aperiam et aut. Sunt rerum consequatur sunt debitis magni aut aspernatur. Id numquam officia fuga vero non omnis delectus. Fuga ducimus sint impedit qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 19, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "quote_id": 19, - "key": "udzvvt2osl23xuu9yg1flumxwo3egs8m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 20, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0020", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2020-02-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.00", - "balance": "6.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 20, - "quantity": 4, - "cost": 1.5, - "product_key": "quo", - "notes": "Et eum vero quasi ex voluptas exercitationem delectus. Ad ut vel officia accusamus. Iure ut harum est. Velit rerum ea qui totam officiis exercitationem. Magni ipsam magni perspiciatis enim nesciunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 20, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "quote_id": 20, - "key": "zsknzd76mqqknmlqc4tk2yhq57rxqrvo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 21, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0021", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-29", - "last_sent_date": null, - "due_date": "2020-02-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "84.70", - "balance": "84.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 21, - "quantity": 10, - "cost": 8.47, - "product_key": "eius", - "notes": "Reiciendis rerum omnis eaque enim excepturi eligendi voluptas exercitationem. Quia assumenda at sed quidem. Eum sed aut non ut cumque non commodi. Rerum perspiciatis rem voluptas aspernatur quo. Harum dolorem eius animi nostrum porro.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 21, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "quote_id": 21, - "key": "q20wvvihywxjohzfvv1zsdu1docr257o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 22, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0022", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2019-11-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.96", - "balance": "21.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 22, - "quantity": 9, - "cost": 2.44, - "product_key": "commodi", - "notes": "Veritatis aut officia laboriosam consequatur ea ducimus quos. Quis temporibus vel repellendus excepturi et excepturi. Nemo facilis sit est esse. Voluptatem sit eligendi ea ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 22, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "quote_id": 22, - "key": "24xezpue2dsanpoya73c2jj1ncyqkxcc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 23, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0023", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-21", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.05", - "balance": "13.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 23, - "quantity": 5, - "cost": 2.61, - "product_key": "eligendi", - "notes": "A excepturi id fuga et eius. Et enim sapiente hic nemo ex.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 23, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "quote_id": 23, - "key": "tsgdfniacorbdfe0i7wceh0w6nvyove9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 24, - "client_id": 2, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0024", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-13", - "last_sent_date": null, - "due_date": "2019-11-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.70", - "balance": "54.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 24, - "quantity": 10, - "cost": 5.47, - "product_key": "praesentium", - "notes": "Reiciendis est perspiciatis sequi possimus nesciunt et. Aut sed consectetur qui quis. Consequatur consequatur consequatur tenetur et modi tempore rerum. Dolores dolore vitae quasi voluptate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 24, - "company_id": 1, - "user_id": 1, - "client_contact_id": 2, - "quote_id": 24, - "key": "ar4qcc9cz6sbwqiuxkrmsw74lceg6n7b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 35, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0035", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-03-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.16", - "balance": "7.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 35, - "quantity": 4, - "cost": 1.79, - "product_key": "et", - "notes": "Velit ut et perspiciatis. Et facilis fugit fuga dolorum qui fuga tempore. Labore autem facere voluptates quisquam doloremque quidem et maxime. Quis doloribus odio et in impedit quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 35, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "quote_id": 35, - "key": "i2dpzadm1oqkrvtnvmf8fqwvdcj5klum", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 36, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0036", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.60", - "balance": "41.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 36, - "quantity": 10, - "cost": 4.16, - "product_key": "impedit", - "notes": "Dolorem temporibus ex quis ut atque quia nobis et. Voluptates ut hic omnis nemo. Corporis sit nam a saepe ipsum cumque optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 36, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "quote_id": 36, - "key": "qz20vijb8ojkcoef6beudxvfb2mgqqac", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 37, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0037", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "62.86", - "balance": "62.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 37, - "quantity": 7, - "cost": 8.98, - "product_key": "nulla", - "notes": "Id in rem laboriosam quae deserunt qui tempore. Eius qui in ut ullam. At aliquid fugiat dolor aliquam molestias fuga explicabo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 37, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "quote_id": 37, - "key": "bjjysxuylp8anz9lu3h4geg873ujowxq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 38, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0038", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.56", - "balance": "52.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 38, - "quantity": 9, - "cost": 5.84, - "product_key": "sapiente", - "notes": "Ipsum consequatur voluptatem non eos maiores quia. Ullam ut possimus necessitatibus fugit. Nemo perferendis ab quo adipisci expedita.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 38, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "quote_id": 38, - "key": "150c7qqfcea53gdprofce5p3uaw81pcv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 39, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0039", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-18", - "last_sent_date": null, - "due_date": "2019-12-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.99", - "balance": "52.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 39, - "quantity": 7, - "cost": 7.57, - "product_key": "ratione", - "notes": "Deserunt commodi earum et. Sequi quibusdam perspiciatis ex vitae. Vitae et odio earum nam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 39, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "quote_id": 39, - "key": "kjfkmnlfl5boipkukaxhceinxdhmvmmb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 40, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0040", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.12", - "balance": "2.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 40, - "quantity": 1, - "cost": 2.12, - "product_key": "ut", - "notes": "Cumque porro neque inventore qui molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 40, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "quote_id": 40, - "key": "3axtsqbkp4h3jtzge3rz3lzwdrynpmlc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 41, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0041", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-25", - "last_sent_date": null, - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.35", - "balance": "26.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 41, - "quantity": 5, - "cost": 5.27, - "product_key": "deserunt", - "notes": "Vitae ex voluptas beatae optio. Molestiae velit reiciendis et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 41, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "quote_id": 41, - "key": "p7gvsxm2tvzquxjl2fjiw5ew22qtjhcr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 42, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0042", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.30", - "balance": "21.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 42, - "quantity": 5, - "cost": 4.26, - "product_key": "aut", - "notes": "Mollitia in officiis quis quis. Itaque et est reiciendis et totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 42, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "quote_id": 42, - "key": "jufb5bhzmaca159cmynkfz4xiynxv7br", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 43, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0043", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-29", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.16", - "balance": "17.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 43, - "quantity": 2, - "cost": 8.58, - "product_key": "labore", - "notes": "Consequatur deserunt quisquam tempora quibusdam laboriosam. Hic doloremque consequatur voluptate. Iure officiis numquam qui minus facilis aut. Maiores et in numquam magni quod qui doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 43, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "quote_id": 43, - "key": "hlu1uojuqzrpt88ct1enzkfwfxgzbbzb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 44, - "client_id": 3, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0044", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-30", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.98", - "balance": "25.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 44, - "quantity": 3, - "cost": 8.66, - "product_key": "laboriosam", - "notes": "Libero dolores sunt nam amet. Quas eligendi enim quia. Ex sed maiores aut officia non. Minus et et est molestiae quidem sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 44, - "company_id": 1, - "user_id": 1, - "client_contact_id": 3, - "quote_id": 44, - "key": "ankad2j47uywnjej0oaimjoltz9lsk1l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 55, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0055", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-15", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.78", - "balance": "39.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 55, - "quantity": 6, - "cost": 6.63, - "product_key": "et", - "notes": "Ullam qui dolor aut ad ipsa ipsum. Nesciunt quidem ullam quod. Quae omnis voluptatem ratione voluptas sequi nobis omnis deserunt. Illum id qui debitis ipsam quam veniam expedita laboriosam. Et et incidunt tenetur optio qui accusamus. Omnis fugiat inventore expedita qui rem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 55, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "quote_id": 55, - "key": "rhgcb37sc0mlk3octhxfmrgnhse36u0c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 56, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0056", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.02", - "balance": "5.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 56, - "quantity": 1, - "cost": 5.02, - "product_key": "consequatur", - "notes": "Veritatis ut est consequuntur temporibus nemo aut quod. Facilis sed neque non dicta enim repellat est commodi. Aut sunt vitae sit non. Iure soluta molestiae omnis. Nihil tempora officiis saepe aut nulla.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 56, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "quote_id": 56, - "key": "9foajbt8jdacvc323i9wukqfyyni76zf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 57, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0057", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-21", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.35", - "balance": "29.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 57, - "quantity": 5, - "cost": 5.87, - "product_key": "ea", - "notes": "Et voluptas id qui eaque nobis illum dicta. Quas consequatur facere dicta numquam veniam enim. Rerum et accusamus et sed nemo nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 57, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "quote_id": 57, - "key": "t2yhpuxemzsorgqa1fzymeio0s5z2ihw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 58, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0058", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.56", - "balance": "7.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 58, - "quantity": 1, - "cost": 7.56, - "product_key": "minus", - "notes": "Aliquid quia quasi ut at neque accusamus. Qui molestiae impedit esse numquam. Quis totam vel autem perspiciatis et fugiat molestiae. Eaque alias nulla delectus quia est. Vero at aliquid quod fugiat. Aut repudiandae ut voluptates sint. Necessitatibus et voluptas omnis in ipsam sequi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 58, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "quote_id": 58, - "key": "jcqjoofv0xh7xtfmguizwlojx32kmgbm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 59, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0059", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-02", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.30", - "balance": "18.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 59, - "quantity": 2, - "cost": 9.15, - "product_key": "velit", - "notes": "Alias numquam maiores est odit dolores qui molestiae maxime. Et dolor et eaque illo repellat ab id alias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 59, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "quote_id": 59, - "key": "1gigzcy8efh0cjv1r2zvdtylano2kk3a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 60, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0060", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.76", - "balance": "46.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 60, - "quantity": 7, - "cost": 6.68, - "product_key": "exercitationem", - "notes": "Repellendus asperiores expedita ad possimus iusto. Nihil quod et saepe et. At est consequatur quo ut vitae enim totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 60, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "quote_id": 60, - "key": "tjn9blqmkmzik79zkahqczcvjbqsya9o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 61, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0061", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.60", - "balance": "47.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 61, - "quantity": 10, - "cost": 4.76, - "product_key": "aut", - "notes": "Dicta eveniet nihil rerum minima. Sunt doloribus quod qui eos vel fugit. Et vitae maxime qui et nam blanditiis inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 61, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "quote_id": 61, - "key": "vxvveldmqrgbnzmj7hcmqa7ues9rjcsv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 62, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0062", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2019-12-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.96", - "balance": "12.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 62, - "quantity": 4, - "cost": 3.24, - "product_key": "et", - "notes": "Et nisi quos ducimus officia delectus corrupti iusto. At omnis suscipit quo debitis dolor. Quia qui ullam dolorem quibusdam sunt sed dolorem. Dignissimos ut rerum aut ratione voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 62, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "quote_id": 62, - "key": "ywg32kcizon7cam8wdrurmx1siddobvc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 63, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0063", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-17", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.30", - "balance": "40.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 63, - "quantity": 5, - "cost": 8.06, - "product_key": "aut", - "notes": "Recusandae quibusdam at id. Itaque et qui expedita cumque id dolor cumque. Voluptas sed beatae at voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 63, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "quote_id": 63, - "key": "uh0at9tvv5pquyqkeub1et39trst8zcn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 64, - "client_id": 4, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0064", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.39", - "balance": "6.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 64, - "quantity": 1, - "cost": 6.39, - "product_key": "doloribus", - "notes": "Iste sed voluptate aspernatur voluptatibus et nesciunt modi. Natus dicta aut sunt dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:11.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 64, - "company_id": 1, - "user_id": 1, - "client_contact_id": 4, - "quote_id": 64, - "key": "q71x8bb2dkuii9zizj2n65bqnpi8akyp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:11", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 75, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0075", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": null, - "due_date": "2019-11-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.13", - "balance": "25.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 75, - "quantity": 7, - "cost": 3.59, - "product_key": "quia", - "notes": "Saepe quod veniam aut voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 75, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "quote_id": 75, - "key": "zlgjhl7fkbkjz1dkbr33wfq2mfkqekri", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 76, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0076", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-22", - "last_sent_date": null, - "due_date": "2020-03-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.84", - "balance": "57.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 76, - "quantity": 8, - "cost": 7.23, - "product_key": "ipsam", - "notes": "Sit eos vel omnis esse ipsum dolore minus et. Amet fuga maiores nisi dignissimos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 76, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "quote_id": 76, - "key": "zksngnii8tmva9navc8o9lf7guwkicsp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 77, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0077", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-01-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.38", - "balance": "51.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 77, - "quantity": 7, - "cost": 7.34, - "product_key": "reiciendis", - "notes": "Deleniti vitae porro sit dolorem facere.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 77, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "quote_id": 77, - "key": "oa4kgcrsdvvt6hikamciob3bkftd8n2u", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 78, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0078", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2019-12-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.73", - "balance": "3.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 78, - "quantity": 1, - "cost": 3.73, - "product_key": "et", - "notes": "Rerum pariatur voluptatem nihil nesciunt non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 78, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "quote_id": 78, - "key": "mlsd1cirxics2gjo9djlh7twygnjo0wm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 79, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0079", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.48", - "balance": "11.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 79, - "quantity": 4, - "cost": 2.87, - "product_key": "libero", - "notes": "Vel eum quibusdam omnis explicabo vitae quis occaecati. Culpa magni cum veritatis omnis vel. Sequi eos voluptatum rem dicta quo voluptas eaque id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 79, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "quote_id": 79, - "key": "aac2qgxree422afvv5yofot7rsbge1ht", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 80, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0080", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.92", - "balance": "49.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 80, - "quantity": 6, - "cost": 8.32, - "product_key": "fugit", - "notes": "Nesciunt qui aperiam porro porro sint in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 80, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "quote_id": 80, - "key": "psc1edbzvqswt6x8fw2pf2v1y4me0k7z", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 81, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0081", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.56", - "balance": "19.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 81, - "quantity": 4, - "cost": 4.89, - "product_key": "sed", - "notes": "Facilis eos quia dolores illum. Harum labore rem natus et omnis hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 81, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "quote_id": 81, - "key": "yq8cmwiatdenjy7euwm78xmryoh5ipkn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 82, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0082", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-26", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.76", - "balance": "41.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 82, - "quantity": 6, - "cost": 6.96, - "product_key": "repellendus", - "notes": "Ut voluptates consequatur voluptatem ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 82, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "quote_id": 82, - "key": "wgovj01hkemvybmlmoejq3q93xzes3r1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 83, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0083", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-20", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.10", - "balance": "17.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 83, - "quantity": 10, - "cost": 1.71, - "product_key": "minima", - "notes": "Iste sit eum a nam iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 83, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "quote_id": 83, - "key": "f13b2bbu5lsv4lo4k0ynconlgghg6lsd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 84, - "client_id": 5, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0084", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.40", - "balance": "20.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 84, - "quantity": 3, - "cost": 6.8, - "product_key": "a", - "notes": "Excepturi dolor rerum nam perspiciatis repudiandae quo. Voluptas qui odio voluptas earum minus nihil. Hic ut perspiciatis at repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:12.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 84, - "company_id": 1, - "user_id": 1, - "client_contact_id": 5, - "quote_id": 84, - "key": "scflc2wjljchcycwkftakbs6ua5btkhj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:12", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 95, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0095", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-09", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.10", - "balance": "4.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 95, - "quantity": 2, - "cost": 2.05, - "product_key": "veniam", - "notes": "Qui placeat aut saepe sed alias at. Reprehenderit ipsam et dolor error labore qui quos. Ipsam quidem praesentium praesentium dolorum. Et eius necessitatibus rerum doloribus est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 95, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "quote_id": 95, - "key": "jtjmoepfbdtytrq0uhhxnpi8ydih1ycy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 96, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0096", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-09", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.02", - "balance": "3.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 96, - "quantity": 2, - "cost": 1.51, - "product_key": "perferendis", - "notes": "Quaerat odio rem inventore repudiandae dolorum atque sapiente sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 96, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "quote_id": 96, - "key": "z3ucfurvzyerhxnk2bih4t26ouvjhv9e", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 97, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0097", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.72", - "balance": "35.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 97, - "quantity": 4, - "cost": 8.93, - "product_key": "quisquam", - "notes": "Voluptatibus animi aperiam eum. Hic nulla aut amet sed veritatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 97, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "quote_id": 97, - "key": "qj4fbrlljjfu6r7n1brppboqub5d9uyt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 98, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0098", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-18", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.61", - "balance": "20.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 98, - "quantity": 9, - "cost": 2.29, - "product_key": "excepturi", - "notes": "Eum modi consequuntur iusto eos. In iste quia omnis aut ea. Labore ad ea et aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 98, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "quote_id": 98, - "key": "eb92gjya5uxmf4jdn3v68mk1etgypjzr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 99, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0099", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-25", - "last_sent_date": null, - "due_date": "2020-05-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.79", - "balance": "2.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 99, - "quantity": 1, - "cost": 2.79, - "product_key": "id", - "notes": "Aperiam illum neque et soluta ut repellat aut unde. Qui sint voluptatibus id dicta sunt. Illo facilis possimus repudiandae ut aut in. Autem animi deserunt blanditiis temporibus exercitationem quaerat soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 99, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "quote_id": 99, - "key": "yaphrcloyhptbjelymc1eupgba45dtsl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 100, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0100", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.72", - "balance": "1.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 100, - "quantity": 1, - "cost": 1.72, - "product_key": "tenetur", - "notes": "Labore amet itaque ea temporibus nam quis et. Quidem cumque sed quos porro architecto architecto. Qui accusamus voluptas quam modi ex. Rem et dicta aut hic sit voluptatum. Tempore aut vel unde eum aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 100, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "quote_id": 100, - "key": "pgwaxdtoq4qhhhzt7mmie2bdwwj9ek93", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 101, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0101", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-29", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "65.12", - "balance": "65.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 101, - "quantity": 8, - "cost": 8.14, - "product_key": "consequatur", - "notes": "Harum eaque consequuntur non dolores voluptas. Numquam quia odit et beatae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 101, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "quote_id": 101, - "key": "tvlxaht3pxdcq9bc1c9nlesscxqkcarc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 102, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0102", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.60", - "balance": "15.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 102, - "quantity": 10, - "cost": 1.56, - "product_key": "dolor", - "notes": "Pariatur sunt facilis assumenda non ab explicabo. Non aspernatur rem consequuntur. Fugiat quaerat minus illum aperiam quos iure quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 102, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "quote_id": 102, - "key": "nihmxyxnjkzlsarcvf5jizkbpms0datx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 103, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0103", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.90", - "balance": "60.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 103, - "quantity": 7, - "cost": 8.7, - "product_key": "ullam", - "notes": "Aperiam porro non velit est totam. Et ea qui quia voluptatem quia voluptatum repellendus. Pariatur perspiciatis harum vel. Iure cumque error laboriosam odit consequatur aperiam maxime.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 103, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "quote_id": 103, - "key": "k02ud2aebpivjpyigddy06kbs2pbi5uz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 104, - "client_id": 6, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0104", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": null, - "due_date": "2020-04-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.23", - "balance": "19.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 104, - "quantity": 3, - "cost": 6.41, - "product_key": "ipsam", - "notes": "Ex a corrupti qui quo. Enim quasi consequatur deleniti debitis. Corrupti ex aut in sint saepe necessitatibus. Sunt tempora voluptatem inventore voluptas et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 104, - "company_id": 1, - "user_id": 1, - "client_contact_id": 6, - "quote_id": 104, - "key": "7a99hqiiv46jvbkwq2iladhvmserndq5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 115, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0115", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2019-11-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.84", - "balance": "21.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 115, - "quantity": 6, - "cost": 3.64, - "product_key": "aliquid", - "notes": "Nobis et atque maxime et. Ut optio recusandae fugit. Aut asperiores aspernatur dolor itaque aliquid magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 115, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "quote_id": 115, - "key": "2ba7obfeoaxxztb2tntd31lkuyjobnhc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:13", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 116, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0116", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-19", - "last_sent_date": null, - "due_date": "2020-01-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.70", - "balance": "18.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 116, - "quantity": 10, - "cost": 1.87, - "product_key": "explicabo", - "notes": "Reiciendis est sit soluta eum perferendis. Veniam quis officiis animi nostrum. Rem corporis natus consequatur nam voluptatem dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:13.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 116, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "quote_id": 116, - "key": "xonbfeqqppsj9ll8xd9xwlfg5i6f0npm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 117, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0117", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-28", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.43", - "balance": "20.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 117, - "quantity": 9, - "cost": 2.27, - "product_key": "quo", - "notes": "Nulla quo minima placeat voluptates est. Mollitia quos rerum vel deserunt expedita. Ratione accusantium quis tenetur fuga ea. Quis modi aperiam iste.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 117, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "quote_id": 117, - "key": "ea0n2izhs2biiwedbwya632kit3ydqzv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 118, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0118", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.32", - "balance": "19.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 118, - "quantity": 4, - "cost": 4.83, - "product_key": "nam", - "notes": "Laudantium et explicabo placeat hic quae ut enim tempore. Aliquam dolor voluptates dicta molestiae quod. Hic tenetur est quia adipisci. Dolorum qui voluptates eveniet omnis amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 118, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "quote_id": 118, - "key": "t3j4hv08qfdjo6x5qk5j5rhmql5cgeth", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 119, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0119", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-26", - "last_sent_date": null, - "due_date": "2020-04-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.47", - "balance": "61.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 119, - "quantity": 9, - "cost": 6.83, - "product_key": "reiciendis", - "notes": "Commodi doloremque aliquid aut id ea quia debitis. Culpa harum aspernatur debitis. Culpa enim mollitia dignissimos nesciunt facere id eveniet. Sequi aut perferendis ullam cum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 119, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "quote_id": 119, - "key": "8bkccjrb7tievokff4vpzp6wrkgeptjj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 120, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0120", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-27", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.88", - "balance": "38.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 120, - "quantity": 8, - "cost": 4.86, - "product_key": "autem", - "notes": "Et ut quisquam ipsum architecto et vel. Amet nisi magnam vel nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 120, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "quote_id": 120, - "key": "gtbqydbyly9cbcl5axmjuipbsyfubidd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 121, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0121", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-15", - "last_sent_date": null, - "due_date": "2019-11-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.92", - "balance": "52.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 121, - "quantity": 6, - "cost": 8.82, - "product_key": "sit", - "notes": "Commodi qui eius molestiae rerum iusto nemo. Voluptates rerum ut explicabo fugit et accusamus quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 121, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "quote_id": 121, - "key": "tmpcaddppz8099k9pwhcujkae8mgl2uc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 122, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0122", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-14", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.78", - "balance": "9.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 122, - "quantity": 6, - "cost": 1.63, - "product_key": "nihil", - "notes": "Quo fugit totam molestiae qui amet animi. Ut quia odio sed saepe eligendi repellendus. Unde dolorem molestiae ad. Sed natus et ullam explicabo consequatur minus quo. Cum ea cupiditate tempora omnis. Doloremque assumenda voluptate dolorum ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 122, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "quote_id": 122, - "key": "fcblon8zfv2ctne4wccwtkjxq3fgcgc3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 123, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0123", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-30", - "last_sent_date": null, - "due_date": "2020-01-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.40", - "balance": "31.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 123, - "quantity": 4, - "cost": 7.85, - "product_key": "et", - "notes": "Animi architecto vitae voluptatum quisquam exercitationem architecto fugiat maiores. Perspiciatis enim reprehenderit quasi ipsum. Voluptatibus harum facilis dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 123, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "quote_id": 123, - "key": "e9soqe3vjbujkb61smskgo0nuujihanc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 124, - "client_id": 7, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0124", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-28", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.86", - "balance": "13.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 124, - "quantity": 7, - "cost": 1.98, - "product_key": "velit", - "notes": "Aut placeat et dolor vitae. At nihil dolor quo dignissimos reprehenderit. Est ea modi minima tenetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 124, - "company_id": 1, - "user_id": 1, - "client_contact_id": 7, - "quote_id": 124, - "key": "7g92oogbf4tvpsabol4ppwr3sk8ung0w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 135, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0135", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.52", - "balance": "16.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 135, - "quantity": 2, - "cost": 8.26, - "product_key": "et", - "notes": "Hic aperiam aliquam illo recusandae. Minima distinctio numquam et sit. Quas excepturi voluptates aut laborum. Est harum facilis quia sunt eligendi sunt necessitatibus vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 135, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "quote_id": 135, - "key": "mmuivwpifgfoprunzcrqpin04bmertdt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 136, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0136", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-09", - "last_sent_date": null, - "due_date": "2020-04-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "74.25", - "balance": "74.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 136, - "quantity": 9, - "cost": 8.25, - "product_key": "recusandae", - "notes": "Sint corrupti provident repellat ipsam facilis repellendus laudantium. Itaque eum nesciunt consequatur repellendus. Maxime dolores pariatur at. Officia aliquam natus deserunt et sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 136, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "quote_id": 136, - "key": "x65ajpzod3rmwmpyjypsyo1dc2qoibzt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 137, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0137", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-13", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.56", - "balance": "23.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 137, - "quantity": 4, - "cost": 5.89, - "product_key": "tempora", - "notes": "Et et accusamus commodi eum est voluptatem ipsum. Qui dolorum at aliquid maxime rerum veniam vitae ut. Fuga sed culpa debitis error qui deserunt quidem. Dicta adipisci qui esse placeat delectus aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 137, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "quote_id": 137, - "key": "yd4sbcgqu4d3sdpwvzguodmjltwmgg3h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 138, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0138", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.35", - "balance": "9.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 138, - "quantity": 5, - "cost": 1.87, - "product_key": "aut", - "notes": "Dolor ducimus adipisci veniam sed veniam unde placeat eius. Molestiae officiis et optio inventore. Aut error libero quia. Odit ut mollitia aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 138, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "quote_id": 138, - "key": "1xjtlw6prjkpfmxrohub9vccuopbcrac", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 139, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0139", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-17", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.37", - "balance": "1.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 139, - "quantity": 1, - "cost": 1.37, - "product_key": "voluptas", - "notes": "Qui vero illum occaecati modi exercitationem sed. Et nulla omnis veritatis dolorum tempora vitae rem esse. Minima aspernatur magnam corrupti doloribus consequatur ut. Nisi incidunt et saepe autem hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 139, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "quote_id": 139, - "key": "qmncmyeigezn89qgujs0wjybfcvltbsq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 140, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0140", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "2020-02-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.60", - "balance": "68.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 140, - "quantity": 10, - "cost": 6.86, - "product_key": "dignissimos", - "notes": "Nobis veritatis ut distinctio vitae. Omnis doloremque aliquid id maxime porro laudantium eius eius. Et quos qui eligendi odit eos aliquam. Numquam aut excepturi voluptate nemo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 140, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "quote_id": 140, - "key": "yvynriviinnvveuiuzjgo43jgkad78ao", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 141, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0141", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-04-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.79", - "balance": "8.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 141, - "quantity": 1, - "cost": 8.79, - "product_key": "pariatur", - "notes": "Tempora aut veritatis earum tempora soluta. Quam hic eaque ad sequi. Autem qui quod quos fugit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 141, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "quote_id": 141, - "key": "oxxblxkkhsfqtwjn0qjwvuce9qtlulmd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 142, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0142", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2019-12-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.56", - "balance": "14.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 142, - "quantity": 7, - "cost": 2.08, - "product_key": "perferendis", - "notes": "Ut ipsa saepe doloremque a aut omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 142, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "quote_id": 142, - "key": "endg8hzaoruyqkfzoysfgsghxpin1h6k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 143, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0143", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-03-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.25", - "balance": "37.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 143, - "quantity": 5, - "cost": 7.45, - "product_key": "at", - "notes": "Animi qui ratione vel nesciunt quasi. Et sunt officiis omnis. Eaque quasi eius et et quam aut sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 143, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "quote_id": 143, - "key": "d2ub4qloqtu6ro1p5jrmkv3zfge526d9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 144, - "client_id": 8, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0144", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.12", - "balance": "4.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 144, - "quantity": 1, - "cost": 4.12, - "product_key": "quia", - "notes": "Qui fugiat qui quia dignissimos. Et accusamus voluptas est quod optio aliquid qui at. Est quaerat voluptate labore facere accusantium. Blanditiis quia qui dolorum est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:14.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 144, - "company_id": 1, - "user_id": 1, - "client_contact_id": 8, - "quote_id": 144, - "key": "djwwu0wedumknb9ziyfs8zrmrw3faxv0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:14", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 155, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0155", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-13", - "last_sent_date": null, - "due_date": "2020-05-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.54", - "balance": "1.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 155, - "quantity": 1, - "cost": 1.54, - "product_key": "sunt", - "notes": "Ut ut reprehenderit expedita cumque est fugit. Aut ad amet veritatis dicta. Quas natus quo maiores eum quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 155, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "quote_id": 155, - "key": "ruazdfkqr9q33bseartmmtqbmkxmwqu3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 156, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0156", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.48", - "balance": "54.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 156, - "quantity": 6, - "cost": 9.08, - "product_key": "officia", - "notes": "Odio vel dolorem fugiat soluta inventore. Illum debitis quis provident soluta ratione maxime. Expedita totam aut perferendis possimus vel eum. Minima amet debitis temporibus vero. Provident quia ut sit suscipit ut doloribus ut neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 156, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "quote_id": 156, - "key": "pz5r86jc7ptplcpgctfvaqbtihpzl78o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 157, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0157", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.08", - "balance": "13.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 157, - "quantity": 3, - "cost": 4.36, - "product_key": "sed", - "notes": "Itaque porro similique voluptates a. Sint autem perspiciatis maiores commodi eum dicta reiciendis est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 157, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "quote_id": 157, - "key": "q7xrtj1sxgh3x7jskenxk7mzspdp83xt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 158, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0158", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-20", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.80", - "balance": "29.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 158, - "quantity": 10, - "cost": 2.98, - "product_key": "magni", - "notes": "Quia voluptas nisi enim dicta aut mollitia. Dolorem natus sed sed blanditiis quo libero blanditiis esse. Sint ducimus itaque explicabo beatae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 158, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "quote_id": 158, - "key": "4dep7xpaug48s7aicfudbzd040gdkm9v", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 159, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0159", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.03", - "balance": "9.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 159, - "quantity": 1, - "cost": 9.03, - "product_key": "consequatur", - "notes": "Modi quasi consequatur praesentium mollitia. Consequatur officiis vel molestias. Eos at aliquid aut ullam ipsam quia eveniet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 159, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "quote_id": 159, - "key": "n7f36recoazuujbmyakkdozik3pldfnf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 160, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0160", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.90", - "balance": "44.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 160, - "quantity": 10, - "cost": 4.49, - "product_key": "laborum", - "notes": "Optio consequatur corporis fuga voluptas. Dolor vel illum praesentium ab voluptate nobis nihil at.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 160, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "quote_id": 160, - "key": "m3uq4wcl5jjpwsk8dvsjlgcft5stsk9d", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 161, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0161", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-23", - "last_sent_date": null, - "due_date": "2019-12-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.02", - "balance": "19.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 161, - "quantity": 6, - "cost": 3.17, - "product_key": "laudantium", - "notes": "Odit sed ad aspernatur eum aut consequatur. Aut perferendis aliquid consequatur eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 161, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "quote_id": 161, - "key": "kh6tunvg21vtb1xkglsxi9xxlj4n6agr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 162, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0162", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-18", - "last_sent_date": null, - "due_date": "2019-11-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.56", - "balance": "60.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 162, - "quantity": 8, - "cost": 7.57, - "product_key": "modi", - "notes": "Sit maiores odit sapiente illo aut. Quos eos et perferendis modi explicabo minus. Sed in non quam numquam qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 162, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "quote_id": 162, - "key": "92dteltrohrwpivhvmyfqejctp1c127z", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 163, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0163", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-01", - "last_sent_date": null, - "due_date": "2019-11-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", "tax_name2": null, "tax_rate1": "0.000", "tax_rate2": "0.000", @@ -110689,1161 +6128,25 @@ "custom_value2": "0.00", "next_send_date": null, "amount": "30.10", - "balance": "30.10", - "partial": null, + "balance": "18.07", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 163, + "id": 10370, "quantity": 7, "cost": 4.3, - "product_key": "aut", - "notes": "Ex enim et quos aut consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 163, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "quote_id": 163, - "key": "tvjepas5tlaglgohv2cjqplyn6w6gul0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 164, - "client_id": 9, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0164", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-19", - "last_sent_date": null, - "due_date": "2020-03-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.16", - "balance": "47.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 164, - "quantity": 6, - "cost": 7.86, - "product_key": "magni", - "notes": "Sunt non dolor odio aliquid. Sit ut dolor eius suscipit voluptatibus minima enim. Ut maiores adipisci inventore facilis quam dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 164, - "company_id": 1, - "user_id": 1, - "client_contact_id": 9, - "quote_id": 164, - "key": "ydw4atzhqjktr99y1twqv50lpogaqpbm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 175, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0175", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.90", - "balance": "24.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 175, - "quantity": 6, - "cost": 4.15, - "product_key": "vitae", - "notes": "Dolor nihil odio aut expedita magni corrupti. Quam est illo eum ut nostrum qui saepe.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 175, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "quote_id": 175, - "key": "daogdfyelce8fypahequdq8vkuoomlqw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 176, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0176", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2019-12-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.00", - "balance": "32.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 176, - "quantity": 8, - "cost": 4, - "product_key": "nihil", - "notes": "Ab tempore enim est ex aperiam. A eveniet sapiente est amet est. Consequatur ut voluptatem quis beatae ut consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 176, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "quote_id": 176, - "key": "x8dksvxqr2buwmuqfindwfzb5ftggjyj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 177, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0177", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.85", - "balance": "26.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 177, - "quantity": 3, - "cost": 8.95, - "product_key": "provident", - "notes": "Labore ut rem sit voluptatum perferendis et dolorem. Architecto enim officiis aut qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 177, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "quote_id": 177, - "key": "jbuefho2yv0cwmxcgrm9m9ytpcxdob9t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 178, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0178", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-02", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.65", - "balance": "25.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 178, - "quantity": 3, - "cost": 8.55, - "product_key": "molestias", - "notes": "Voluptatem in sunt esse distinctio. Aliquid ea et vel velit. Natus molestiae cupiditate optio. Aspernatur non quis aut illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 178, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "quote_id": 178, - "key": "px8otzvowfp7sfx1zdhap3cjqb3mfgh9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 179, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0179", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-18", - "last_sent_date": null, - "due_date": "2020-02-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.76", - "balance": "27.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 179, - "quantity": 4, - "cost": 6.94, - "product_key": "rerum", - "notes": "Iste quas quo dolorem sunt adipisci omnis rerum. Debitis tempore optio iste atque aliquam. Laudantium suscipit mollitia sint omnis est et amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 179, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "quote_id": 179, - "key": "kvu9q4ot2b4vzwdkr3u7e1vlkjbn4bi4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 180, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0180", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-01", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.44", - "balance": "2.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 180, - "quantity": 1, - "cost": 2.44, - "product_key": "iste", - "notes": "Et fuga quidem et aut sunt enim. Qui quibusdam et in et. Dolorem corrupti doloremque impedit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 180, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "quote_id": 180, - "key": "gw3www7b19dtrcmzceaeochtkozuwnfa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 181, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0181", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.16", - "balance": "29.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 181, - "quantity": 9, - "cost": 3.24, - "product_key": "distinctio", - "notes": "Quia velit laudantium nisi autem eum minus. Autem eum possimus rerum aspernatur omnis. Nihil ipsa nisi aut commodi et in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 181, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "quote_id": 181, - "key": "idpcusquoooak8whlzzt3apuebypaxgx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 182, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0182", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-02-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.90", - "balance": "6.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 182, - "quantity": 3, - "cost": 2.3, - "product_key": "saepe", - "notes": "Unde in aperiam facere ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 182, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "quote_id": 182, - "key": "xw1bvvspyhcim4xvbhuhmbwbiqgsf6yt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 183, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0183", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2019-12-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.04", - "balance": "6.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 183, - "quantity": 1, - "cost": 6.04, - "product_key": "assumenda", - "notes": "Suscipit magni laboriosam eum et. Nulla qui perspiciatis aut sequi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 183, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "quote_id": 183, - "key": "zjqja5pfzecpedpvfcoygbpkbvaqribx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 184, - "client_id": 10, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0184", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.00", - "balance": "3.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 184, - "quantity": 3, - "cost": 1, - "product_key": "sed", - "notes": "Et quis veniam dolorem et placeat rem laudantium. Iure in fugiat a autem iste harum odit. Quas et debitis et debitis amet ducimus vitae. Officiis eveniet ipsam fuga eius voluptatibus eius suscipit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 184, - "company_id": 1, - "user_id": 1, - "client_contact_id": 10, - "quote_id": 184, - "key": "oitspxjlxf7uskxmgixy7ofuqkait8z3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 195, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0195", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-27", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.52", - "balance": "19.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 195, - "quantity": 4, - "cost": 4.88, - "product_key": "dolorem", - "notes": "Est voluptatibus quidem dolorem ea velit. Iure soluta eos ut id. Assumenda pariatur quis velit fugit corporis. Et nemo nam consequuntur laboriosam nulla.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 195, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "quote_id": 195, - "key": "i3pinmbqp1shxvd5wcyjyogd1zkqehcd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 196, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0196", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-03-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.97", - "balance": "29.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 196, - "quantity": 3, - "cost": 9.99, - "product_key": "et", - "notes": "Unde asperiores occaecati quo sit quis. Ea culpa distinctio quasi et ipsum. Nisi id praesentium illo. Reprehenderit quo aspernatur repellendus nisi non deleniti rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 196, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "quote_id": 196, - "key": "vt4ngdcehfdc8c0a22a9nuhzbdtsdke1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 197, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0197", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-27", - "last_sent_date": null, - "due_date": "2019-11-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.22", - "balance": "10.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 197, - "quantity": 2, - "cost": 5.11, - "product_key": "aut", - "notes": "Incidunt nisi vero impedit aliquid. Est voluptas aliquid natus dolores est sit est. Ipsam non et minima.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 197, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "quote_id": 197, - "key": "lfr3fexakqbklwozqhuc1ty2n0ebxoxk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 198, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0198", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-04-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.48", - "balance": "19.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 198, - "quantity": 2, - "cost": 9.74, "product_key": "ea", - "notes": "Esse consequuntur et quasi ut quo eveniet earum. Accusantium nostrum aliquam quae consequatur nihil consequuntur. Et quas nemo sit cupiditate facere perspiciatis. Dicta qui commodi sed.", + "notes": "Velit repellat quo neque dolores.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-02-18 21:20:17.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -111852,50 +6155,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 198, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "quote_id": 198, - "key": "cwcrwdgw3kepkeonkcjvgevkmwwgxbkp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 199, - "client_id": 11, + "id": 10371, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0199", + "number": "0014", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-04-08", + "date": "2020-09-04", "last_sent_date": null, - "due_date": "2020-01-15", + "due_date": "2020-08-24", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -111904,8002 +6186,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "12.42", - "balance": "12.42", - "partial": null, + "amount": "43.70", + "balance": "1.84", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 199, - "quantity": 3, - "cost": 4.14, - "product_key": "illo", - "notes": "Quia natus at asperiores similique culpa itaque fugit. Est qui architecto quae sed quos aspernatur. Ratione non esse sit repellat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 199, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "quote_id": 199, - "key": "6cgpkekugvzkc4jd1fsf0cwqf3lntlvb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 200, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0200", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-11-11", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.46", - "balance": "19.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 200, - "quantity": 7, - "cost": 2.78, - "product_key": "natus", - "notes": "Nam hic consequatur est ut est est. Rerum blanditiis eos quae itaque. Dolores non rem et et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 200, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "quote_id": 200, - "key": "jlalwzcekrjmmphr6qzkoo6au3zwn9vk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 201, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0201", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-20", - "last_sent_date": null, - "due_date": "2020-01-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.55", - "balance": "7.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 201, - "quantity": 5, - "cost": 1.51, - "product_key": "rerum", - "notes": "Aspernatur veniam quibusdam fuga dicta distinctio et. Saepe harum amet et. Et nihil iusto tempora eos quia ipsa sit. Quo sit ut nobis tempora unde deleniti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 201, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "quote_id": 201, - "key": "aotgentuiiradcpfzx77amtxnndhz2w0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 202, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0202", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.20", - "balance": "14.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 202, - "quantity": 5, - "cost": 2.84, - "product_key": "odit", - "notes": "Illum voluptatum voluptatibus architecto commodi dolores ut. Mollitia quia porro excepturi distinctio impedit quibusdam ea. Magni aspernatur rerum rerum quo in aut. Nihil harum est eum perferendis dolore enim exercitationem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 202, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "quote_id": 202, - "key": "jdibmif51nkezpyalwkj34xkxihljiww", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 203, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0203", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-01-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.52", - "balance": "14.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 203, - "quantity": 6, - "cost": 2.42, - "product_key": "excepturi", - "notes": "Rem at eveniet doloribus magni illo voluptatem. Eum perspiciatis eos et impedit perspiciatis quos. Ex doloribus sit fuga qui. Quidem saepe voluptates nihil ea aspernatur et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 203, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "quote_id": 203, - "key": "2lke7favwcummlyijwx4dcftfk5vlasw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 204, - "client_id": 11, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0204", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.54", - "balance": "5.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 204, - "quantity": 1, - "cost": 5.54, - "product_key": "enim", - "notes": "Quis magnam quia quia dolore qui iste.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-02-18 21:20:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null, - "invitations": [ - { - "id": 204, - "company_id": 1, - "user_id": 1, - "client_contact_id": 11, - "quote_id": 204, - "key": "8wjxzpkf41czhexksh2f4m8aidmrtvlu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-02-18 21:20:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18", - "deleted_at": null - } - ] - }, - { - "id": 209, - "client_id": 12, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0208", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.98", - "balance": "35.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 224, - "quantity": 7, - "cost": 5.14, - "product_key": "nihil", - "notes": "Error odit aut totam. Sed ex voluptas inventore. Maxime libero repudiandae quia corrupti ipsa. Excepturi earum facilis aspernatur non ad dicta qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:19:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 209, - "company_id": 1, - "user_id": 1, - "client_contact_id": 12, - "quote_id": 209, - "key": "phyr7ooo1twiij6ruxvfpuntdrlmn5dx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:19:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 211, - "client_id": 13, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0210", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.68", - "balance": "19.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 226, - "quantity": 8, - "cost": 2.46, - "product_key": "suscipit", - "notes": "Explicabo quas aut non similique eum nobis id porro. Officiis et reiciendis quia ut. Et veniam totam necessitatibus aut aperiam id excepturi. Fuga voluptate vel aliquam sapiente et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 211, - "company_id": 1, - "user_id": 1, - "client_contact_id": 13, - "quote_id": 211, - "key": "nxy0owbn1suaubjffnj3gzya3xa7caz0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 312, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0311", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-08", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.44", - "balance": "25.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 327, - "quantity": 4, - "cost": 6.36, - "product_key": "reprehenderit", - "notes": "Suscipit officiis consequuntur voluptatum sit. Eum tempore velit natus officia occaecati vitae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 312, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 312, - "key": "4jppnvafnk5nadwbxwpsdzlurmkovnxo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 313, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0312", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.82", - "balance": "11.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 328, - "quantity": 2, - "cost": 5.91, - "product_key": "est", - "notes": "Dolorem tenetur est voluptatem quos. Voluptatum et maiores animi similique consequatur officia. Et molestias consectetur ut tempora corporis est ipsa. Cumque labore ut deleniti odit incidunt delectus aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 313, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 313, - "key": "04zuqbvnrartgto40qk6q27ofckugxul", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 314, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0313", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-05-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.72", - "balance": "11.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 329, - "quantity": 4, - "cost": 2.93, - "product_key": "consequatur", - "notes": "Consequatur qui magni nihil itaque tenetur. Consectetur ad aut incidunt ex ut aliquam facere. Exercitationem omnis veniam officia maiores aut deserunt ea. Qui qui omnis quia magnam velit itaque ut aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 314, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 314, - "key": "awvamywtbirpugm3tnb955mirpsmcje4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 315, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0314", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.15", - "balance": "21.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 330, - "quantity": 5, - "cost": 4.23, - "product_key": "et", - "notes": "Debitis ut ea est accusamus perspiciatis ut. Aut at veniam qui voluptatibus inventore magnam. Atque magni corporis reprehenderit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 315, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 315, - "key": "iajxwag4ebc743o35akw739uoclxdff3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 316, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0315", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-08", - "last_sent_date": null, - "due_date": "2020-06-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "79.04", - "balance": "79.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 331, - "quantity": 8, - "cost": 9.88, - "product_key": "et", - "notes": "Illo sunt ea ipsum molestiae eos veritatis. In ad magnam non dignissimos molestiae. Dolorum soluta enim adipisci officiis ipsam distinctio voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 316, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 316, - "key": "ocopaqomgzijlpvc8aylyostlmijlnui", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 317, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0316", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.73", - "balance": "5.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 332, - "quantity": 3, - "cost": 1.91, - "product_key": "nam", - "notes": "Nam sunt ut neque voluptate atque eveniet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 317, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 317, - "key": "npeqe78kevqahdiaolscd1wxrsalirx9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 318, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0317", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.41", - "balance": "22.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 333, - "quantity": 9, - "cost": 2.49, - "product_key": "delectus", - "notes": "Modi voluptas sunt perferendis consequuntur harum. Hic est officiis voluptatum sed odio et. Id qui sed dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 318, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 318, - "key": "xskdxzuth2hl5um12c2jvibe1mwjjkrk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 319, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0318", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.84", - "balance": "21.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 334, - "quantity": 8, - "cost": 2.73, - "product_key": "et", - "notes": "Blanditiis est delectus porro est non ut. Sed accusamus accusantium ea non fugiat aspernatur beatae ab.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 319, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 319, - "key": "qea98dupmnnwkfueiwiognci4ds8xuk6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 320, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0319", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.50", - "balance": "27.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 335, + "id": 10371, "quantity": 10, - "cost": 2.75, - "product_key": "pariatur", - "notes": "Assumenda sint ex placeat id consequatur quia. Delectus accusamus alias fugiat vero commodi aut. Quo delectus omnis voluptatibus aperiam eveniet est doloribus quia. Aut minima eligendi nobis ut ea veniam deleniti dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 320, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 320, - "key": "xo1sqp4mjyqan40b5zyvdwsrsjd2iy1k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 321, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0320", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.10", - "balance": "14.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 336, - "quantity": 5, - "cost": 2.82, - "product_key": "eos", - "notes": "Omnis debitis totam veniam in. Nobis occaecati sunt minima expedita. Nostrum mollitia aut repudiandae dolor autem rem aut. Cumque nihil excepturi voluptatem non ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 321, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 321, - "key": "v4jbupmi1ev9xgazc2qrmenctxuvspsh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 322, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0321", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.44", - "balance": "45.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 337, - "quantity": 8, - "cost": 5.68, - "product_key": "sint", - "notes": "Voluptatum a similique voluptatum repudiandae sunt aliquid. Beatae omnis debitis itaque ipsam nihil quo. Placeat eius accusamus dolore in. Qui est sed nisi illum. Adipisci id rerum cupiditate maiores provident. Aut est voluptatem ut doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 322, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 322, - "key": "kzuyz5dh5hoze8a1bmtmpngtngitrxa2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 323, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0322", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.20", - "balance": "6.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 338, - "quantity": 5, - "cost": 1.24, - "product_key": "quis", - "notes": "Explicabo enim iure et id maiores aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 323, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 323, - "key": "91qtrohebcu01mihauopzlnl9shjczcz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 324, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0323", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2020-02-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.16", - "balance": "11.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 339, - "quantity": 4, - "cost": 2.79, - "product_key": "soluta", - "notes": "Excepturi velit iure voluptatibus dolores eius voluptatibus aut. Non ipsa quia et nemo placeat. Dolor qui pariatur in dolorem at ratione est. Voluptates qui sit sint et quisquam vero rem. Eveniet possimus non minima enim temporibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 324, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 324, - "key": "3gzlame9fx5ty6p0ul0pu0yyepk42ddm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 325, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0324", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-03-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.87", - "balance": "15.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 340, - "quantity": 3, - "cost": 5.29, - "product_key": "sit", - "notes": "Alias ullam commodi saepe vero officiis fugit culpa. Tenetur rerum accusamus et et rerum omnis pariatur nesciunt. Modi voluptas eligendi sunt autem voluptatum illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 325, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 325, - "key": "278ypgt1zz0jo5qkm3rk8tn6gmvwgsya", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 326, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0325", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-04-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.14", - "balance": "17.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 341, - "quantity": 2, - "cost": 8.57, - "product_key": "ipsam", - "notes": "Iste sed qui modi vitae. Blanditiis omnis et ipsa voluptatibus. Voluptates pariatur earum id est ipsa. Animi voluptatibus accusantium sint enim.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 326, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 326, - "key": "vngfuywb4sixtfl6mgszcbwid8jnwtwk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 327, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0326", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-01-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.94", - "balance": "7.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 342, - "quantity": 1, - "cost": 7.94, - "product_key": "veniam", - "notes": "Ipsam et et sed autem enim suscipit sint. Sint deleniti maxime quibusdam eveniet molestiae. Rerum distinctio doloribus ab. Distinctio ullam esse labore laborum quisquam tenetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 327, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 327, - "key": "vwwempiclbfzniumse8aw7xy1f429geh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 328, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0327", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-31", - "last_sent_date": null, - "due_date": "2020-02-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.50", - "balance": "17.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 343, - "quantity": 2, - "cost": 8.75, - "product_key": "et", - "notes": "Itaque vel inventore officiis. Fugit atque natus cum sunt blanditiis harum velit. Laborum beatae qui minus quam autem quo aut. Id cumque quia ipsam provident.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 328, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 328, - "key": "gaizqdly6ey3ki9aqarnaqro4pwb1qet", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 329, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0328", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-20", - "last_sent_date": null, - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.24", - "balance": "2.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 344, - "quantity": 1, - "cost": 2.24, - "product_key": "maxime", - "notes": "In porro mollitia beatae nihil et. Ipsam laboriosam labore et in. Facere qui laudantium expedita.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 329, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 329, - "key": "tlbkrfw3dizi9y7z9yvlojeopawcxy2q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 330, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0329", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2020-02-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.80", - "balance": "16.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 345, - "quantity": 7, - "cost": 2.4, - "product_key": "deserunt", - "notes": "Sint eos sit est distinctio. Quo et magni labore itaque. Praesentium qui molestiae exercitationem minima aut adipisci aliquid.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 330, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 330, - "key": "ink84tijnfkjnkkprmnbyxusu2bshx58", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 331, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0330", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.92", - "balance": "26.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 346, - "quantity": 4, - "cost": 6.73, - "product_key": "et", - "notes": "Ea dignissimos illo et voluptas exercitationem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 331, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 331, - "key": "rxo7243ffk8tupbke7xqkb5768gflf5l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 332, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0331", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-22", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.62", - "balance": "60.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 347, - "quantity": 7, - "cost": 8.66, - "product_key": "dolorem", - "notes": "Blanditiis earum est nostrum voluptatem. Velit omnis deserunt voluptatem aut nemo. Eos eligendi minus facere officia error consequatur sed. Repellendus enim dolores quia ipsam quos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:32.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 332, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 332, - "key": "bxgu1unuoummhxvkc1qji8qyo1puntm9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:32", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 333, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0332", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.52", - "balance": "13.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 348, - "quantity": 4, - "cost": 3.38, - "product_key": "dolorem", - "notes": "Dolores voluptatibus beatae vero provident vitae ab. Sit error odio rerum commodi eos unde. Nesciunt qui eius magnam et sunt. Numquam qui culpa et ut eos atque laudantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 333, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 333, - "key": "4p91qw1gtvha5wv7m1blrnozw0mynuz0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 334, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0333", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-11", - "last_sent_date": null, - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.36", - "balance": "24.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 349, - "quantity": 6, - "cost": 4.06, - "product_key": "eligendi", - "notes": "Debitis quia dolores magnam id consequuntur odit sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 334, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 334, - "key": "caxxi0msrezeyzfkjx1quq60yhlhysrz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 335, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0334", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-06-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.05", - "balance": "41.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 350, - "quantity": 5, - "cost": 8.21, - "product_key": "quidem", - "notes": "Earum perferendis similique saepe atque itaque. Ipsam tempora deserunt natus animi voluptates. Illo possimus dolorum delectus et quae et nisi officia. Eveniet et vel quo magni.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 335, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 335, - "key": "nerx6gtoofmsy0zspbpnji1dilocyfah", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 336, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0335", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-28", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.36", - "balance": "13.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 351, - "quantity": 4, - "cost": 3.34, - "product_key": "recusandae", - "notes": "Pariatur dignissimos dolores quis et similique voluptates in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 336, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 336, - "key": "zgom6d9rcfapj9wodyobggjhwkx5j9eg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 337, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0336", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2019-12-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.73", - "balance": "14.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 352, - "quantity": 3, - "cost": 4.91, - "product_key": "repudiandae", - "notes": "Maiores non dolorem odit sint laudantium incidunt. Rem error ad laboriosam architecto rerum et perspiciatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 337, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 337, - "key": "ll2khulkeuk8etoqsxr5v4yqxxu02bvf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 338, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0337", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-25", - "last_sent_date": null, - "due_date": "2020-06-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.59", - "balance": "7.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 353, - "quantity": 1, - "cost": 7.59, - "product_key": "velit", - "notes": "Et ratione quaerat non adipisci possimus quis quia ipsa. Vel quia reiciendis veritatis aperiam odit ducimus quia. Occaecati doloremque voluptatem ipsa omnis quidem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 338, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 338, - "key": "mbegghu3mfvuukz2unyc1pt6xaiozpkz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 339, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0338", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-15", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.52", - "balance": "51.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 354, - "quantity": 7, - "cost": 7.36, - "product_key": "blanditiis", - "notes": "Nemo fugit voluptas odit iure enim et et itaque. Sit eos ex autem. Voluptas ipsum esse dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 339, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 339, - "key": "qmsyll8nxhnnjuxb4h7qsu8cenabc2zp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 340, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0339", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.98", - "balance": "52.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 355, - "quantity": 6, - "cost": 8.83, - "product_key": "odit", - "notes": "Id delectus provident et dignissimos totam eveniet magni modi. Sed molestiae itaque ducimus sunt. Et et est aut sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 340, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 340, - "key": "bl1cjymgeemn0xzsq4mhsh0ybnrwg00b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 341, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0340", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-31", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.44", - "balance": "41.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 356, - "quantity": 7, - "cost": 5.92, - "product_key": "vero", - "notes": "Saepe atque illum neque quia nobis. Modi aperiam aperiam adipisci facilis aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 341, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 341, - "key": "xtdwr5vozr5rucayyroeh4qt7m8ycnwh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 342, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0341", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.50", - "balance": "41.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 357, - "quantity": 5, - "cost": 8.3, - "product_key": "excepturi", - "notes": "Deleniti atque repellat odio incidunt unde. Cupiditate repudiandae dolores voluptatem quia. Doloremque vel consequuntur vel ab quae repellendus assumenda quia. Veniam vero vitae quia voluptatem aliquid facilis est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 342, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 342, - "key": "3vnwv3oxrimpy3w3quarhstzr0brmrik", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 343, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0342", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-12", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.84", - "balance": "12.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 358, - "quantity": 6, - "cost": 2.14, - "product_key": "odio", - "notes": "Iure cumque ratione amet est rerum excepturi. Et pariatur autem esse consequatur tenetur aut. Minima et assumenda et fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 343, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 343, - "key": "8o2l36hdqv2halcbt1zm2agmrvkiw1eo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 344, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0343", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "79.90", - "balance": "79.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 359, - "quantity": 10, - "cost": 7.99, - "product_key": "odio", - "notes": "Et sint sunt excepturi dolor et itaque perferendis deleniti. Esse dignissimos voluptas quia neque voluptas. Quia molestiae omnis rerum quia. Ratione numquam occaecati id porro minima.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 344, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 344, - "key": "azecmhkn7xlt0b4lbkh7xoyrryi5eolj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 345, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0344", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.37", - "balance": "1.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 360, - "quantity": 1, - "cost": 1.37, - "product_key": "voluptatem", - "notes": "Quod exercitationem rerum ut quo quos exercitationem. Rerum sed ea assumenda aut voluptatum. Culpa error et esse quod adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 345, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 345, - "key": "7wdvgepxilnkjmgf9f2aa3m9ohk8same", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 346, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0345", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-08", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.72", - "balance": "6.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 361, - "quantity": 6, - "cost": 1.12, - "product_key": "consequuntur", - "notes": "Hic facilis esse voluptas consequatur ut dolor aspernatur. Itaque voluptas consectetur pariatur laudantium. Autem incidunt dolorum molestiae vel consequuntur inventore nam. Voluptas vero voluptatibus quia sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 346, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 346, - "key": "kjq3mtw9gyexrxyaewn1xhkoqhmgrivb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 347, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0346", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "62.16", - "balance": "62.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 362, - "quantity": 8, - "cost": 7.77, - "product_key": "molestiae", - "notes": "Dolor omnis natus laboriosam est laudantium. Quod ex non in dolor et magni et. Ut ducimus inventore suscipit quia. Quam officia quia voluptas qui fugit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 347, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 347, - "key": "yyv6aibx4rbbpvkrs5r7njhjjk6hq22f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 348, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0347", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.36", - "balance": "4.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 363, - "quantity": 4, - "cost": 1.09, - "product_key": "exercitationem", - "notes": "Tempore harum perferendis omnis repellat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 348, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 348, - "key": "1a76wo36mlmo1fvp5oazacsf7fkc7sub", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 349, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0348", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.73", - "balance": "2.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 364, - "quantity": 1, - "cost": 2.73, - "product_key": "veritatis", - "notes": "Quisquam eius nihil nam natus veritatis. Illum amet vel vero vel laborum. Id quia mollitia quo eum quidem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 349, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 349, - "key": "ty9psffveaszvftv17t4wozulsn5017j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 350, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0349", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-21", - "last_sent_date": null, - "due_date": "2020-02-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.20", - "balance": "4.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 365, - "quantity": 3, - "cost": 1.4, - "product_key": "asperiores", - "notes": "Sit deleniti rerum aut reprehenderit distinctio veniam nobis. Modi omnis veritatis libero quos facilis architecto molestiae repellat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 350, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 350, - "key": "lk6bqg5cxxfbvtjmgsi8pnj1ldbk2efn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 351, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0350", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.29", - "balance": "70.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 366, - "quantity": 9, - "cost": 7.81, - "product_key": "qui", - "notes": "Pariatur temporibus nisi quo eligendi sed qui. Exercitationem blanditiis ut qui odit cum. Quia sunt corrupti sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 351, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 351, - "key": "sdbr8rlbqdit83i1ttgq0jzucge4kzhk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 352, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0351", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.76", - "balance": "14.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 367, - "quantity": 9, - "cost": 1.64, - "product_key": "id", - "notes": "Aut quis dolore voluptas sunt porro nobis. Qui quis cupiditate in adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 352, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 352, - "key": "uecd6uskiqgzsvhe5vdd9dltmqb4ovbs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 353, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0352", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2020-04-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.99", - "balance": "36.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 368, - "quantity": 9, - "cost": 4.11, - "product_key": "et", - "notes": "Et odio nulla temporibus. Delectus quod unde cumque ducimus ea nobis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 353, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 353, - "key": "gn8bgw49j8n70udve5lsj6c7dvzbsxyf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 354, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0353", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-11", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.76", - "balance": "32.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 369, - "quantity": 7, - "cost": 4.68, - "product_key": "aspernatur", - "notes": "Delectus modi aut et explicabo non labore deserunt non. Nemo quidem enim reprehenderit dolorem laudantium harum dolores. Est ex assumenda libero magni soluta aut aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 354, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 354, - "key": "hmzv2sscuqpipvbpv5oyblfzqr90ugnm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 355, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0354", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.00", - "balance": "30.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 370, - "quantity": 4, - "cost": 7.5, - "product_key": "eos", - "notes": "Quis ea natus sed rerum et facere dolorem. Sit nam qui omnis et. Quod consequatur et unde sed. Deserunt dolorem eum rerum. Aut labore repudiandae nihil aut. Veritatis voluptatum vitae libero ut voluptas a. Quis quo ea qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 355, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 355, - "key": "z5niedtjgbmb0dah2ihb4gql91ansdkx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 356, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0355", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.60", - "balance": "15.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 371, - "quantity": 2, - "cost": 7.8, - "product_key": "sunt", - "notes": "Occaecati voluptas et suscipit eaque ea magni omnis minima. Soluta delectus et quam officia dignissimos soluta voluptates adipisci. Consequatur qui omnis et omnis ullam rerum pariatur. Voluptatum qui nihil corporis dolores corporis nostrum. Molestiae a animi eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 356, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 356, - "key": "ntpormhaa7qlxsvbgq5rtpx4kfy3qxpf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 357, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0356", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.70", - "balance": "27.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 372, - "quantity": 10, - "cost": 2.77, - "product_key": "enim", - "notes": "Cum non eaque et. Vel libero ut laborum molestias. Voluptas quo doloremque vero magnam soluta molestias incidunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 357, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 357, - "key": "lbrwt9ctgketav8ym6ual849fraypon4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 358, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0357", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.59", - "balance": "4.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 373, - "quantity": 1, - "cost": 4.59, - "product_key": "ea", - "notes": "Corporis voluptatem qui officia sunt dolorem earum sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 358, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 358, - "key": "gjzpqazx550tebfv9sodszpi5sp2lugz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 359, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0358", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-16", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.75", - "balance": "3.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 374, - "quantity": 3, - "cost": 1.25, - "product_key": "deserunt", - "notes": "Sequi inventore ut repellendus ratione quia qui veniam quos. Et sequi et ipsum sed delectus id incidunt ut. Ea fugiat aliquid magni libero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 359, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 359, - "key": "hib9vaykw7ls98pyy5soxdi8stwluzxl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 360, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0359", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-08", - "last_sent_date": null, - "due_date": "2020-05-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.86", - "balance": "13.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 375, - "quantity": 6, - "cost": 2.31, - "product_key": "amet", - "notes": "Commodi assumenda dolores sed voluptas. Qui qui delectus eum nisi. Non id laboriosam ratione omnis deleniti. Ipsam ipsam adipisci est architecto minima. Molestiae ipsam consectetur omnis et accusantium sit incidunt. Numquam nostrum maxime cumque sed sint commodi doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 360, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 360, - "key": "dhnid9qw8bilm0aqiquzjolklnqr6yxc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 361, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0360", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-27", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.03", - "balance": "37.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 376, - "quantity": 7, - "cost": 5.29, - "product_key": "laboriosam", - "notes": "Animi eveniet qui commodi velit in voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 361, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 361, - "key": "cufth1rnx1gnl2lhng9l6jb3eyg2dxwf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 362, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0361", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.94", - "balance": "5.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 377, - "quantity": 2, - "cost": 2.97, - "product_key": "mollitia", - "notes": "Neque soluta excepturi earum qui magnam omnis. Impedit quos accusantium sit enim sed dolore sapiente. Omnis labore sed porro. Molestias id est est est asperiores officia delectus. Et hic occaecati nulla cum est. Architecto dolorem ut perferendis quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 362, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 362, - "key": "8jvguo5fmdfrhidvbwnbwnjp8itmxqtb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 363, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0362", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.52", - "balance": "19.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 378, - "quantity": 4, - "cost": 4.88, - "product_key": "fugiat", - "notes": "Sint cupiditate est animi reprehenderit a quis harum. Unde accusantium laudantium consequatur dolorum dolorum aut voluptas velit. Fuga praesentium sint odit aut. Aut est itaque excepturi deserunt et. Non quia rerum ut ea qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 363, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 363, - "key": "ik37pzk78woxew4ffjhhdelad4koldej", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 364, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0363", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-03-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.80", - "balance": "27.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 379, - "quantity": 10, - "cost": 2.78, - "product_key": "sed", - "notes": "Qui cumque et voluptas consequuntur inventore sequi rerum. Nihil fugiat voluptatem mollitia sed fugit blanditiis. Itaque tempora nulla maiores facere rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 364, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 364, - "key": "prdlmt5roz3unk8ycipgnuktakompthe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 365, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0364", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-05-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.06", - "balance": "8.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 380, - "quantity": 2, - "cost": 4.03, - "product_key": "quia", - "notes": "Dignissimos delectus cupiditate sunt. Odit vitae sed modi et doloremque nemo rerum. Molestias et est perspiciatis quis fugiat ut aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 365, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 365, - "key": "onajs58o6arobgswhow08jsn7ckptbug", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 366, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0365", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-02-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.04", - "balance": "15.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 381, - "quantity": 2, - "cost": 7.52, - "product_key": "hic", - "notes": "Est dolorum et eos. Alias eius neque consequatur commodi labore in. Illo sit consequuntur aut modi fugiat voluptatibus maxime. Dolorum saepe dolorum earum in explicabo molestiae et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 366, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 366, - "key": "uzbaonbgtz06d9aawp8ydjboqpe57vyl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 367, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0366", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2020-04-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.56", - "balance": "16.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 382, - "quantity": 2, - "cost": 8.28, - "product_key": "et", - "notes": "Voluptatibus sit et id eum possimus. Voluptates est in quos mollitia et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 367, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 367, - "key": "lhns4lpvcwuu0n7s8lqq1rrn64lwmrbz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 368, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0367", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.84", - "balance": "51.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 383, - "quantity": 9, - "cost": 5.76, - "product_key": "id", - "notes": "Iste debitis expedita eos atque. Dolorem aut et nesciunt officia modi asperiores. Nemo fugit iusto ipsa ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 368, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 368, - "key": "jjyssjr9fpjjvcebv73kcejk8ih5nooa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 369, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0368", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-11", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.67", - "balance": "68.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 384, - "quantity": 9, - "cost": 7.63, - "product_key": "enim", - "notes": "Facere eum dolorem dolore architecto vel dolor. Rerum provident error neque quia officiis ullam voluptatibus. Ea iure molestiae atque at. A ut alias esse doloremque rem debitis qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 369, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 369, - "key": "xdxxocm0kuvdshqsauwg0l4ur0o93bjq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 370, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0369", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-15", - "last_sent_date": null, - "due_date": "2020-03-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.93", - "balance": "42.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 385, - "quantity": 9, - "cost": 4.77, - "product_key": "cum", - "notes": "Quia molestias sunt voluptates commodi architecto voluptas error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 370, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 370, - "key": "fiaaovotismdsp8d6r7gzfrwvdgvv6j7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 371, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0370", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-26", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.69", - "balance": "7.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 386, - "quantity": 1, - "cost": 7.69, - "product_key": "maiores", - "notes": "Odit magnam iure omnis officia libero. Voluptatibus non facilis voluptates. Enim laborum voluptatem qui eum voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 371, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 371, - "key": "zaxvkdoi0vihad3nqi5c4koeiig6lrla", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 372, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0371", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-06-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.88", - "balance": "18.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 387, - "quantity": 2, - "cost": 9.44, - "product_key": "et", - "notes": "Magni non iure ipsa molestias illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 372, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 372, - "key": "g2ktuz5og7tgij5pexvkujofhpv1zuwh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 373, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0372", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-08", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.15", - "balance": "43.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 388, - "quantity": 5, - "cost": 8.63, - "product_key": "eaque", - "notes": "Vel ratione praesentium doloremque modi doloribus qui similique. Hic inventore quae aut accusantium ratione tempora.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 373, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 373, - "key": "m7p1tzds9mjji6dkchpsakqp0grdz0qu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 374, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0373", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2020-03-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.25", - "balance": "4.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 389, - "quantity": 1, - "cost": 4.25, - "product_key": "aut", - "notes": "Velit et ducimus maxime et aliquam sit inventore. Et minus nihil dolor est. Et cupiditate odio ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 374, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 374, - "key": "okfcifnyuebnmkluvtpromzcpwzenosn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 375, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0374", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-13", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.25", - "balance": "8.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 390, - "quantity": 5, - "cost": 1.65, - "product_key": "alias", - "notes": "Laborum temporibus et consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 375, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 375, - "key": "nhymlcwcxvl2g3mt6azqkph1b6fzqjbr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 376, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0375", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-04", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.30", - "balance": "70.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 391, - "quantity": 10, - "cost": 7.03, - "product_key": "error", - "notes": "Aut eum architecto quos omnis temporibus dolorem. Ullam exercitationem ipsa veritatis cum sit consequatur magni et. Omnis maiores est unde vel quis qui consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 376, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 376, - "key": "pjr7cbqiathgtff4zzlaqi9xi5eulyma", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 377, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0376", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.48", - "balance": "4.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 392, - "quantity": 4, - "cost": 1.12, - "product_key": "debitis", - "notes": "Error impedit voluptatem et eveniet. Ut omnis consequatur fugit mollitia magni quibusdam. Iusto quibusdam maxime eos recusandae vel maiores officiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 377, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 377, - "key": "khawpk6gh2aoj2rtf93c1qzz5csh6sav", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 378, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0377", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-01-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.16", - "balance": "10.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 393, - "quantity": 2, - "cost": 5.08, - "product_key": "tempore", - "notes": "Veritatis soluta animi quas esse. At optio labore sed. In eum recusandae labore. Repellat eum laudantium modi quas itaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 378, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 378, - "key": "mfl1bg23jcsifaxnj5yirszxmpj2b4ty", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 379, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0378", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.23", - "balance": "41.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 394, - "quantity": 7, - "cost": 5.89, - "product_key": "quidem", - "notes": "Delectus dolores quidem molestiae dolores et. Dolorem sint officia exercitationem rerum harum quos. Quo eum ex mollitia aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 379, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 379, - "key": "en6tumnbmggvn7mn2qwioau5jbfcqycw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 380, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0379", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.24", - "balance": "12.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 395, - "quantity": 6, - "cost": 2.04, - "product_key": "assumenda", - "notes": "Rerum eum dolor laborum totam illo in qui. Fugit cupiditate recusandae quasi aut. Corrupti reiciendis id distinctio dolorem dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 380, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 380, - "key": "pt7wiu8zbmofsudjnnvbdlloclsr5fcf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:33", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 381, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0380", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-03-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.80", - "balance": "24.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 396, - "quantity": 5, - "cost": 4.96, - "product_key": "vel", - "notes": "Sint vel similique animi perferendis recusandae ratione.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:33.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 381, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 381, - "key": "dhfjdlupvmanftm61j7ho8u6uesbyazh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 382, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0381", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-28", - "last_sent_date": null, - "due_date": "2020-04-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.75", - "balance": "51.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 397, - "quantity": 9, - "cost": 5.75, - "product_key": "architecto", - "notes": "Laudantium rerum quisquam quo magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 382, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 382, - "key": "oermrygyhqvagvr20cihjc2stagma2lc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 383, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0382", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-03", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.13", - "balance": "23.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 398, - "quantity": 3, - "cost": 7.71, - "product_key": "harum", - "notes": "Libero rerum repellendus labore consequatur voluptatem aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 383, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 383, - "key": "gndxmewzeebynyyympmcwx4wgqf1nnwk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 384, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0383", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-11", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.47", - "balance": "57.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 399, - "quantity": 7, - "cost": 8.21, - "product_key": "eius", - "notes": "Ab quidem quis et sequi. Ut modi maxime qui eveniet quo debitis. Id eos tenetur repellendus temporibus animi vero. Veritatis doloribus et aliquid alias doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 384, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 384, - "key": "iikb1c1fqpmmn5mzsg8iib2a4mgrdjow", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 385, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0384", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.16", - "balance": "7.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 400, - "quantity": 2, - "cost": 3.58, - "product_key": "exercitationem", - "notes": "Maiores in dolorum rerum impedit. Qui aut minima assumenda sunt quasi. Ut soluta soluta earum enim at eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 385, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 385, - "key": "hsvgzbetafr2fivtbzrsytz3diboqhhu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 386, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0385", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.34", - "balance": "3.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 401, - "quantity": 1, - "cost": 3.34, - "product_key": "officiis", - "notes": "Omnis animi et non et deleniti dolores. Consequatur iusto sit qui dolorem. Voluptatibus facilis quisquam eaque libero nesciunt. Ad laboriosam sed et consequatur. Cum iure fugiat exercitationem neque facilis. Labore consequuntur voluptas esse et consequatur veritatis provident.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 386, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 386, - "key": "t63hkd2qxccbbs03lwh0robf276b6hef", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 387, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0386", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-28", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.50", - "balance": "28.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 402, - "quantity": 10, - "cost": 2.85, - "product_key": "harum", - "notes": "Atque aut quam odit ex nisi enim non. Et et aspernatur minus facilis dolore. Blanditiis aut inventore voluptatem eum est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 387, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 387, - "key": "frusvvjh1lzxpz4dehlfhc83gslq5mdc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 388, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0387", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.02", - "balance": "6.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 403, - "quantity": 1, - "cost": 6.02, - "product_key": "repudiandae", - "notes": "Nesciunt illum id aspernatur labore neque velit. Magni dicta suscipit sunt. Aut ut culpa in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 388, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 388, - "key": "z2azdxhcwspsgg41wochzxa6cbfaqxla", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 389, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0388", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-19", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.68", - "balance": "17.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 404, - "quantity": 4, - "cost": 4.42, - "product_key": "exercitationem", - "notes": "Sed qui dolorem aut eum debitis. Eaque veritatis earum ut rem. Quod sint vel repudiandae. Necessitatibus velit ut atque dolorem sequi qui. Rerum aut mollitia ut qui. Ex nihil magnam aliquam et fuga non. Maxime ex voluptatem provident aspernatur quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 389, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 389, - "key": "jiwzbks3m6lkdruprorlovc4gzm1rfqq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 390, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0389", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.09", - "balance": "13.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 405, - "quantity": 7, - "cost": 1.87, - "product_key": "id", - "notes": "Illo mollitia omnis maxime corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 390, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 390, - "key": "v9lxcleyxycfo5am8rvl0jlez7ulm60e", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 391, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0390", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-03-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.94", - "balance": "59.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 406, - "quantity": 6, - "cost": 9.99, - "product_key": "aut", - "notes": "Libero error sit velit et est distinctio dolorem. Nihil dolores facilis corrupti et qui est qui est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 391, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 391, - "key": "rhyr031wnmhclwaugtgfjqe70wb30nve", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 392, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0391", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.00", - "balance": "22.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 407, - "quantity": 8, - "cost": 2.75, - "product_key": "tempora", - "notes": "Ducimus voluptatibus omnis enim iste. Sapiente iure voluptatibus laboriosam quia amet. Dignissimos soluta quas minus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 392, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 392, - "key": "rihjttgby6oy9smdp5bkg0cyjd0oysyf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 393, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0392", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-02-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "77.30", - "balance": "77.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 408, - "quantity": 10, - "cost": 7.73, - "product_key": "quae", - "notes": "Et excepturi consequatur beatae velit quaerat vel et. Amet a ducimus quisquam nemo ea. Delectus quisquam ipsa sunt sunt molestiae. Rerum laborum repellat at doloribus et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 393, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 393, - "key": "i0o928vlv3wbeodbguzvai6n2dmvcami", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 394, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0393", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.90", - "balance": "51.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 409, - "quantity": 6, - "cost": 8.65, - "product_key": "unde", - "notes": "Et natus ratione laborum. Asperiores doloribus consectetur similique aspernatur ea. Aut sed voluptatem molestiae nihil dolorem dicta consequatur. Est iure molestiae maiores sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 394, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 394, - "key": "5lyz036ka9ojukyxt15kwze4cwbmnjwp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 395, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0394", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-15", - "last_sent_date": null, - "due_date": "2020-02-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.85", - "balance": "14.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 410, - "quantity": 3, - "cost": 4.95, - "product_key": "fugiat", - "notes": "Accusamus ut neque nisi nulla. Ut aut rerum dicta qui neque. Quidem dolor iusto totam eum numquam sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 395, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 395, - "key": "enwoazqd4dptc2ldr53dcpgxxqxmpe6d", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 396, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0395", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-09", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.40", - "balance": "4.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 411, - "quantity": 2, - "cost": 2.2, - "product_key": "optio", - "notes": "Voluptas omnis quis fugiat hic aut et et aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 396, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 396, - "key": "umslxifbreees0cooz5g6ws6t56udpud", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 397, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0396", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.54", - "balance": "9.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 412, - "quantity": 1, - "cost": 9.54, - "product_key": "eaque", - "notes": "Quisquam nam sed reiciendis earum sit. Impedit et harum placeat tempora nostrum nam. Voluptatibus dolores nam unde qui eligendi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 397, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 397, - "key": "mxv7hgbil5eqabotblwq98cgldkms8tk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 398, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0397", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-12", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "74.97", - "balance": "74.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 413, - "quantity": 9, - "cost": 8.33, - "product_key": "distinctio", - "notes": "Corrupti magnam inventore commodi est nostrum nostrum. Quis harum sunt hic voluptas. At ipsam sit voluptatem et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 398, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 398, - "key": "wvmsuaq6zzkdlqrhoeetxzmy3ar9y1a2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 399, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0398", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2020-05-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.87", - "balance": "4.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 414, - "quantity": 1, - "cost": 4.87, - "product_key": "voluptatibus", - "notes": "Quos officia et velit minus officiis dolores. Quibusdam qui cum quo quis. Sit autem et animi. At laborum expedita numquam aut voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 399, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 399, - "key": "exetr9fqh5ke5x31bipjsykmuoaw8nfo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 400, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0399", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-02", - "last_sent_date": null, - "due_date": "2020-03-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.56", - "balance": "43.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 415, - "quantity": 9, - "cost": 4.84, - "product_key": "quo", - "notes": "Unde id voluptas omnis adipisci. Quisquam quia quas sequi quo ipsa et quibusdam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 400, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 400, - "key": "6qr9hs7gvbooly39lf9eqysmr0shpv8m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 401, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0400", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-26", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.16", - "balance": "60.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 416, - "quantity": 8, - "cost": 7.52, - "product_key": "aliquid", - "notes": "Iure nihil minima labore aut non aspernatur et. Sed ab tenetur cum dicta non. Modi ipsam expedita qui minima doloribus doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 401, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 401, - "key": "cxanrt5i6cnkcqo7x3bp00svd2rcwbew", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 402, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0401", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-06", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.00", - "balance": "53.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 417, - "quantity": 10, - "cost": 5.3, - "product_key": "ipsam", - "notes": "Dolorem in expedita aut impedit vero est. Amet odio voluptas assumenda hic. Voluptatem aut sunt consequatur. Saepe nesciunt id molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 402, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 402, - "key": "ifxq9wuruevcir9dotjojsaa5wzrggxi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 403, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0402", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.92", - "balance": "7.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 418, - "quantity": 2, - "cost": 3.96, - "product_key": "eos", - "notes": "Tenetur ullam voluptatem autem. Qui sunt culpa et inventore ea facere et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 403, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 403, - "key": "gzn1akironoofvcrx8btxayer9fiksag", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 404, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0403", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-26", - "last_sent_date": null, - "due_date": "2020-02-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "76.00", - "balance": "76.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 419, - "quantity": 10, - "cost": 7.6, - "product_key": "debitis", - "notes": "In cum dolor et maiores adipisci harum. Enim vel dolor nostrum perferendis excepturi dicta alias. Dignissimos error eveniet eveniet rem dolor enim libero illo. Quia in placeat aut sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 404, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 404, - "key": "x89q2wawthhtyiqt94nozsbozcwjeumr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 405, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0404", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2020-04-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "77.00", - "balance": "77.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 420, - "quantity": 10, - "cost": 7.7, - "product_key": "molestiae", - "notes": "Eaque placeat numquam est quod rerum maxime rerum temporibus. Quod commodi odio enim sint ex ratione. Sequi dicta eligendi consequatur excepturi nobis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 405, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 405, - "key": "mhpmfn1vtwdntb79i2jmpnhhqaxyvjca", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 406, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0405", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.08", - "balance": "10.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 421, - "quantity": 8, - "cost": 1.26, - "product_key": "sunt", - "notes": "Sed quaerat at nihil eos. Ex quos vitae corrupti. Eum sequi doloribus sint tempore explicabo officia sequi et. Vel quae est et quidem optio saepe.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 406, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 406, - "key": "nxfipo1nt8nfgomqnujek9brcayx1wzz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 407, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0406", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.40", - "balance": "28.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 422, - "quantity": 10, - "cost": 2.84, - "product_key": "est", - "notes": "Beatae sed et voluptatem soluta optio. Eos repudiandae dolorum quia vel dolores doloremque et amet. Adipisci aliquam aut velit et et. Sunt sapiente fugit occaecati quod fuga animi est earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 407, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 407, - "key": "jjb9w1r373lppklt2i68wpax2opl5ixf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 408, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0407", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-12", - "last_sent_date": null, - "due_date": "2020-02-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.51", - "balance": "55.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 423, - "quantity": 7, - "cost": 7.93, - "product_key": "eos", - "notes": "Voluptatibus architecto qui dolor omnis odio. Quae id qui est beatae rem laudantium. Aut quia itaque facere ad consectetur deleniti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 408, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 408, - "key": "6fon2m1zsnmg8pnnuoif5h4ynlx6sezs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 409, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0408", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.05", - "balance": "16.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 424, - "quantity": 5, - "cost": 3.21, + "cost": 4.37, "product_key": "ut", - "notes": "Illo et qui deleniti culpa tenetur.", + "notes": "Dolores esse voluptatem recusandae placeat expedita ut laboriosam. Occaecati facilis impedit at. Nesciunt id ex ut sed qui. Hic qui quia sequi in iusto sit.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:34.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -119908,4838 +6214,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 409, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 409, - "key": "ygx4iawzitvwmqv92bsxz7qhpltr8qm9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 410, - "client_id": 14, + "id": 10372, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0409", + "number": "0015", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-05-08", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.86", - "balance": "49.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 425, - "quantity": 6, - "cost": 8.31, - "product_key": "et", - "notes": "Quasi sed nulla praesentium a sit. Culpa omnis est nulla soluta aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 410, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 410, - "key": "7dxacd1pyyydtiw5oxhpcvghf9xdbvfk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 411, - "client_id": 14, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0410", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.74", - "balance": "26.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 426, - "quantity": 7, - "cost": 3.82, - "product_key": "totam", - "notes": "Laudantium asperiores est sit nihil quis. Soluta natus nostrum quis sit recusandae distinctio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:34.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 411, - "company_id": 1, - "user_id": 1, - "client_contact_id": 14, - "quote_id": 411, - "key": "2s2bhyytfacwhkorihgyfh4qdrc4f510", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:34", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 512, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0511", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-13", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "76.86", - "balance": "76.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 527, - "quantity": 9, - "cost": 8.54, - "product_key": "vero", - "notes": "Omnis iusto eum doloribus ipsa deleniti. Dolorem excepturi autem dolor sint rem adipisci. Dicta repellendus deserunt et sint eaque iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 512, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 512, - "key": "m42bk3kxygwvpuhvmidfeetjskre4xfk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 513, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0512", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.54", - "balance": "9.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 528, - "quantity": 6, - "cost": 1.59, - "product_key": "hic", - "notes": "Beatae reprehenderit quaerat nostrum eum corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 513, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 513, - "key": "mh9endzkjsg2xoyqxnboypp1cjizjcd9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 514, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0513", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-20", - "last_sent_date": null, - "due_date": "2020-03-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "76.56", - "balance": "76.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 529, - "quantity": 8, - "cost": 9.57, - "product_key": "quas", - "notes": "Non qui iste aut eaque. Veniam veniam consequatur expedita. Vitae aut omnis deleniti repellat reiciendis eos omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 514, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 514, - "key": "aolae7wvpbxkjg10ty4xx3mcy7aolv5u", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 515, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0514", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-10", - "last_sent_date": null, - "due_date": "2019-12-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.98", - "balance": "1.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 530, - "quantity": 1, - "cost": 1.98, - "product_key": "et", - "notes": "Velit debitis omnis recusandae ratione. Non ipsa officiis earum repellendus fugiat. Ea itaque fugiat quia nam quia. At expedita id delectus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 515, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 515, - "key": "wuipgavr7ladlapzgcdyqfh6nctenxvd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 516, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0515", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-26", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "90.40", - "balance": "90.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 531, - "quantity": 10, - "cost": 9.04, - "product_key": "odit", - "notes": "Dignissimos eos eius tempora atque nobis fuga. Occaecati consectetur deserunt voluptate iusto aut numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 516, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 516, - "key": "1krie6aqcrpdjrwktv1r1yyqnwryckmn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 517, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0516", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-06-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.09", - "balance": "36.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 532, - "quantity": 9, - "cost": 4.01, - "product_key": "necessitatibus", - "notes": "Perspiciatis enim et rerum atque praesentium quam. Cupiditate natus magnam et asperiores dignissimos. Accusantium accusamus iure aut illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 517, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 517, - "key": "3mldw99fobdob7pqa7kckiai7mvw7bad", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 518, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0517", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2020-02-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.58", - "balance": "16.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 533, - "quantity": 2, - "cost": 8.29, - "product_key": "dolorum", - "notes": "Quia amet asperiores qui sunt beatae dolores rem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 518, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 518, - "key": "f0o5wbxpftuxuyknncmq6osqsmuyfvfg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 519, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0518", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.52", - "balance": "35.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 534, - "quantity": 6, - "cost": 5.92, - "product_key": "itaque", - "notes": "Quia nihil excepturi quod vitae. Sit autem non harum consequatur. Explicabo veniam numquam consectetur sunt ab.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 519, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 519, - "key": "rzvangpkdqdqtnzwzbvlu3ahjemv3amw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 520, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0519", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.40", - "balance": "38.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 535, - "quantity": 8, - "cost": 4.8, - "product_key": "facilis", - "notes": "Aliquid sint possimus inventore assumenda minus quo. Et illum id ullam et velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 520, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 520, - "key": "bh9liwummiruhejnurvmzy382ofcub9s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 521, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0520", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.36", - "balance": "17.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 536, - "quantity": 2, - "cost": 8.68, - "product_key": "perferendis", - "notes": "Occaecati officia doloribus laborum repellat ut sit odio odit. Mollitia quo maiores delectus vero. Repudiandae maxime et eius non molestiae et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 521, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 521, - "key": "lvh7lruhyjtbdzv2llgdmky79pjaphij", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 522, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0521", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-03-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.36", - "balance": "7.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 537, - "quantity": 2, - "cost": 3.68, - "product_key": "ipsam", - "notes": "Quo libero possimus et quo ut vero molestias odit. Atque dolorem nisi enim officia enim praesentium aut. Quia necessitatibus magni illo ut repellendus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 522, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 522, - "key": "7zdrl4x6eozklfw3ny5lkwnpirxgpbi3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 523, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0522", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-02-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.12", - "balance": "18.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 538, - "quantity": 4, - "cost": 4.53, - "product_key": "quo", - "notes": "Soluta consequuntur officia consectetur temporibus. Provident optio eligendi facilis hic. Qui occaecati et aliquid. Error aut quibusdam et nulla molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 523, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 523, - "key": "kjbzcpiuf49ayazblls8l7wig1bthjfy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 524, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0523", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-11", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.30", - "balance": "7.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 539, - "quantity": 5, - "cost": 1.46, - "product_key": "asperiores", - "notes": "Laboriosam facere perferendis accusantium ullam veritatis vel pariatur. Voluptate ratione qui repellendus. Inventore omnis pariatur ut doloribus. Dolores aperiam dolores dolor voluptate reiciendis. Earum dignissimos delectus aliquam corrupti voluptas nisi earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 524, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 524, - "key": "1fc6b1bjr0fuwbslh5gyfq9pz3uykjz0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 525, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0524", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "78.00", - "balance": "78.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 540, - "quantity": 10, - "cost": 7.8, - "product_key": "et", - "notes": "Nisi non fugiat maxime accusantium ut explicabo illo. Dolorum qui rerum sed quam omnis at fugit nulla. Vel ducimus ad qui blanditiis possimus velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 525, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 525, - "key": "rvhmwjpxrcbzytwixqf3835agyfufnlt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 526, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0525", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-19", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.93", - "balance": "18.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 541, - "quantity": 3, - "cost": 6.31, - "product_key": "saepe", - "notes": "Error quia qui vero minus. Et quo qui numquam velit quis. Quia molestiae illo aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 526, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 526, - "key": "pexkn9i7kwy2g6fd8bjfmlczxc0dbciy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 527, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0526", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.68", - "balance": "7.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 542, - "quantity": 3, - "cost": 2.56, - "product_key": "quia", - "notes": "Quisquam animi nesciunt dolore quia ipsa modi. Eum enim soluta provident assumenda. Qui qui quod pariatur accusantium nam quibusdam praesentium. Provident ipsa consequatur velit perspiciatis quaerat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 527, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 527, - "key": "wpvg9d4btrmi0t6f91fipdekwr3remju", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 528, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0527", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.16", - "balance": "24.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 543, - "quantity": 4, - "cost": 6.04, - "product_key": "quas", - "notes": "Perspiciatis sed rerum est doloremque doloribus dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 528, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 528, - "key": "klzqib65ccli2big8kfzbhmem5jjatm0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 529, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0528", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.85", - "balance": "14.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 544, - "quantity": 9, - "cost": 1.65, - "product_key": "est", - "notes": "Omnis voluptate asperiores sequi non ea ullam. Unde voluptatibus fugiat eum ipsam eos modi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 529, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 529, - "key": "jkaebd7ypllne1elzbmgnzssiimtp4dz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 530, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0529", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.48", - "balance": "68.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 545, - "quantity": 8, - "cost": 8.56, - "product_key": "atque", - "notes": "Qui unde neque asperiores est. Blanditiis in qui consequatur distinctio ut. Nihil harum et numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 530, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 530, - "key": "jveu7sbpnlltp7ml0xwyhisqtlgi6atg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 531, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0530", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-04-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.76", - "balance": "34.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 546, - "quantity": 4, - "cost": 8.69, - "product_key": "laudantium", - "notes": "Neque est sapiente impedit maxime esse labore voluptas. Quia enim nam magni dolor amet nobis. Officiis omnis omnis neque sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 531, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 531, - "key": "ygl2n7cypp2xsuuxznuhmp9brctloeba", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 532, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0531", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-27", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.62", - "balance": "7.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 547, - "quantity": 2, - "cost": 3.81, - "product_key": "voluptatem", - "notes": "Libero laboriosam veniam ea sed quos beatae. Eos sapiente inventore id ab. Sint sunt id odit fugiat libero. Eaque saepe ratione commodi eum. Vero quasi aut sed quo molestiae commodi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 532, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 532, - "key": "2p0ulhxah8idppulyq8mtqangkngdlyu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 533, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0532", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-06", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.86", - "balance": "3.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 548, - "quantity": 2, - "cost": 1.93, - "product_key": "minima", - "notes": "Hic dolores dolores corrupti possimus vel omnis exercitationem. Fugiat sapiente vel voluptate possimus porro. Ut quod mollitia velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 533, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 533, - "key": "mcsq9oazmxfe1u3e3mwuxzfgnef2qqbz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 534, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0533", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-26", - "last_sent_date": null, - "due_date": "2020-02-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.94", - "balance": "18.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 549, - "quantity": 2, - "cost": 9.47, - "product_key": "animi", - "notes": "Accusamus ut porro tenetur tempore. Beatae iusto id voluptas adipisci non sint similique. Veniam et deleniti inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 534, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 534, - "key": "1mvog0uwy6d162itlsixkb1k607rfho2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 535, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0534", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-03-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.36", - "balance": "39.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 550, - "quantity": 8, - "cost": 4.92, - "product_key": "id", - "notes": "Voluptates eum placeat reiciendis mollitia est. Hic quod ut maiores rem. Nihil dolores quo eum nesciunt quia inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 535, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 535, - "key": "r1n8qlhfnefdfaaxbqmcaahv5pgakb5l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 536, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0535", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.60", - "balance": "12.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 551, - "quantity": 3, - "cost": 4.2, - "product_key": "iure", - "notes": "Nihil aut rem architecto placeat dolores minima. Dolorem eligendi quibusdam eveniet magni quia qui deleniti. Porro ad occaecati similique iusto doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 536, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 536, - "key": "knfoz8nxti2svdcvg7qxpkcxeoh9tmfv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 537, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0536", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-20", - "last_sent_date": null, - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.57", - "balance": "4.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 552, - "quantity": 1, - "cost": 4.57, - "product_key": "eum", - "notes": "Eveniet voluptatem sint qui rerum. Mollitia tempora et dolore necessitatibus esse. Dolorem tempore at ut enim.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 537, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 537, - "key": "eu81uis0d6uhsofuciptpzclbas7wlx0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 538, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0537", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.70", - "balance": "17.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 553, - "quantity": 10, - "cost": 1.77, - "product_key": "error", - "notes": "Accusamus est qui dolor qui cupiditate provident. Impedit sed et eos similique esse ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 538, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 538, - "key": "nm8vlglaqlup6m4ipotim6ggfnlaersn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 539, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0538", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.71", - "balance": "55.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 554, - "quantity": 9, - "cost": 6.19, - "product_key": "est", - "notes": "Quam reprehenderit sit expedita dicta laboriosam et. Eaque aperiam necessitatibus sed tempore facilis porro. Dolorem fugiat dolores sunt error soluta. Ipsam perferendis perferendis possimus nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 539, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 539, - "key": "1cr5zib1qti31ko13qum5xj52vjf1vsb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 540, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0539", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-04-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.60", - "balance": "9.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 555, - "quantity": 4, - "cost": 2.4, - "product_key": "explicabo", - "notes": "Corporis quas enim sint. Rerum officiis sint a ea autem aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 540, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 540, - "key": "iup4wfhfcncsm5xxwaeso2hhga1g84on", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 541, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0540", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2019-12-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.98", - "balance": "6.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 556, - "quantity": 2, - "cost": 3.49, - "product_key": "amet", - "notes": "Perferendis maxime nemo tenetur omnis quidem. Assumenda ut in doloribus aut sed est corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 541, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 541, - "key": "xzqby3vatiuck3hn3lbtptjzjcjq9x0j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 542, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0541", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.64", - "balance": "48.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 557, - "quantity": 8, - "cost": 6.08, - "product_key": "voluptatem", - "notes": "Dolor asperiores veniam repellat dolorem quam sit iste. Doloremque id libero voluptatem molestiae dicta rerum aut. Cum qui dolorem velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 542, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 542, - "key": "cxcuyemetl4whl04x373j1vszcou7jey", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 543, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0542", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2020-04-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.50", - "balance": "19.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 558, - "quantity": 10, - "cost": 1.95, - "product_key": "et", - "notes": "Assumenda perspiciatis natus eveniet. Dolorem nobis asperiores dolor ut nobis cum consequatur consequatur. Quo omnis repellendus quia incidunt quis quisquam. Omnis sit dolorum necessitatibus doloremque labore possimus. Consequatur harum vel rerum vero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 543, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 543, - "key": "xgzsoo2l3cjq0vbh54rs9fwjbnpb8ul4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 544, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0543", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "77.22", - "balance": "77.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 559, - "quantity": 9, - "cost": 8.58, - "product_key": "debitis", - "notes": "Aut eius fugit ipsa qui rerum. Nesciunt laborum quasi nihil odit. Nesciunt delectus sunt recusandae natus ratione.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 544, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 544, - "key": "xg8ne93qrxq7lk36qh5jr3w6ktkk68kg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 545, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0544", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.12", - "balance": "9.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 560, - "quantity": 2, - "cost": 4.56, - "product_key": "sed", - "notes": "Dolore iusto sit ea et autem. Molestiae officia voluptatum nobis magnam maxime incidunt asperiores. Vel qui maxime illum aut quia. Doloribus modi consequatur et qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 545, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 545, - "key": "3intxfwpyqqpoeakx6mdkzcoqpzv6ui0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 546, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0545", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-15", - "last_sent_date": null, - "due_date": "2020-04-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.56", - "balance": "34.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 561, - "quantity": 8, - "cost": 4.32, - "product_key": "aperiam", - "notes": "Illo quaerat voluptatem consequatur voluptas dolores sunt explicabo eum. Vitae optio sint fugit perspiciatis nemo repudiandae. Tempore voluptatum explicabo architecto dicta qui nihil. Ut maxime error ut sed et doloribus laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 546, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 546, - "key": "0dp8pilcehmdus05neytqoy9ujnhlx1y", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 547, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0546", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.40", - "balance": "26.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 562, - "quantity": 3, - "cost": 8.8, - "product_key": "cupiditate", - "notes": "Ipsam sed exercitationem nulla odit. Deserunt laborum nihil ipsa asperiores minima aliquam ipsam pariatur. Eligendi enim repudiandae mollitia et quia molestias magni. Rem voluptate iusto saepe aut aut veniam minus qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 547, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 547, - "key": "yzndyy6jb9k5onh8hdqxy5r6mgpvzfyq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 548, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0547", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.72", - "balance": "8.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 563, - "quantity": 4, - "cost": 2.18, - "product_key": "nesciunt", - "notes": "Eveniet qui id et porro in iste officia quaerat. Modi id nesciunt aperiam autem consequatur qui temporibus vel. Qui ex ea nulla non veritatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 548, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 548, - "key": "ebug19mdmtkcm3xstwroxryhvkntuuny", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 549, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0548", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2019-12-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.40", - "balance": "34.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 564, - "quantity": 8, - "cost": 4.3, - "product_key": "vel", - "notes": "Et facilis possimus tenetur hic et magnam possimus aut. Quia quod ullam tempore dolor alias labore nemo. Officiis aperiam incidunt aut nobis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 549, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 549, - "key": "3gwdrhxqqdx7zhcii0gu1sri4nel7qqa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 550, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0549", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-06-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "79.38", - "balance": "79.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 565, - "quantity": 9, - "cost": 8.82, - "product_key": "hic", - "notes": "Distinctio vitae non sunt fugit qui tenetur. Et voluptates optio amet quae vitae. Nostrum tempore et officiis deleniti tempore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 550, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 550, - "key": "echchzq31vakkfpgwtdghb5xouyxsysx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 551, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0550", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-05", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.10", - "balance": "1.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 566, - "quantity": 1, - "cost": 1.1, - "product_key": "totam", - "notes": "Aut quidem maxime molestiae dolorem. Dicta sunt provident mollitia omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 551, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 551, - "key": "bjp6ms6cjtv3cydpehkobnrc1aj2jwrm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 552, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0551", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.48", - "balance": "19.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 567, - "quantity": 4, - "cost": 4.87, - "product_key": "dolorum", - "notes": "Quasi aut possimus quibusdam unde omnis molestiae. Eum perspiciatis eum hic tenetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 552, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 552, - "key": "eyvu4kwsjenkfc5slbcltp8dxx9chcyw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 553, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0552", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.40", - "balance": "50.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 568, - "quantity": 10, - "cost": 5.04, - "product_key": "sed", - "notes": "Voluptas eos eos ut non aut amet modi. Qui ut error necessitatibus mollitia. Beatae in nemo quidem quisquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 553, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 553, - "key": "wpsxhdb2gcsmxpo3jfgrrf0e2epl19ot", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 554, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0553", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.10", - "balance": "5.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 569, - "quantity": 3, - "cost": 1.7, - "product_key": "aspernatur", - "notes": "Nam voluptas hic voluptatibus at incidunt. Est voluptas ut aut alias. Corporis magnam ut nostrum corporis. Delectus totam non ipsam et tempora id animi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 554, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 554, - "key": "qgzr4axpxbcobllcawgqw52oczljtohj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 555, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0554", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.48", - "balance": "12.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 570, - "quantity": 6, - "cost": 2.08, - "product_key": "omnis", - "notes": "Incidunt enim at inventore omnis vitae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 555, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 555, - "key": "ovtkbm7ujvrbzgicgsmpnmvel489d2v2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 556, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0555", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-13", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "79.12", - "balance": "79.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 571, - "quantity": 8, - "cost": 9.89, - "product_key": "quia", - "notes": "Mollitia nesciunt quia dicta deserunt cupiditate suscipit quam ipsum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 556, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 556, - "key": "e7xqgfgypvedcu86y56ttkdggohytkit", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 557, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0556", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-28", + "date": "2020-08-16", "last_sent_date": null, "due_date": "2020-05-01", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.04", - "balance": "21.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 572, - "quantity": 8, - "cost": 2.63, - "product_key": "minima", - "notes": "Et illo voluptate quasi expedita fugit ut nemo. Voluptatem aspernatur excepturi optio veritatis. Eum voluptatem enim est aliquid molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 557, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 557, - "key": "jqgx8sud7tk5wfygdfziwl3rk9mzlzhg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 558, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0557", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-10", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.75", - "balance": "22.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 573, - "quantity": 5, - "cost": 4.55, - "product_key": "exercitationem", - "notes": "Non et dolor cupiditate quia sed et. Nesciunt adipisci aut nihil in. Velit odio consequuntur animi in omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 558, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 558, - "key": "7vjgya2kwvxgegp9xwu8z3havinepc7r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 559, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0558", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-02-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.18", - "balance": "30.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 574, - "quantity": 6, - "cost": 5.03, - "product_key": "ipsa", - "notes": "Iusto consequatur nisi quisquam nemo eos ducimus. Atque quos exercitationem atque ipsa pariatur et. Cupiditate praesentium dicta deleniti occaecati distinctio et iusto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 559, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 559, - "key": "8dumzy6jtjuwgcfcsjup3wgz1gkrhphj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 560, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0559", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.83", - "balance": "19.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 575, - "quantity": 3, - "cost": 6.61, - "product_key": "fugiat", - "notes": "Voluptates quod a doloremque. Id saepe reprehenderit est et ut. Aut doloribus porro sit alias quibusdam. Quod culpa dolores dolore libero sequi illum officia. Voluptas odit aliquam non error libero omnis. Quia corrupti est maxime eos ea iusto porro sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 560, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 560, - "key": "dstnhwncb7gwnc3hd2zjqlftguryfxvw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 561, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0560", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.08", - "balance": "7.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 576, - "quantity": 1, - "cost": 7.08, - "product_key": "rerum", - "notes": "Autem est quia sunt sed. Quod aut eaque qui veritatis. Nostrum maiores sapiente et ut optio et et et. Sunt expedita magnam nulla blanditiis est quis praesentium. Porro deleniti nihil quia earum ut aut amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 561, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 561, - "key": "bvcdg5xdbusratx6nhekxj9puohyx8eg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 562, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0561", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.11", - "balance": "19.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 577, - "quantity": 3, - "cost": 6.37, - "product_key": "veniam", - "notes": "Sed sit qui quo recusandae sit saepe. Aut rerum sapiente dolore modi voluptatum dolore quis. Qui perspiciatis nihil ab.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 562, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 562, - "key": "tj4oyl5umare4psllxyfav590yd2l86v", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 563, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0562", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-07", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.20", - "balance": "49.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 578, - "quantity": 5, - "cost": 9.84, - "product_key": "ut", - "notes": "Eos veniam aut cum expedita.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 563, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 563, - "key": "uvpes7i1x9ske8ftcmoqvr0hgbyg8kvf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 564, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0563", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2019-12-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "56.80", - "balance": "56.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 579, - "quantity": 8, - "cost": 7.1, - "product_key": "quis", - "notes": "Ad id sed quaerat. Qui itaque quia mollitia vitae ipsa assumenda. At consequatur aut aut aut eveniet vel. Ipsa fuga et mollitia sunt tempore tempora repudiandae. Itaque asperiores eligendi laborum. Ut id officiis distinctio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 564, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 564, - "key": "fzcbpmxbd9zy4py2exklmp6bw2yy7yww", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 565, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0564", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-02", - "last_sent_date": null, - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.80", - "balance": "33.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 580, - "quantity": 4, - "cost": 8.45, - "product_key": "exercitationem", - "notes": "Id sequi sit nulla dolore ea qui et vero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 565, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 565, - "key": "wpelilcmdjsbz4ulxl5xxlfr624fllll", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 566, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0565", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2020-05-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.26", - "balance": "10.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 581, - "quantity": 3, - "cost": 3.42, - "product_key": "dicta", - "notes": "Tempore saepe voluptatibus vel et molestiae alias. Et provident praesentium commodi ducimus natus explicabo aut. Omnis distinctio alias dignissimos cupiditate. Amet ut aut perspiciatis repellendus eos sed magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 566, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 566, - "key": "299yeknqqbz7l8rns3vixd3v78e14slg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 567, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0566", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-02-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.73", - "balance": "51.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 582, - "quantity": 7, - "cost": 7.39, - "product_key": "quod", - "notes": "Quia nihil eveniet vel quia. Provident voluptas aut ipsum facere quos rerum quos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 567, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 567, - "key": "gpbicoz1wgcybqxdwjug84o5ymhw2dqf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 568, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0567", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-03-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.36", - "balance": "14.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 583, - "quantity": 4, - "cost": 3.59, - "product_key": "quae", - "notes": "Expedita aut porro dolorem eos non. Aliquid excepturi minima est laboriosam fuga aliquam est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 568, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 568, - "key": "pmwfx8a1yiyxwtlfempb0f5dudwei9nk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 569, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0568", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.48", - "balance": "34.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 584, - "quantity": 4, - "cost": 8.62, - "product_key": "praesentium", - "notes": "Quae non laborum incidunt repellendus. Doloremque qui accusantium est exercitationem exercitationem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 569, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 569, - "key": "bxfcoc0ctshxdthsidjqentm3ryhjgmc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 570, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0569", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.56", - "balance": "28.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 585, - "quantity": 3, - "cost": 9.52, - "product_key": "ad", - "notes": "Ut error corrupti est ut ullam. Sed aut non et veritatis. Voluptatem hic minus ut molestiae quis numquam praesentium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 570, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 570, - "key": "zcbmrneq0ufdcvny7riipky0okp5p9ky", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 571, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0570", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-09", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.66", - "balance": "60.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 586, - "quantity": 9, - "cost": 6.74, - "product_key": "vero", - "notes": "Velit voluptatum sunt dignissimos dignissimos facere sed ullam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 571, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 571, - "key": "dkawrvfcvyvz9vnmgo7oxdpxbjeweifq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 572, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0571", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.06", - "balance": "18.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 587, - "quantity": 6, - "cost": 3.01, - "product_key": "est", - "notes": "Minima quis necessitatibus modi. Ad amet voluptates assumenda itaque architecto et in. Autem velit officiis qui et deserunt consequuntur veritatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 572, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 572, - "key": "ehqla8rcptvyfrrx53kbs9wmnezm29h2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 573, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0572", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -124749,325 +6246,25 @@ "custom_value2": "0.00", "next_send_date": null, "amount": "35.12", - "balance": "35.12", - "partial": null, + "balance": "17.86", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 588, - "quantity": 8, - "cost": 4.39, - "product_key": "odio", - "notes": "Sunt est aperiam quibusdam totam. Maxime dignissimos esse aut aut dolorem cumque expedita. Eos et est id asperiores unde quis sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 573, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 573, - "key": "e7l3pbrchscji6sesilklmiwbpsjveav", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 574, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0573", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-14", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.16", - "balance": "5.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 589, - "quantity": 2, - "cost": 2.58, - "product_key": "voluptatem", - "notes": "Possimus iste at est accusantium dignissimos rem impedit qui. Et deserunt et labore aspernatur nihil porro vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 574, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 574, - "key": "v8vkvd4jda1gqgnw8q8cv3qkxbzk4lyu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:40", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 575, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0574", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2020-02-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.47", - "balance": "57.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 590, - "quantity": 7, - "cost": 8.21, - "product_key": "consectetur", - "notes": "Similique voluptatum doloremque repellendus maiores illum iure qui. Id omnis cupiditate molestias dolorem possimus porro. Et dolores quis sequi aut impedit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:40.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 575, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 575, - "key": "ya2gflo9cuaitli0zopvryrxi7diatgg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 576, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0575", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-22", - "last_sent_date": null, - "due_date": "2020-03-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.58", - "balance": "11.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 591, - "quantity": 6, - "cost": 1.93, - "product_key": "natus", - "notes": "Aperiam sunt sequi voluptatem et numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 576, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 576, - "key": "iq7jhvl1f0252m7bndxodsh9k34bv3lz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 577, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0576", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.74", - "balance": "37.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 592, - "quantity": 6, - "cost": 6.29, + "id": 10372, + "quantity": 4, + "cost": 8.78, "product_key": "corrupti", - "notes": "Ad vel quo delectus nemo. Ipsum et sunt ullam sed quia quaerat et eligendi. Ratione dolorem ut quos aut ipsa quis eligendi sunt. Aut consequatur et et recusandae rerum dolores.", + "notes": "Et maiores nam nemo. Ea nobis aut iste ea mollitia id velit. Voluptatum quia eligendi corporis. Velit quae quod necessitatibus voluptas ducimus dolore animi.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:41.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -125076,50 +6273,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 577, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 577, - "key": "eaobicpebchhjaef5uz8qtfg2k9ts6cc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 578, - "client_id": 15, + "id": 10373, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0577", + "number": "0016", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-05-28", + "date": "2020-05-24", "last_sent_date": null, - "due_date": "2020-01-03", + "due_date": "2020-04-04", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -125128,630 +6304,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "27.15", - "balance": "27.15", - "partial": null, + "amount": "18.99", + "balance": "12.10", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 593, - "quantity": 5, - "cost": 5.43, - "product_key": "qui", - "notes": "Ipsa corporis et quis minus. Enim impedit rem amet qui fugit id. Et sapiente provident omnis pariatur hic atque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 578, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 578, - "key": "sqoi9qzgmouawtdh9fprqyc8nbwghqvk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 579, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0578", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-01-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.25", - "balance": "27.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 594, - "quantity": 5, - "cost": 5.45, - "product_key": "est", - "notes": "Quae illo sint saepe. Voluptatem enim quo aut id. Qui vero molestiae eligendi ut saepe.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 579, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 579, - "key": "vmoqww5mlkjta21l86m1q3ce2pcwvuis", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 580, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0579", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-06-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "65.38", - "balance": "65.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 595, - "quantity": 7, - "cost": 9.34, - "product_key": "dolorem", - "notes": "Facilis fugiat cupiditate eius minus maiores odio incidunt. Sed ut dolore et possimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 580, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 580, - "key": "owegtynnlfo6wz9pkqguskhbf1bgqf1k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 581, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0580", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2019-12-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.46", - "balance": "29.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 596, - "quantity": 6, - "cost": 4.91, - "product_key": "recusandae", - "notes": "Quas pariatur veniam repudiandae animi ipsum. Natus ipsam ut quisquam ratione non ut saepe. Aut quod et omnis quisquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 581, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 581, - "key": "v2iw9kgn606gzqeyv15x9r3d8l5ufvdq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 582, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0581", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.53", - "balance": "6.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 597, - "quantity": 1, - "cost": 6.53, - "product_key": "et", - "notes": "Animi accusantium doloribus optio voluptatem ut sed sint. Ea possimus occaecati est nisi maxime. Atque corrupti provident reprehenderit incidunt distinctio ex et omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 582, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 582, - "key": "qb274qzpl4v9cjrwmxlx1uxknercuodn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 583, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0582", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.25", - "balance": "33.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 598, - "quantity": 5, - "cost": 6.65, - "product_key": "sit", - "notes": "In eveniet eos impedit velit nulla. Suscipit est repudiandae voluptatum autem deleniti. Ut nihil dolorem magni et ut a. Consequatur ipsa asperiores vel autem sed iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 583, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 583, - "key": "7cjnvkvch1afksy5jthnqg2inygps4fb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 584, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0583", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.48", - "balance": "5.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 599, - "quantity": 2, - "cost": 2.74, - "product_key": "deleniti", - "notes": "Quia reiciendis hic culpa vel similique. Illo omnis qui itaque aliquid voluptatem. Corporis accusamus tempore porro dolores qui similique voluptatem. Totam blanditiis totam ratione nulla id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 584, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 584, - "key": "49augwwvh5dri1njhugnhvu9ubf8h4l2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 585, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0584", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-11", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.40", - "balance": "43.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 600, - "quantity": 10, - "cost": 4.34, - "product_key": "nisi", - "notes": "Aut labore quia occaecati sed incidunt. Eligendi ab inventore consectetur autem. Dolores voluptatem in iste neque quia reiciendis placeat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 585, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 585, - "key": "sfsxtlc3hu4nyg9os6fic9phj5l2ehks", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 586, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0585", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.78", - "balance": "45.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 601, - "quantity": 7, - "cost": 6.54, + "id": 10373, + "quantity": 9, + "cost": 2.11, "product_key": "veritatis", - "notes": "Error aut aut nemo. Fuga voluptatem reiciendis esse ut labore vero sed. Exercitationem hic reiciendis omnis a unde. Labore totam minus vitae aliquid ab.", + "notes": "Ducimus ut omnis tempora est. Sint sed magni dolor dicta dolor veniam quaerat quia. Et earum voluptas esse animi. Voluptatem ut rem aut ipsam velit sed. Architecto repellat labore quasi nihil aspernatur. Dolorum delectus consequatur molestiae.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:41.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -125760,50 +6332,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 586, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 586, - "key": "gnpvs67wtzqdcsgokftzl6xfzcdlytfh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 587, - "client_id": 15, + "id": 10374, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0586", + "number": "0017", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-16", + "date": "2020-07-04", "last_sent_date": null, - "due_date": "2020-01-25", + "due_date": "2020-03-27", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -125812,934 +6363,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "17.22", - "balance": "17.22", - "partial": null, + "amount": "69.70", + "balance": "67.63", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 602, - "quantity": 2, - "cost": 8.61, - "product_key": "voluptatibus", - "notes": "Ullam sit non aperiam fugit magnam ut qui. Temporibus ut aut placeat est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 587, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 587, - "key": "sljc1sxdatbnqgaietwijqkqpkuf0bmi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 588, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0587", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-15", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.05", - "balance": "49.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 603, - "quantity": 9, - "cost": 5.45, - "product_key": "fugit", - "notes": "Ut et hic qui ullam sit. Porro minus temporibus qui esse est et. Ducimus velit nostrum qui perferendis odit harum quo. Similique qui veritatis molestias architecto modi soluta blanditiis. Quia ipsum odit quos numquam et velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 588, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 588, - "key": "qdgietopnkkwzw1inmqjkfocrccw3ad5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 589, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0588", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.44", - "balance": "25.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 604, - "quantity": 4, - "cost": 6.36, - "product_key": "et", - "notes": "Eveniet repudiandae optio et iste repellendus. Sunt accusamus sed sed rem voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 589, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 589, - "key": "nripbr0fix4gigkkfswhtnxhznku406t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 590, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0589", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-11", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.17", - "balance": "10.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 605, - "quantity": 9, - "cost": 1.13, - "product_key": "eaque", - "notes": "Consequatur mollitia delectus omnis rem. Sit quibusdam rem molestias et laborum qui mollitia qui. Amet voluptas molestiae eos tempora quibusdam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 590, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 590, - "key": "a9ryn3ba1os1kafmdkwxlkgon9dr48ye", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 591, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0590", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.40", - "balance": "9.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 606, - "quantity": 1, - "cost": 9.4, - "product_key": "autem", - "notes": "Incidunt id quia voluptas architecto aut ullam. Officia perspiciatis nesciunt numquam aut eos aut animi. Excepturi quasi veritatis consequatur omnis. Fuga deleniti ea totam est et voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 591, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 591, - "key": "qqkyxrabvztbidwjvjnjuja0sqvn1ik8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 592, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0591", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-20", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.79", - "balance": "20.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 607, - "quantity": 3, - "cost": 6.93, - "product_key": "qui", - "notes": "Fugit totam velit dolor temporibus quis et. Eos iste vitae voluptatem nihil voluptatem animi. Velit quos quibusdam magnam. Modi dolor enim harum nihil quibusdam quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 592, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 592, - "key": "ehrn6mpx73axjmginhf8xfflhadoubq1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 593, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0592", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2020-04-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.80", - "balance": "15.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 608, - "quantity": 4, - "cost": 3.95, - "product_key": "ut", - "notes": "Sed dolor repellat officiis dolores ab earum officiis voluptatem. Sint laborum ipsa molestiae distinctio est. Delectus fuga vero quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 593, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 593, - "key": "7kxmgo7m7bd8izgiwzzybsfchih2whyn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 594, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0593", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.41", - "balance": "22.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 609, - "quantity": 3, - "cost": 7.47, - "product_key": "nobis", - "notes": "Accusantium quibusdam dicta enim quam et. Voluptatem debitis molestiae maxime eveniet. Adipisci corporis quis exercitationem quisquam. Soluta nam non iusto doloremque quaerat harum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 594, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 594, - "key": "zhpwd1zypuugdfhmhd6vxxj9hlhuii1q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 595, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0594", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": null, - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.94", - "balance": "17.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 610, - "quantity": 2, - "cost": 8.97, - "product_key": "a", - "notes": "Blanditiis numquam et fugit et dolore commodi. Eum repellat iusto a rerum blanditiis doloremque sequi doloribus. Rerum qui repellendus mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 595, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 595, - "key": "aksaw6m1wyrbxrytscsaxh74vbqrb5ey", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 596, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0595", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-11", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.30", - "balance": "4.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 611, - "quantity": 2, - "cost": 2.15, - "product_key": "nemo", - "notes": "Minus amet dolores praesentium. Id possimus porro architecto voluptas. Explicabo labore cum quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 596, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 596, - "key": "ilweaqe7okdbzymvixxequlafk7pax4q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 597, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0596", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.65", - "balance": "20.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 612, - "quantity": 7, - "cost": 2.95, - "product_key": "quia", - "notes": "Voluptatum unde est id amet. Dolorem non rem possimus praesentium odit odit. Voluptas laudantium incidunt neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 597, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 597, - "key": "5ebnmjalv5uy2ehwypj2ftyekgwmlrfb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 598, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0597", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-18", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.39", - "balance": "8.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 613, - "quantity": 1, - "cost": 8.39, - "product_key": "minima", - "notes": "Maiores nihil nobis sapiente ipsa iusto qui. Cum ullam architecto est et. Et est qui ut recusandae ut sed fuga dolore. Odio omnis dolor et magnam error non voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 598, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 598, - "key": "heunavpw3cabkgplnuqn1cpcyxgltzhp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 599, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0598", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-03", - "last_sent_date": null, - "due_date": "2019-12-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.40", - "balance": "42.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 614, + "id": 10374, "quantity": 10, - "cost": 4.24, - "product_key": "ut", - "notes": "Voluptatum omnis illum fuga quaerat nihil labore. Qui ab dolor ducimus excepturi iusto. Aut molestiae est et numquam sit similique.", + "cost": 6.97, + "product_key": "est", + "notes": "Architecto ipsam quia ratione. Unde aut et a perferendis. Nisi et repellendus qui officiis laboriosam velit necessitatibus.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:41.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -126748,50 +6391,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 599, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 599, - "key": "k1vlnf61b0hpt0ebotpcz73idhddjsjw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 600, - "client_id": 15, + "id": 10375, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0599", + "number": "0018", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-23", + "date": "2020-04-23", "last_sent_date": null, - "due_date": "2020-01-12", + "due_date": "2020-08-10", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -126800,22 +6422,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "39.40", - "balance": "39.40", - "partial": null, + "amount": "4.36", + "balance": "2.32", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 615, - "quantity": 10, - "cost": 3.94, - "product_key": "dolorum", - "notes": "Inventore rerum quam consequatur est beatae accusamus. Repellendus natus nihil officiis minima nobis quia fuga. Ducimus ullam sit praesentium sequi.", + "id": 10375, + "quantity": 4, + "cost": 1.09, + "product_key": "possimus", + "notes": "Et provident accusamus ex et non. Ut ullam et libero. Magnam laborum rem modi rerum nemo quasi at sequi.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:41.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -126824,126 +6450,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 600, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 600, - "key": "xbm4rai2ugp2r7w1itbrgqheuubowhze", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 601, - "client_id": 15, + "id": 10376, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0600", + "number": "0019", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-09", - "last_sent_date": null, - "due_date": "2020-02-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.59", - "balance": "4.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 616, - "quantity": 1, - "cost": 4.59, - "product_key": "nemo", - "notes": "Rem similique ratione est. Laboriosam veritatis sint eius ut commodi earum quo. Et ducimus modi quis expedita quia et placeat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 601, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 601, - "key": "jpjaocyvkezdnviceboxefkbsrqxvnxx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 602, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0601", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", + "date": "2020-03-23", "last_sent_date": null, "due_date": "2020-06-08", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -126952,22 +6481,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "71.91", - "balance": "71.91", - "partial": null, + "amount": "65.97", + "balance": "50.66", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 617, + "id": 10376, "quantity": 9, - "cost": 7.99, - "product_key": "nemo", - "notes": "Adipisci libero recusandae quo. Et vel quia ut nemo. Ipsa vitae veniam cum dolorum aut sit sequi.", + "cost": 7.33, + "product_key": "ipsam", + "notes": "Tempore voluptatem aut eius sit ut. Nemo aliquam est rerum adipisci ab repudiandae repellat.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:41.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -126976,50 +6509,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 602, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 602, - "key": "qzeauobrohikxlvwcwwbetsr90ozaeln", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 603, - "client_id": 15, + "id": 10377, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0602", + "number": "0020", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-04-08", + "date": "2020-06-02", "last_sent_date": null, - "due_date": "2020-03-22", + "due_date": "2020-07-06", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -127028,98 +6540,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "4.29", - "balance": "4.29", - "partial": null, + "amount": "69.58", + "balance": "53.42", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 618, - "quantity": 1, - "cost": 4.29, - "product_key": "fugit", - "notes": "Rerum expedita rem id laborum omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 603, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 603, - "key": "atve2gfnnvf0wzo8iqolejchk7qo5afi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 604, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0603", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.31", - "balance": "30.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 619, + "id": 10377, "quantity": 7, - "cost": 4.33, - "product_key": "sunt", - "notes": "Excepturi sapiente eos illum vel quia odio aperiam. Reprehenderit et eos eum ipsum. Rem tempore facilis rerum quos nesciunt. Explicabo culpa voluptatem alias vel. Qui aut veritatis corrupti cum. Consequatur corrupti quia facilis delectus.", + "cost": 9.94, + "product_key": "et", + "notes": "Aut mollitia accusantium deserunt dolor maiores nam facere consequatur. Ab unde vero saepe sed debitis quisquam autem. Ut omnis dolorem aspernatur quasi sapiente quas. Et velit amet iure assumenda.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:41.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -127128,50 +6568,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 604, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 604, - "key": "ovf0wrofshkcnhvaq5h6fdcyrhc63slr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 605, - "client_id": 15, + "id": 10398, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0604", + "number": "0041", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-06-05", + "date": "2020-07-05", "last_sent_date": null, - "due_date": "2019-12-07", + "due_date": "2020-06-03", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -127180,22 +6599,203 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "21.96", - "balance": "21.96", - "partial": null, + "amount": "33.85", + "balance": "32.21", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 620, + "id": 10398, + "quantity": 5, + "cost": 6.77, + "product_key": "consequatur", + "notes": "Hic autem quibusdam qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:18.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10399, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0042", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-17", + "last_sent_date": null, + "due_date": "2020-06-15", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "40.08", + "balance": "9.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10399, + "quantity": 8, + "cost": 5.01, + "product_key": "minima", + "notes": "Aut minima iure dolore est nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:18.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10400, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0043", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-17", + "last_sent_date": null, + "due_date": "2020-04-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.17", + "balance": "6.96", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10400, + "quantity": 3, + "cost": 8.39, + "product_key": "facilis", + "notes": "Eos omnis et totam vel. Suscipit aut est asperiores pariatur. Eveniet aut consequuntur velit sint veritatis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:18.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10401, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0044", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-27", + "last_sent_date": null, + "due_date": "2020-07-28", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.76", + "balance": "6.39", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10401, "quantity": 6, - "cost": 3.66, + "cost": 2.46, "product_key": "qui", - "notes": "Dolores eum quia eos dicta id. Inventore ullam velit fugit iste. Sed est facilis voluptates. Ad aut officiis cumque eligendi adipisci est blanditiis.", + "notes": "Nulla qui repellat esse ut dolore veniam. A et amet eligendi dolorem animi et eos.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:41.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -127204,50 +6804,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 605, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 605, - "key": "8ld9setibfa9vuyclyidtl2ag1lppugy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 606, - "client_id": 15, + "id": 10402, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0605", + "number": "0045", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-06-20", + "date": "2020-07-01", "last_sent_date": null, - "due_date": "2020-03-14", + "due_date": "2020-04-08", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -127256,326 +6835,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "9.66", - "balance": "9.66", - "partial": null, + "amount": "40.32", + "balance": "22.67", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 621, - "quantity": 7, - "cost": 1.38, - "product_key": "repudiandae", - "notes": "Veritatis eius quia qui unde. Fugiat officia magni eum et eum nihil ea. Ut ea porro suscipit omnis laborum. Eaque similique et earum reiciendis ex quis ad. Velit natus ut sunt recusandae. Magnam et modi qui ullam magni. Sed aut ut nisi est dolorem aut at.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 606, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 606, - "key": "jq8ojn53b6l8oar3ymam4zete9kroxpu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 607, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0606", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.63", - "balance": "2.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 622, - "quantity": 1, - "cost": 2.63, - "product_key": "nihil", - "notes": "Autem in sit deleniti ut quis ipsa quae. Consequatur alias voluptas quos est. Accusantium dolor animi qui sint nam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 607, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 607, - "key": "shi3jgj3shfjo3s1f35ypnfhzkwoz73z", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 608, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0607", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2020-01-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.65", - "balance": "19.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 623, - "quantity": 3, - "cost": 6.55, - "product_key": "sequi", - "notes": "Aut et repudiandae dicta sint maxime aut reiciendis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 608, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 608, - "key": "ofjplmcqzd2ek9izrvivi6rcvf0cxjn1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 609, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0608", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.11", - "balance": "52.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 624, - "quantity": 9, - "cost": 5.79, - "product_key": "dolorem", - "notes": "Voluptate magni impedit ab incidunt unde fuga et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 609, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 609, - "key": "dz0dou1soteea0z3yvuyq4wkr7hfpcxt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 610, - "client_id": 15, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0609", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.80", - "balance": "34.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 625, + "id": 10402, "quantity": 8, - "cost": 4.35, - "product_key": "et", - "notes": "Ducimus nisi rerum accusamus et aut officia deleniti. Voluptatem voluptatem voluptas consequatur aliquam harum. At et tempora vero possimus qui nihil alias.", + "cost": 5.04, + "product_key": "eveniet", + "notes": "Quis repellat sunt qui tempora dolorem sequi. Sequi tenetur veritatis optio corporis. Ut possimus quis ea.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:41.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -127584,50 +6863,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 610, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 610, - "key": "uhvqvb7ehzqgrwayyauwcrp521plfbnp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 611, - "client_id": 15, + "id": 10403, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0610", + "number": "0046", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-05-30", + "date": "2020-07-25", "last_sent_date": null, - "due_date": "2020-02-28", + "due_date": "2020-05-24", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -127636,250 +6894,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "37.44", - "balance": "37.44", - "partial": null, + "amount": "49.14", + "balance": "48.76", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 626, - "quantity": 8, - "cost": 4.68, - "product_key": "quidem", - "notes": "Unde qui enim consectetur officiis quod. Facilis similique quas assumenda. Nam ducimus doloremque dolorum animi. Nemo rem quis et vel. Aut molestiae est voluptas et sed. Enim dolor rem necessitatibus est. Est exercitationem alias reprehenderit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:41.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 611, - "company_id": 1, - "user_id": 1, - "client_contact_id": 15, - "quote_id": 611, - "key": "o8tigbdazfu9qrlwtzrwbbfqgtw6u6dd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:41", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 712, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0711", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.22", - "balance": "6.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 727, - "quantity": 1, - "cost": 6.22, - "product_key": "iste", - "notes": "Fugit quod maiores ullam non. Quae a voluptatem est est porro maiores. Iusto odio saepe quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 712, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 712, - "key": "ezttw7r7cjgujnt8jwhglchtndaxwh0g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 713, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0712", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2020-04-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.85", - "balance": "29.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 728, - "quantity": 5, - "cost": 5.97, - "product_key": "illum", - "notes": "Accusantium in sed sed qui ullam perferendis. Sed et nam expedita veritatis voluptatem doloribus eum molestiae. Repellat cumque aliquid veniam qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 713, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 713, - "key": "4jjm1uuo5penwocl2h8gzh6cbrcqdddj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 714, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0713", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.17", - "balance": "10.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 729, + "id": 10403, "quantity": 9, - "cost": 1.13, - "product_key": "et", - "notes": "Incidunt natus quae error dolorem et officia. Aut quis magnam sit est.", + "cost": 5.46, + "product_key": "rem", + "notes": "Nobis fugiat natus esse voluptatem iste natus. Ea ducimus at inventore officia nulla repudiandae quasi. Accusantium et et quis non quam.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:46.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -127888,1114 +6922,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 714, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 714, - "key": "w18ani72mzeux6xrtjelnbzqwcnwcvhc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 715, - "client_id": 16, + "id": 10404, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0714", + "number": "0047", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-05-16", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.64", - "balance": "53.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 730, - "quantity": 9, - "cost": 5.96, - "product_key": "id", - "notes": "Occaecati aut reiciendis et nobis et debitis. Quae expedita quae quis laborum qui ab necessitatibus. Dolores cupiditate in autem ratione est et inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 715, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 715, - "key": "n7cfubxr9bing88pbqvke3fdy9nnxnoe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 716, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0715", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.72", - "balance": "9.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 731, - "quantity": 6, - "cost": 1.62, - "product_key": "dignissimos", - "notes": "Assumenda est ex nihil quis. Molestiae sed enim rem quos. Ut vel delectus dignissimos quia beatae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 716, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 716, - "key": "d5dzzvv9t9zezedkqgu8po9knmv3exs9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 717, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0716", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-12", - "last_sent_date": null, - "due_date": "2020-03-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.40", - "balance": "41.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 732, - "quantity": 9, - "cost": 4.6, - "product_key": "libero", - "notes": "Vel sunt quod voluptas. Eum magni aliquid sit harum occaecati. Ex tempore possimus est blanditiis quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 717, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 717, - "key": "aebuphilv5whx5jigboa1jwxamrhge09", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 718, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0717", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2020-01-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.40", - "balance": "10.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 733, - "quantity": 5, - "cost": 2.08, - "product_key": "id", - "notes": "Non est aut perferendis nemo architecto illo. Cumque eos architecto eaque. Inventore dolores quos nemo qui nam autem consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 718, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 718, - "key": "0lcwezklz7bfvlkmni7ziaiw28dk18nq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 719, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0718", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.30", - "balance": "9.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 734, - "quantity": 1, - "cost": 9.3, - "product_key": "ipsum", - "notes": "Itaque dolor dolore qui et facere qui quis. Debitis exercitationem recusandae cumque autem reiciendis excepturi. Molestiae harum inventore neque unde vero. Aspernatur ratione non molestiae deserunt voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 719, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 719, - "key": "riyowpnyvcbdyjgejspkldye3dz2zy99", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 720, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0719", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.46", - "balance": "33.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 735, - "quantity": 7, - "cost": 4.78, - "product_key": "deserunt", - "notes": "Accusantium eius quasi cumque. Est porro qui delectus. Dolore sequi eos laboriosam in deserunt ut. Nihil totam et molestiae id officia et. Voluptas culpa et illo sint repellat eos. Eligendi dolorum officia ipsam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 720, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 720, - "key": "o1ioj8d39zza4qqqeeynuyk9ip5e7jde", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 721, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0720", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2020-04-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.16", - "balance": "66.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 736, - "quantity": 8, - "cost": 8.27, - "product_key": "magnam", - "notes": "Atque ad perferendis consequuntur repellat quia omnis. Voluptas ab et et est ut ipsam et quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 721, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 721, - "key": "opbkebojudkhweqtx9svgapj9n9nmqer", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 722, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0721", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.65", - "balance": "7.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 737, - "quantity": 3, - "cost": 2.55, - "product_key": "est", - "notes": "Maiores nam ea ut. Eligendi consequuntur eveniet et quidem et. Atque excepturi nihil itaque quibusdam. Ut voluptatem similique enim odit eligendi officia. Delectus occaecati libero non quaerat maxime. Similique tempora qui quia voluptas minima quia. Doloribus hic in nulla molestias et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 722, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 722, - "key": "pinuknuk32lz7wtmuuc1obqkmdrpi7o2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 723, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0722", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.84", - "balance": "53.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 738, - "quantity": 8, - "cost": 6.73, - "product_key": "laudantium", - "notes": "Ex illum ipsa nesciunt delectus rem deserunt. Suscipit earum enim aut est. Ut tempore omnis praesentium repudiandae assumenda quis nisi. Odit et facilis consectetur deserunt quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 723, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 723, - "key": "dveznk4cekwfw69bzbnldeh333kjipwb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 724, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0723", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.50", - "balance": "70.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 739, - "quantity": 10, - "cost": 7.05, - "product_key": "vitae", - "notes": "Qui qui harum cupiditate voluptas adipisci placeat maxime.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 724, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 724, - "key": "9qu9wq5v37vqvjwmbcrxycdomjpgyvg3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 725, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0724", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.10", - "balance": "70.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 740, - "quantity": 10, - "cost": 7.01, - "product_key": "atque", - "notes": "Voluptatibus id voluptate tenetur labore repellat aut voluptate. Velit aperiam rem praesentium qui. Exercitationem sint eum aperiam ea quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 725, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 725, - "key": "5em6qhnwrvnbv6ulcnqnm874mtv3idb7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 726, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0725", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-10", - "last_sent_date": null, - "due_date": "2020-04-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.96", - "balance": "13.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 741, - "quantity": 2, - "cost": 6.98, - "product_key": "veritatis", - "notes": "Soluta et sapiente accusantium ullam. Sequi ut quo quo maiores numquam dolorum. Assumenda corporis voluptates nobis veritatis. Libero quo at dolores ratione dolorum aperiam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 726, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 726, - "key": "nrix7cgum2qqyvqkm9j13r6u8ehxmxdo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 727, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0726", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "72.40", - "balance": "72.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 742, - "quantity": 10, - "cost": 7.24, - "product_key": "provident", - "notes": "Ea saepe quasi cum rerum veniam. Et sequi rerum consequatur. Accusantium est maiores ut veniam minus sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 727, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 727, - "key": "3fdc1fcxirnni72woenvxlb4tdeij3s0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 728, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0727", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.72", - "balance": "33.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 743, - "quantity": 6, - "cost": 5.62, - "product_key": "voluptas", - "notes": "Ut officia sapiente autem ad rerum est quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 728, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 728, - "key": "cyay4creeswa6fejjfcbagw4yydf9ohp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 729, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0728", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", + "date": "2020-10-07", "last_sent_date": null, "due_date": "2020-05-25", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -129004,250 +6953,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "7.25", - "balance": "7.25", - "partial": null, + "amount": "65.70", + "balance": "25.14", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 744, - "quantity": 1, - "cost": 7.25, - "product_key": "consequuntur", - "notes": "Deleniti quisquam enim distinctio voluptatem. Rerum eius ullam praesentium eveniet. Doloribus fugiat vel repellat ipsa. Provident facere qui facilis aut blanditiis ut nihil. Nemo dolor impedit et ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 729, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 729, - "key": "0vgifr1fdcti5hlvhbuil1mbhclrb3my", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 730, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0729", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-28", - "last_sent_date": null, - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.00", - "balance": "18.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 745, - "quantity": 8, - "cost": 2.25, - "product_key": "error", - "notes": "Aliquam tempora quae deserunt placeat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 730, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 730, - "key": "cjdzhkidexfcrhmkop9eg5ziz9s3k7vs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 731, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0730", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.20", - "balance": "19.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 746, - "quantity": 2, - "cost": 9.6, - "product_key": "qui", - "notes": "Quidem accusantium natus odio ea. Modi provident sapiente est inventore odio nulla architecto. Dolores non iste ut harum voluptatibus dignissimos quam ut. Possimus voluptatem ab non assumenda. Et tempore voluptas nihil eaque sit dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 731, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 731, - "key": "juvewd80w6kvj8ovazauav1hjtdto9hu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 732, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0731", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-20", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.40", - "balance": "33.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 747, + "id": 10404, "quantity": 10, - "cost": 3.34, - "product_key": "incidunt", - "notes": "Dolorum pariatur ut nostrum perferendis repudiandae cupiditate est ex. Dolores est distinctio minus ut. Non a voluptate mollitia rerum sit.", + "cost": 6.57, + "product_key": "autem", + "notes": "Velit eligendi perferendis consequatur ut. Sunt nostrum fugiat ut aut nihil sunt iste. Harum ullam corrupti et nesciunt rem voluptas. Qui enim reprehenderit eos exercitationem quo.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:47.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -129256,50 +6981,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 732, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 732, - "key": "ovm24pfcweuocit2srgmvmpmvjhht6un", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 733, - "client_id": 16, + "id": 10405, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0732", + "number": "0048", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-06-07", + "date": "2020-10-02", "last_sent_date": null, - "due_date": "2020-05-02", + "due_date": "2020-07-04", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -129308,22 +7012,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "22.14", - "balance": "22.14", - "partial": null, + "amount": "6.00", + "balance": "2.38", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 748, - "quantity": 3, - "cost": 7.38, - "product_key": "nesciunt", - "notes": "Tempore ratione ut itaque in. Cumque ipsum ratione temporibus sunt quis et quibusdam. Sit ea fugit est velit suscipit. Id odit consequatur ut.", + "id": 10405, + "quantity": 5, + "cost": 1.2, + "product_key": "tenetur", + "notes": "Dicta quae excepturi quis beatae. Vero accusamus aliquid aut quis accusamus amet et. Et quia sunt est ipsam et deleniti sit velit.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:47.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -129332,50 +7040,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 733, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 733, - "key": "uxf4wlttrieoepwc3moanxscpvsakknq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 734, - "client_id": 16, + "id": 10406, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0733", + "number": "0049", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-03-04", + "date": "2020-09-01", "last_sent_date": null, - "due_date": "2020-04-21", + "due_date": "2020-09-25", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -129384,402 +7071,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "5.73", - "balance": "5.73", - "partial": null, + "amount": "13.60", + "balance": "9.84", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 749, - "quantity": 3, - "cost": 1.91, - "product_key": "deleniti", - "notes": "Inventore ea repudiandae et perspiciatis quisquam rerum cupiditate rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 734, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 734, - "key": "sjmhs7khz52mnwbdoulilcunrininaay", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 735, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0734", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.92", - "balance": "13.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 750, - "quantity": 8, - "cost": 1.74, - "product_key": "sint", - "notes": "Sed sit assumenda nesciunt dolor. Corrupti quia dolore cumque soluta molestiae sed. Doloremque qui sed nostrum hic. Nostrum nihil aliquam dicta perferendis. Aliquam cumque dolor ut pariatur. Velit quia aperiam molestias laborum. Sed sit optio nihil quia nostrum iure ipsum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 735, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 735, - "key": "5nc6xlkg1mum0tc43gbcp0nihouietr9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 736, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0735", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-01-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.44", - "balance": "5.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 751, - "quantity": 2, - "cost": 2.72, - "product_key": "quis", - "notes": "Maxime quidem beatae commodi fuga. Quibusdam magnam iste et voluptas illum ipsum ab. Enim quia vitae harum quia fuga. Odit numquam vitae molestiae. Omnis in animi nisi a aut dolore velit quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 736, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 736, - "key": "ivy12ccswpxpou1pkljxaximky82ixd3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 737, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0736", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.50", - "balance": "23.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 752, - "quantity": 10, - "cost": 2.35, - "product_key": "natus", - "notes": "Facere accusamus quas minima voluptatum laboriosam magni quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 737, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 737, - "key": "2txpjw0vim4cnyxyvnbjqtodh5zonj6f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 738, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0737", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.90", - "balance": "22.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 753, - "quantity": 10, - "cost": 2.29, - "product_key": "vitae", - "notes": "Et accusamus sequi sit dolorem quo eius exercitationem et. Ea et occaecati repellendus aut et est consequatur. Adipisci ullam ut voluptatem unde culpa molestias soluta. Aliquam sed culpa provident quaerat nihil hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 738, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 738, - "key": "zvs899fn2683a04uskzjzr9dnjtq4mru", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 739, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0738", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.12", - "balance": "24.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 754, + "id": 10406, "quantity": 4, - "cost": 6.03, - "product_key": "sint", - "notes": "Mollitia ab in ut dignissimos officia soluta eligendi enim. Aliquam dolorum impedit aut esse ad repellat. Nulla eum et ea dolor.", + "cost": 3.4, + "product_key": "dolores", + "notes": "Est eos quas id est quis delectus.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:47.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -129788,50 +7099,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 739, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 739, - "key": "gmsptwtdeykbqd9m87ak7crghag5lvpf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 740, - "client_id": 16, + "id": 10407, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0739", + "number": "0050", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2019-12-11", + "date": "2020-09-30", "last_sent_date": null, - "due_date": "2020-04-17", + "due_date": "2020-09-02", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -129840,402 +7130,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "62.73", - "balance": "62.73", - "partial": null, + "amount": "59.40", + "balance": "24.26", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 755, - "quantity": 9, - "cost": 6.97, - "product_key": "in", - "notes": "Deleniti quas et quod quos. Eveniet aut cum est consequuntur. Et assumenda dolore nostrum sed omnis id fugiat. Facilis id illo et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 740, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 740, - "key": "ppugf6radm7rb5sossvyntoozo1fnb8w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 741, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0740", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.82", - "balance": "6.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 756, - "quantity": 1, - "cost": 6.82, - "product_key": "aut", - "notes": "Omnis voluptatem modi autem nihil aut voluptatibus excepturi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 741, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 741, - "key": "qd5fve6pnoccbrb9z1xnomuthscothra", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 742, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0741", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-28", - "last_sent_date": null, - "due_date": "2020-06-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.60", - "balance": "22.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 757, - "quantity": 4, - "cost": 5.65, - "product_key": "blanditiis", - "notes": "Dolorem dolorem tenetur voluptatem voluptates.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 742, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 742, - "key": "4n9t5b0bwexexjemvpcghvwggibudurf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 743, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0742", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-15", - "last_sent_date": null, - "due_date": "2020-01-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.08", - "balance": "44.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 758, - "quantity": 8, - "cost": 5.51, - "product_key": "saepe", - "notes": "Nihil dolorem sit itaque laborum in. Exercitationem hic ex repellendus veniam. Quisquam recusandae debitis vitae voluptate vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 743, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 743, - "key": "xyk5n71tgmmndbcahlj8sturzune0tgv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 744, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0743", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-08", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.30", - "balance": "63.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 759, - "quantity": 10, - "cost": 6.33, - "product_key": "omnis", - "notes": "Et consectetur aperiam quam cum amet ut. Aliquam minus suscipit ullam omnis itaque. Sed error fugit id eum et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 744, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 744, - "key": "fryocvazvng4ixbybb2mrqtzzdooauan", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 745, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0744", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-15", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.46", - "balance": "38.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 760, + "id": 10407, "quantity": 6, - "cost": 6.41, - "product_key": "doloremque", - "notes": "Harum commodi voluptatem velit et id voluptates ut voluptatum.", + "cost": 9.9, + "product_key": "id", + "notes": "Est suscipit culpa a exercitationem. Facilis illo illo quia ullam voluptatem quis. Provident in aut culpa dignissimos error consequatur dicta.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:47.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -130244,50 +7158,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 745, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 745, - "key": "x7fljouc1gmyl5lblfrkc1a9pvrw9m97", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 746, - "client_id": 16, + "id": 10408, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0745", + "number": "0051", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-04-25", + "date": "2020-08-07", "last_sent_date": null, - "due_date": "2020-01-27", + "due_date": "2020-06-30", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -130296,22 +7189,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "27.04", - "balance": "27.04", - "partial": null, + "amount": "9.33", + "balance": "0.88", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 761, - "quantity": 8, - "cost": 3.38, - "product_key": "doloremque", - "notes": "Voluptates qui animi consequatur quia ipsa ea. A voluptates sed et eius quas. Fugiat qui autem et odit sint.", + "id": 10408, + "quantity": 3, + "cost": 3.11, + "product_key": "quos", + "notes": "Ullam et at eos dolor aut repellendus. Dolores nobis deleniti est suscipit. Atque laboriosam amet cum qui ipsa. Maiores sit non velit ullam nostrum velit saepe expedita.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:47.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -130320,50 +7217,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 746, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 746, - "key": "deaida74zlgzgxwca5lelallv8jeyajr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 747, - "client_id": 16, + "id": 10409, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0746", + "number": "0052", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2019-12-19", + "date": "2020-06-12", "last_sent_date": null, - "due_date": "2020-03-10", + "due_date": "2020-07-03", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -130372,22 +7248,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "7.58", - "balance": "7.58", - "partial": null, + "amount": "14.56", + "balance": "6.84", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 762, - "quantity": 1, - "cost": 7.58, - "product_key": "aliquid", - "notes": "Recusandae illum quia adipisci iste expedita. Alias ducimus quo voluptas ipsam velit enim adipisci. Omnis sint et exercitationem incidunt. Aut omnis non voluptate ut.", + "id": 10409, + "quantity": 2, + "cost": 7.28, + "product_key": "dolorum", + "notes": "Voluptas consequatur possimus a adipisci rem mollitia.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:47.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -130396,202 +7276,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 747, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 747, - "key": "5hbzr1ksiqzl5dy9kbn4drtygzhuc0j3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 748, - "client_id": 16, + "id": 10410, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0747", + "number": "0053", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-01-12", + "date": "2020-03-27", "last_sent_date": null, - "due_date": "2020-06-17", + "due_date": "2020-09-26", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.67", - "balance": "68.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 763, - "quantity": 9, - "cost": 7.63, - "product_key": "qui", - "notes": "Reprehenderit hic autem temporibus adipisci error vel sit modi. Vitae maxime mollitia neque nulla. Laboriosam ipsam id tempore est error autem aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 748, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 748, - "key": "eapdby1w1aeq5pdpztgs3ondr0wufvr2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 749, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0748", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.21", - "balance": "8.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 764, - "quantity": 1, - "cost": 8.21, - "product_key": "nostrum", - "notes": "Aut velit consequatur atque est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 749, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 749, - "key": "lphegtcp6fzxl5k9synkoi9cpbmfrxqa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 750, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0749", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-26", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -130601,21 +7308,25 @@ "custom_value2": "0.00", "next_send_date": null, "amount": "14.16", - "balance": "14.16", - "partial": null, + "balance": "9.75", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 765, + "id": 10410, "quantity": 2, "cost": 7.08, - "product_key": "quaerat", - "notes": "Adipisci doloribus magnam a commodi iure rerum. Blanditiis nulla odit pariatur quia quo optio rerum suscipit. Qui deserunt tenetur tempore enim illo perferendis nulla.", + "product_key": "tempore", + "notes": "Doloremque et tempore et a aut quia sed. Maiores quis et vitae eum soluta amet mollitia. Magni expedita voluptatem totam consequuntur eveniet ducimus. Rerum quia quam facilis id.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:47.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -130624,50 +7335,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 750, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 750, - "key": "frgayea0zc9ojexi5trzkelposuwn1yi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 751, - "client_id": 16, + "id": 10411, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0750", + "number": "0054", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-01-28", + "date": "2020-08-30", "last_sent_date": null, - "due_date": "2020-03-03", + "due_date": "2020-09-04", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -130676,630 +7366,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "60.13", - "balance": "60.13", - "partial": null, + "amount": "14.36", + "balance": "0.52", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 766, - "quantity": 7, - "cost": 8.59, - "product_key": "sint", - "notes": "Quos mollitia sed atque accusantium error illum architecto. Doloribus eaque sequi perferendis a placeat nobis expedita. Quaerat dolorem officia delectus in explicabo et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 751, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 751, - "key": "tv9bgvfnyjfdkugcvrthfx5rd1r0rjlo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 752, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0751", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.72", - "balance": "3.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 767, - "quantity": 3, - "cost": 1.24, - "product_key": "assumenda", - "notes": "Modi eos quia voluptas et. Facilis blanditiis quis nihil deleniti. Nihil cum et minima.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 752, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 752, - "key": "8hdrdjebikirhjsjlgwfyovawzssrv1g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 753, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0752", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-06-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.61", - "balance": "1.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 768, - "quantity": 1, - "cost": 1.61, - "product_key": "dolor", - "notes": "Eum quo laboriosam et sit tempora repudiandae. Esse sequi ut odit et molestiae. Facilis enim ullam at voluptatem. Molestiae ut at iusto a.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 753, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 753, - "key": "uyewiihtx9dkueblvfhcmdk1udjyuhln", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 754, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0753", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.10", - "balance": "47.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 769, - "quantity": 6, - "cost": 7.85, - "product_key": "aut", - "notes": "Voluptatibus accusamus magnam numquam debitis sequi saepe.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 754, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 754, - "key": "ctbrxmtuqblcn07kd5rfsl4lijnlgh7f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 755, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0754", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.33", - "balance": "66.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 770, - "quantity": 9, - "cost": 7.37, - "product_key": "nam", - "notes": "Reiciendis officiis qui consequatur libero distinctio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 755, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 755, - "key": "biqpgzhgwxtcgxmnzcx6kobaxrcxewnt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 756, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0755", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-10", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.46", - "balance": "26.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 771, - "quantity": 7, - "cost": 3.78, - "product_key": "non", - "notes": "Optio expedita nesciunt similique quia et esse sequi distinctio. Sequi accusantium et sit nostrum aut voluptatem reprehenderit. Rerum cumque natus deserunt eveniet quisquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 756, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 756, - "key": "net9ebigm2hexbiy3ajabboydroioqbr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 757, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0756", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-03-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.24", - "balance": "6.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 772, - "quantity": 4, - "cost": 1.56, - "product_key": "magni", - "notes": "Magnam hic aliquam animi et. Aliquam aliquam ducimus repellendus commodi repudiandae ratione nemo. Voluptatem est excepturi adipisci repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 757, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 757, - "key": "bnmjct0osygalehtcvv74nqvi6lu0qd4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 758, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0757", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.19", - "balance": "4.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 773, - "quantity": 1, - "cost": 4.19, - "product_key": "suscipit", - "notes": "Fugit quam et aut quo molestiae cupiditate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 758, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 758, - "key": "7t4kenzzskvdkprbttunhw6nbco11wvj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 759, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0758", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-05-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.20", - "balance": "9.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 774, + "id": 10411, "quantity": 2, - "cost": 4.6, - "product_key": "ea", - "notes": "Consequuntur assumenda quaerat dignissimos recusandae est tempora non maiores. Maiores in assumenda fugiat occaecati aliquid voluptas molestiae cumque.", + "cost": 7.18, + "product_key": "atque", + "notes": "Maiores labore eum quis officia.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:47.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -131308,50 +7394,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 759, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 759, - "key": "yycp9qpeqeoaua3khpmbqcpyd2crykwd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 760, - "client_id": 16, + "id": 10412, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0759", + "number": "0055", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-06-17", + "date": "2020-07-28", "last_sent_date": null, - "due_date": "2020-04-04", + "due_date": "2020-07-15", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -131360,22 +7425,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "46.06", - "balance": "46.06", - "partial": null, + "amount": "18.55", + "balance": "1.14", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 775, + "id": 10412, "quantity": 7, - "cost": 6.58, - "product_key": "adipisci", - "notes": "Sunt tempore veritatis hic et culpa rerum. Libero delectus eos nemo provident velit dolorem doloribus. Sit eius deleniti explicabo necessitatibus aut.", + "cost": 2.65, + "product_key": "amet", + "notes": "Qui numquam repellendus repellendus numquam aliquam minus eum. Molestiae ipsa ut voluptas omnis.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:47.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -131384,810 +7453,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 760, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 760, - "key": "qq6ppzg7y9fdq3xnx0bfo2e6o09gnyz5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 761, - "client_id": 16, + "id": 10413, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0760", + "number": "0056", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2019-12-15", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.66", - "balance": "17.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 776, - "quantity": 2, - "cost": 8.83, - "product_key": "ab", - "notes": "Aut quia et voluptas non voluptate. Laudantium molestiae ex quasi fugiat magni nemo ea officiis. Itaque rerum distinctio enim ipsum dolorum ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 761, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 761, - "key": "h08s6gidtjdqs24vtoqbqzlclglmdwi9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 762, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0761", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.64", - "balance": "8.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 777, - "quantity": 3, - "cost": 2.88, - "product_key": "sit", - "notes": "Qui eos maxime illum earum. Consequatur quisquam natus voluptatum rerum autem. Neque blanditiis ab dolores nisi consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 762, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 762, - "key": "rebvn3owlktsbbjzzwkqnoby8l3zl97a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 763, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0762", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2019-12-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.44", - "balance": "61.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 778, - "quantity": 8, - "cost": 7.68, - "product_key": "sit", - "notes": "Consectetur qui dolores blanditiis vel mollitia est. Et nostrum dolorum vel tempora ut beatae. Et laborum blanditiis nam molestiae harum dolore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 763, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 763, - "key": "nmkkt9e6k8hpq2vplal6yjz3dtzqvnkp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 764, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0763", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.14", - "balance": "2.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 779, - "quantity": 1, - "cost": 2.14, - "product_key": "blanditiis", - "notes": "Optio labore iusto voluptatem qui ut eos. Veritatis tempore explicabo ut reiciendis illo molestias iure et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 764, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 764, - "key": "wdkh0scvlafahhyup8o30nt43cfuqbhn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:47", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 765, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0764", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-10", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.84", - "balance": "36.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 780, - "quantity": 6, - "cost": 6.14, - "product_key": "unde", - "notes": "Sed fugiat repudiandae aut repellat et. Facere veritatis quasi voluptate itaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:47.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 765, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 765, - "key": "fncsfsa6fs3rxgubnj75qlnll75jpszx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 766, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0765", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.60", - "balance": "41.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 781, - "quantity": 5, - "cost": 8.32, - "product_key": "sit", - "notes": "Saepe accusantium magni dolorem debitis et laudantium voluptates. Qui cumque nihil et minus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 766, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 766, - "key": "xmuuuwppmddts7amecc2pifp8wnlznfr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 767, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0766", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2020-04-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.56", - "balance": "19.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 782, - "quantity": 4, - "cost": 4.89, - "product_key": "omnis", - "notes": "Alias necessitatibus facilis velit amet nihil. Rerum repellendus non et dolores voluptates molestias. Nam quisquam ut perferendis pariatur. Consequatur facilis corrupti dolor provident assumenda sed quae dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 767, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 767, - "key": "yvvi8deuj6dsc21ydft32elnjm8hlle7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 768, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0767", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.56", - "balance": "16.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 783, - "quantity": 8, - "cost": 2.07, - "product_key": "dignissimos", - "notes": "Distinctio et minus quas voluptas aliquid eum. Atque molestias est sapiente rerum. Voluptatum sit adipisci eligendi totam voluptatum quia est. Harum error atque voluptatem repellat consequuntur. Non veritatis autem corrupti est porro et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 768, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 768, - "key": "umxzjumjx6sdet1q7pauhgrl085r5dro", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 769, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0768", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-03-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.68", - "balance": "22.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 784, - "quantity": 4, - "cost": 5.67, - "product_key": "et", - "notes": "Modi dolor aut omnis qui. Consequatur ab dolores consequatur reprehenderit ipsa quo ut. Perspiciatis non aperiam nobis autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 769, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 769, - "key": "ofuqu2pvue0syrpnaryhygqby2e5dclc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 770, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0769", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-15", - "last_sent_date": null, - "due_date": "2020-01-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.96", - "balance": "30.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 785, - "quantity": 9, - "cost": 3.44, - "product_key": "quae", - "notes": "Quas consectetur quod qui animi et laboriosam et. Dolorem qui ipsa sed voluptatem voluptas occaecati. Aliquid et dignissimos aspernatur quae et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 770, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 770, - "key": "keyq9xjmamio8g1guddddn7n5jdijlwj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 771, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0770", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", + "date": "2020-08-15", "last_sent_date": null, "due_date": "2020-03-23", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -132196,22 +7484,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "7.91", - "balance": "7.91", - "partial": null, + "amount": "59.01", + "balance": "17.01", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 786, + "id": 10413, "quantity": 7, - "cost": 1.13, - "product_key": "nam", - "notes": "Consequatur velit et facilis praesentium illo culpa.", + "cost": 8.43, + "product_key": "sit", + "notes": "Esse animi enim soluta expedita. Illo dolorem quia hic in. Ipsum et perspiciatis in similique nulla aut.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -132220,50 +7512,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 771, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 771, - "key": "krf3phezinzdng55wotfiggmxobdzrce", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 772, - "client_id": 16, + "id": 10414, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0771", + "number": "0057", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-25", + "date": "2020-06-20", "last_sent_date": null, - "due_date": "2020-04-12", + "due_date": "2020-09-05", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -132272,22 +7543,144 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "24.65", - "balance": "24.65", - "partial": null, + "amount": "7.50", + "balance": "5.03", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 787, + "id": 10414, + "quantity": 6, + "cost": 1.25, + "product_key": "occaecati", + "notes": "Odit animi ducimus iste occaecati. Expedita dolore est beatae excepturi sunt. Cupiditate in qui non qui. Porro quam fugit mollitia est. Corporis maiores dicta omnis in aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:18.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10415, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0058", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-13", + "last_sent_date": null, + "due_date": "2020-09-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.29", + "balance": "20.57", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10415, + "quantity": 3, + "cost": 7.43, + "product_key": "nobis", + "notes": "Magni itaque quisquam numquam quia distinctio voluptatibus totam. Dolore odio minus saepe molestiae dolorem pariatur numquam. Qui quis sunt illum eaque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:18.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10416, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0059", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-28", + "last_sent_date": null, + "due_date": "2020-04-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "47.35", + "balance": "6.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10416, "quantity": 5, - "cost": 4.93, - "product_key": "et", - "notes": "Vero voluptate rerum est est perferendis voluptatem. Et aut ut quo itaque provident at mollitia voluptatibus.", + "cost": 9.47, + "product_key": "voluptas", + "notes": "Sit sunt dolores in non cupiditate. Possimus sint similique perspiciatis sit explicabo dolores.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -132296,50 +7689,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 772, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 772, - "key": "teqt4zegydvvid0p3q61vfywdjc6lhkn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 773, - "client_id": 16, + "id": 10417, + "client_id": 54, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0772", + "number": "0060", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-03-21", + "date": "2020-07-26", "last_sent_date": null, - "due_date": "2020-05-31", + "due_date": "2020-07-06", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -132348,326 +7720,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "16.20", - "balance": "16.20", - "partial": null, + "amount": "6.59", + "balance": "3.78", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 788, - "quantity": 9, - "cost": 1.8, - "product_key": "nam", - "notes": "Aut dicta nobis repellat perspiciatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 773, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 773, - "key": "ukododjn9uko6mmbs5ahncdm09ttacke", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 774, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0773", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-10", - "last_sent_date": null, - "due_date": "2020-05-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.44", - "balance": "6.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 789, - "quantity": 2, - "cost": 3.22, - "product_key": "quia", - "notes": "Odio velit quisquam voluptates quo. Qui temporibus sed nemo accusamus sed voluptate. Eius adipisci fuga tempora aut amet minima.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 774, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 774, - "key": "lf0shpdh5kcnzugn2flrtkynlk9vrb5u", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 775, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0774", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-04-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.27", - "balance": "27.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 790, - "quantity": 3, - "cost": 9.09, - "product_key": "illum", - "notes": "Velit qui expedita alias incidunt dolore velit. Expedita libero cupiditate occaecati ea veniam. Nemo et quas fugit delectus ut. Nesciunt reprehenderit sint quis laudantium quia et qui. Perspiciatis impedit similique sit est ut. Rerum voluptatibus aut aliquid quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 775, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 775, - "key": "ovltwcr1z9j87u5sipw1y6m8ux7egmzz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 776, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0775", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.90", - "balance": "11.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 791, - "quantity": 7, - "cost": 1.7, - "product_key": "nostrum", - "notes": "Qui minima quae nisi eos. Enim sit omnis qui esse. Commodi vero aliquid maxime rerum nam non fuga. Commodi debitis ex amet error aliquid magni voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 776, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 776, - "key": "ppjnqcxfrlurxoscsirlqx3fs15rhuim", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 777, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0776", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-07", - "last_sent_date": null, - "due_date": "2020-01-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.00", - "balance": "2.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 792, + "id": 10417, "quantity": 1, - "cost": 2, - "product_key": "officiis", - "notes": "Quam consectetur corporis rerum enim labore tempora dolorum dolorem. Ea molestiae eum itaque quidem sequi. Incidunt quaerat ipsa ut aut. Vero fugiat quae inventore nobis consectetur hic sit nihil.", + "cost": 6.59, + "product_key": "aut", + "notes": "Libero possimus autem consequatur excepturi quo facilis nulla. Consequatur id eum qui aut et minima iste vero. Repudiandae consequatur optio quia est quas.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -132676,50 +7748,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 777, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 777, - "key": "endubrrejfbfdivystdoqasiylpw4aun", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 778, - "client_id": 16, + "id": 10438, + "client_id": 55, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0777", + "number": "0081", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-26", + "date": "2020-07-17", "last_sent_date": null, - "due_date": "2020-04-15", + "due_date": "2020-07-18", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -132728,22 +7779,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "11.92", - "balance": "11.92", - "partial": null, + "amount": "8.18", + "balance": "0.12", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 793, + "id": 10438, "quantity": 2, - "cost": 5.96, - "product_key": "id", - "notes": "Tempora impedit quis asperiores dolores. Ipsum excepturi rerum ut nulla aliquam sapiente sed ea.", + "cost": 4.09, + "product_key": "nobis", + "notes": "Ut quos voluptatibus corrupti nam omnis suscipit. Dolor ut nesciunt id expedita quo. Quia ut enim magnam ullam harum.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -132752,50 +7807,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 778, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 778, - "key": "jc8salgrkpdj0hyzh585bwlmioe3hyym", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 779, - "client_id": 16, + "id": 10439, + "client_id": 55, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0778", + "number": "0082", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2019-12-12", + "date": "2020-06-22", "last_sent_date": null, - "due_date": "2020-02-08", + "due_date": "2020-08-30", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -132804,22 +7838,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "17.04", - "balance": "17.04", - "partial": null, + "amount": "46.40", + "balance": "41.77", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 794, - "quantity": 3, - "cost": 5.68, - "product_key": "voluptatibus", - "notes": "Non neque quo voluptatibus fuga explicabo odit voluptas. Qui sunt sint temporibus nesciunt. Ut fugiat et molestiae voluptates. Ut aliquam expedita consequuntur est.", + "id": 10439, + "quantity": 10, + "cost": 4.64, + "product_key": "et", + "notes": "Non molestiae blanditiis ducimus.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -132828,354 +7866,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 779, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 779, - "key": "qvlfn1t7jrrje0tmrtarntr4dgd6bn7z", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 780, - "client_id": 16, + "id": 10440, + "client_id": 55, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0779", + "number": "0083", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.41", - "balance": "10.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 795, - "quantity": 3, - "cost": 3.47, - "product_key": "rem", - "notes": "Ut cum velit consequatur vero iusto. Accusamus amet nulla voluptatem nulla reiciendis. Et suscipit qui nihil in et debitis. Nihil esse maiores qui numquam repellat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 780, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 780, - "key": "p4oojc8lszf5yyq7eotjcpd6e9bjnmcn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 781, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0780", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-27", - "last_sent_date": null, - "due_date": "2020-06-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "56.42", - "balance": "56.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 796, - "quantity": 7, - "cost": 8.06, - "product_key": "qui", - "notes": "Labore distinctio ea eveniet alias sit incidunt eligendi. Hic sed perferendis occaecati sint at expedita. Aut eum aut est aliquid. Ipsam est iure quisquam earum corrupti doloremque labore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 781, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 781, - "key": "ywkvdvwqkq9aztaols88dvook42ydnf3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 782, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0781", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.76", - "balance": "11.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 797, - "quantity": 4, - "cost": 2.94, - "product_key": "pariatur", - "notes": "Dolorem rem neque reiciendis voluptates laudantium pariatur. Aut sapiente voluptas voluptas harum iusto quisquam. Modi quod molestias voluptas laudantium. Rerum rerum repellendus ut. Ullam laudantium eveniet consequatur exercitationem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 782, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 782, - "key": "9bjxtq7zcbjqgkgafxeensvxtqwqxcwj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 783, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0782", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.12", - "balance": "9.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 798, - "quantity": 4, - "cost": 2.28, - "product_key": "numquam", - "notes": "Nisi ad magnam ipsa dolorem. Voluptatum quis quia molestiae est quia. Officiis officiis et ut est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 783, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 783, - "key": "lpiwsjz5tmt8g6xwxxjk82grivo6uuf9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 784, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0783", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-31", + "date": "2020-08-10", "last_sent_date": null, "due_date": "2020-06-04", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -133184,22 +7897,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "74.88", - "balance": "74.88", - "partial": null, + "amount": "19.38", + "balance": "11.21", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 799, - "quantity": 8, - "cost": 9.36, - "product_key": "minima", - "notes": "Architecto necessitatibus mollitia et neque non enim.", + "id": 10440, + "quantity": 6, + "cost": 3.23, + "product_key": "enim", + "notes": "Deleniti hic dolores est earum id beatae in vitae. Repellat nam molestiae neque ab.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -133208,50 +7925,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 784, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 784, - "key": "dbxkohqpahijumekuifpdaiuqt7qfqr4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 785, - "client_id": 16, + "id": 10441, + "client_id": 55, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0784", + "number": "0084", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-03-29", + "date": "2020-09-18", "last_sent_date": null, - "due_date": "2020-04-28", + "due_date": "2020-05-10", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -133260,22 +7956,144 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "7.04", - "balance": "7.04", - "partial": null, + "amount": "17.70", + "balance": "2.49", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 800, + "id": 10441, + "quantity": 6, + "cost": 2.95, + "product_key": "ullam", + "notes": "Ipsa accusantium id occaecati. Similique aut sunt sapiente. Consequatur dignissimos optio unde laudantium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10442, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0085", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-23", + "last_sent_date": null, + "due_date": "2020-03-24", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "47.90", + "balance": "44.62", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10442, + "quantity": 10, + "cost": 4.79, + "product_key": "eos", + "notes": "Itaque a molestiae illo dolor labore. Dolor nostrum omnis quod rerum ratione temporibus non.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10443, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0086", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-26", + "last_sent_date": null, + "due_date": "2020-04-09", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.86", + "balance": "2.55", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10443, "quantity": 2, - "cost": 3.52, - "product_key": "et", - "notes": "Facilis nam sint delectus aut minus. Ut autem sit sed molestiae voluptatem quam. Repellendus voluptatem molestias voluptatem ea officia ut. Consequatur culpa libero ut in.", + "cost": 1.93, + "product_key": "enim", + "notes": "Blanditiis dolor aut cum reprehenderit. Accusamus ipsam iure sed ipsam in. Qui quia et et aut aspernatur molestiae occaecati tempora. Voluptatem est debitis non ipsam.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -133284,50 +8102,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 785, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 785, - "key": "akqblfim2lwinaemh65tqtgp1hqumz5h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 786, - "client_id": 16, + "id": 10444, + "client_id": 55, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0785", + "number": "0087", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-07", + "date": "2020-04-04", "last_sent_date": null, - "due_date": "2020-01-25", + "due_date": "2020-05-19", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -133336,22 +8133,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "40.72", - "balance": "40.72", - "partial": null, + "amount": "25.70", + "balance": "23.42", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 801, - "quantity": 8, - "cost": 5.09, - "product_key": "vel", - "notes": "Facilis debitis quo repudiandae alias sit. Consequatur laboriosam sed voluptates. Consequuntur sunt quae tempora voluptatem minus vel. Qui possimus voluptatem earum voluptas qui expedita.", + "id": 10444, + "quantity": 5, + "cost": 5.14, + "product_key": "cumque", + "notes": "Similique veritatis fugiat quis quam eligendi odio. Cumque et quia soluta iure voluptatem officiis. Iste ut perspiciatis placeat ipsam. Illum dolores enim nostrum ipsum quibusdam ipsum.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -133360,50 +8161,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 786, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 786, - "key": "jli3oupfggbi4zg0azex9wbwpwaijphy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 787, - "client_id": 16, + "id": 10445, + "client_id": 55, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0786", + "number": "0088", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-05-20", + "date": "2020-05-13", "last_sent_date": null, - "due_date": "2020-05-23", + "due_date": "2020-06-08", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -133412,22 +8192,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "77.20", - "balance": "77.20", - "partial": null, + "amount": "67.13", + "balance": "9.12", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 802, - "quantity": 8, - "cost": 9.65, - "product_key": "est", - "notes": "Molestiae vel et architecto beatae et molestiae qui. Qui at inventore molestias ea non. Repellat sed vitae aut possimus. Autem est eius repudiandae et est accusamus vitae aut. Error rerum labore sapiente velit dignissimos. Ut rerum et consequatur sed ullam quos nobis.", + "id": 10445, + "quantity": 7, + "cost": 9.59, + "product_key": "voluptatem", + "notes": "Et perspiciatis nihil ex aliquid. Est excepturi commodi error. Minima et veritatis dolore natus optio.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -133436,202 +8220,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 787, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 787, - "key": "1tdwzgbibxxt1q3cfriorq1shoq0a7lp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 788, - "client_id": 16, + "id": 10446, + "client_id": 55, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0787", + "number": "0089", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2019-12-12", + "date": "2020-09-25", "last_sent_date": null, - "due_date": "2019-12-16", + "due_date": "2020-07-08", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.54", - "balance": "18.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 803, - "quantity": 2, - "cost": 9.27, - "product_key": "ipsum", - "notes": "Enim consequatur nihil non voluptatem iusto maxime. Illum ut tenetur minus qui enim vero. Id voluptas repellat dolores ut vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 788, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 788, - "key": "vgoqh8d8r4wry26ztfbf1vpo3bzpbfsi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 789, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0788", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-06-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.68", - "balance": "39.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 804, - "quantity": 8, - "cost": 4.96, - "product_key": "ipsa", - "notes": "Inventore ea nihil quo reprehenderit numquam quae. Sed asperiores perferendis praesentium incidunt ea qui. Repellendus reprehenderit quae culpa ratione a aspernatur. Libero blanditiis vel vel eius eveniet sunt exercitationem. Sunt sed debitis ea eum facere omnis est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 789, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 789, - "key": "snkkfduddnhq7b8wtxxuk2tfbvezcoug", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 790, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0789", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-09", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -133641,21 +8252,25 @@ "custom_value2": "0.00", "next_send_date": null, "amount": "24.80", - "balance": "24.80", - "partial": null, + "balance": "5.36", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 805, - "quantity": 8, - "cost": 3.1, - "product_key": "ut", - "notes": "Odio dolor eos recusandae eos a. Consequatur quis occaecati eum eligendi. Sit autem quisquam omnis.", + "id": 10446, + "quantity": 10, + "cost": 2.48, + "product_key": "nesciunt", + "notes": "A ad dolorem quis non mollitia suscipit dolore. Harum sit qui est minima ut molestiae. Illo quo dolor aut ipsa quasi et. Eaque modi facilis rem neque. Rerum laboriosam aut id a.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -133664,50 +8279,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 790, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 790, - "key": "m2l4cbvfr0dutc8kij9f5fc43pugthc4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 791, - "client_id": 16, + "id": 10447, + "client_id": 55, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0790", + "number": "0090", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-05-18", + "date": "2020-07-19", "last_sent_date": null, - "due_date": "2020-05-22", + "due_date": "2020-05-08", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -133716,22 +8310,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "61.67", - "balance": "61.67", - "partial": null, + "amount": "38.78", + "balance": "14.71", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 806, + "id": 10447, "quantity": 7, - "cost": 8.81, - "product_key": "illo", - "notes": "Possimus natus voluptatum nobis praesentium commodi.", + "cost": 5.54, + "product_key": "voluptatem", + "notes": "Ratione laboriosam culpa ad et sed maiores et et. Ipsum eum a et accusantium in.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -133740,50 +8338,6932 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 791, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 791, - "key": "yfcz4z3seujecrarielaaogep8lvde9q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 792, - "client_id": 16, + "id": 10448, + "client_id": 55, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0791", + "number": "0091", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-12", + "date": "2020-09-20", + "last_sent_date": null, + "due_date": "2020-07-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.80", + "balance": "7.65", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10448, + "quantity": 5, + "cost": 2.56, + "product_key": "impedit", + "notes": "Dolore voluptas culpa ipsum enim beatae enim. Impedit ullam voluptas eum dolorem porro.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10449, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0092", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-01", + "last_sent_date": null, + "due_date": "2020-06-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.00", + "balance": "7.04", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10449, + "quantity": 2, + "cost": 6, + "product_key": "reiciendis", + "notes": "Ut cupiditate quisquam qui veniam non deserunt nobis. Ratione totam id cum facilis ipsa molestiae quia quia. Quae ipsum omnis ad et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10450, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0093", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-21", + "last_sent_date": null, + "due_date": "2020-06-15", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "58.00", + "balance": "18.77", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10450, + "quantity": 10, + "cost": 5.8, + "product_key": "omnis", + "notes": "Aliquam incidunt ullam modi ex illo totam. Porro quod omnis quia rerum quas. Commodi nam omnis quis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10451, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0094", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-28", + "last_sent_date": null, + "due_date": "2020-03-29", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.90", + "balance": "4.39", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10451, + "quantity": 2, + "cost": 5.95, + "product_key": "quis", + "notes": "Aut voluptas architecto esse quas. Ad laboriosam ea ut qui quam iure. Eum consequatur excepturi ex est eligendi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10452, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0095", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-26", + "last_sent_date": null, + "due_date": "2020-05-28", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "49.14", + "balance": "32.31", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10452, + "quantity": 9, + "cost": 5.46, + "product_key": "voluptatem", + "notes": "Est debitis quas dignissimos nam. Natus voluptatem et voluptas est esse dolore.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10453, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0096", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-25", + "last_sent_date": null, + "due_date": "2020-06-18", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "21.07", + "balance": "3.99", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10453, + "quantity": 7, + "cost": 3.01, + "product_key": "autem", + "notes": "Labore doloribus possimus delectus voluptates provident. Consequatur fugit placeat a alias libero. Sint nostrum fugiat exercitationem tempore.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10454, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0097", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-26", + "last_sent_date": null, + "due_date": "2020-08-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.42", + "balance": "11.74", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10454, + "quantity": 2, + "cost": 6.71, + "product_key": "ratione", + "notes": "Tempore aspernatur rem et officia et voluptatibus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10455, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0098", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-09", + "last_sent_date": null, + "due_date": "2020-04-13", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "65.36", + "balance": "61.93", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10455, + "quantity": 8, + "cost": 8.17, + "product_key": "a", + "notes": "Laboriosam minus molestiae qui aut omnis at est. Occaecati et quos odio id. Est similique porro tenetur alias aliquid reiciendis ut. Harum est numquam blanditiis repudiandae eos rerum vitae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10456, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0099", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-21", + "last_sent_date": null, + "due_date": "2020-04-19", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "54.36", + "balance": "19.38", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10456, + "quantity": 9, + "cost": 6.04, + "product_key": "voluptates", + "notes": "Dolor ut eveniet ullam quia ipsa sint aliquam. Doloremque ducimus vel modi adipisci in. Quod architecto quia velit architecto dolore.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10457, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0100", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-19", + "last_sent_date": null, + "due_date": "2020-04-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.32", + "balance": "14.76", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10457, + "quantity": 8, + "cost": 2.54, + "product_key": "ut", + "notes": "Dolorem aperiam voluptatibus labore dolores vero dolores neque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10478, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0121", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-28", + "last_sent_date": null, + "due_date": "2020-09-17", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "21.90", + "balance": "8.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10478, + "quantity": 10, + "cost": 2.19, + "product_key": "reiciendis", + "notes": "Ut voluptatibus eaque quia eum facere. Excepturi vel deserunt qui perspiciatis minus dolorem. Ab et saepe enim qui corrupti voluptatem. Voluptatem itaque autem est dignissimos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10479, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0122", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-19", + "last_sent_date": null, + "due_date": "2020-08-26", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.80", + "balance": "1.51", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10479, + "quantity": 4, + "cost": 4.45, + "product_key": "quasi", + "notes": "Cupiditate expedita hic et saepe aut. Aut laudantium in voluptas soluta.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10480, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0123", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-01", + "last_sent_date": null, + "due_date": "2020-04-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "46.89", + "balance": "11.96", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10480, + "quantity": 9, + "cost": 5.21, + "product_key": "deleniti", + "notes": "Et ut nihil vero. Quam odio voluptatem vero. Ullam quibusdam tempora aut pariatur et. Voluptatum magnam repudiandae praesentium qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10481, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0124", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-12", + "last_sent_date": null, + "due_date": "2020-04-14", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "65.52", + "balance": "41.28", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10481, + "quantity": 8, + "cost": 8.19, + "product_key": "similique", + "notes": "Et quod numquam enim aliquid. Molestiae necessitatibus et necessitatibus aut. A perspiciatis qui illum nihil omnis eum praesentium sed.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10482, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0125", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-06", + "last_sent_date": null, + "due_date": "2020-09-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "53.70", + "balance": "13.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10482, + "quantity": 10, + "cost": 5.37, + "product_key": "consequuntur", + "notes": "Eligendi laboriosam cupiditate illum velit libero consequatur. Aut harum modi eaque in labore labore. Ad quia est aut eos quis aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10483, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0126", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-13", + "last_sent_date": null, + "due_date": "2020-09-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.80", + "balance": "2.65", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10483, + "quantity": 5, + "cost": 2.76, + "product_key": "et", + "notes": "Ut veniam amet alias voluptatem quia fugiat impedit voluptatem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10484, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0127", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-17", + "last_sent_date": null, + "due_date": "2020-05-14", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.07", + "balance": "1.92", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10484, + "quantity": 3, + "cost": 7.69, + "product_key": "voluptatum", + "notes": "Corporis quaerat magni non unde.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10485, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0128", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-03", + "last_sent_date": null, + "due_date": "2020-04-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "41.02", + "balance": "10.57", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10485, + "quantity": 7, + "cost": 5.86, + "product_key": "architecto", + "notes": "Cumque vel adipisci ipsam quas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10486, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0129", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-20", + "last_sent_date": null, + "due_date": "2020-07-29", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "29.96", + "balance": "12.77", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10486, + "quantity": 4, + "cost": 7.49, + "product_key": "reiciendis", + "notes": "Non alias quod ullam. Qui et ut molestiae impedit dolor. Ab quia ea soluta illo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10487, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0130", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-19", + "last_sent_date": null, + "due_date": "2020-04-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.96", + "balance": "8.58", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10487, + "quantity": 8, + "cost": 2.37, + "product_key": "eum", + "notes": "Nihil quis odit explicabo velit eum. Nisi amet est distinctio eos omnis. Assumenda sunt aut sed. Nulla aliquid autem rem libero laboriosam. Sed commodi totam est voluptatem nemo beatae magni.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10488, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0131", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-07", + "last_sent_date": null, + "due_date": "2020-08-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.04", + "balance": "10.39", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10488, + "quantity": 6, + "cost": 2.34, + "product_key": "ut", + "notes": "Non qui id voluptas recusandae hic et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10489, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0132", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-10", + "last_sent_date": null, + "due_date": "2020-03-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.75", + "balance": "0.23", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10489, + "quantity": 5, + "cost": 1.75, + "product_key": "iure", + "notes": "Illum ea consectetur quos sapiente tempora.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10490, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0133", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-23", + "last_sent_date": null, + "due_date": "2020-10-06", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.04", + "balance": "4.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10490, + "quantity": 4, + "cost": 3.51, + "product_key": "vel", + "notes": "Sit dolor debitis dolores vel. Dolorem ut vel suscipit explicabo quos. Ut voluptates dolor qui explicabo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10491, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0134", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-29", + "last_sent_date": null, + "due_date": "2020-07-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.82", + "balance": "2.94", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10491, + "quantity": 1, + "cost": 3.82, + "product_key": "maiores", + "notes": "Aut officiis quo fugit suscipit non. Aut quasi accusamus accusantium a enim. Ut autem possimus possimus. Et necessitatibus dolorem fugiat necessitatibus neque magnam eos. Aut et sit earum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10492, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0135", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-06", + "last_sent_date": null, + "due_date": "2020-06-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "53.50", + "balance": "7.99", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10492, + "quantity": 10, + "cost": 5.35, + "product_key": "exercitationem", + "notes": "Magni laboriosam nam id et. Totam molestiae nisi unde quia nemo impedit. Accusantium et dolore iste eos iusto et omnis autem. Expedita fuga voluptas doloremque dicta quia. Aperiam eos quia et id exercitationem eaque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10493, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0136", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-09", + "last_sent_date": null, + "due_date": "2020-09-18", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.28", + "balance": "0.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10493, + "quantity": 1, + "cost": 7.28, + "product_key": "aut", + "notes": "Sit repellendus maxime dolorem omnis sit libero odit. Laboriosam molestias aut nobis quis. Nihil cum asperiores reiciendis occaecati dolores ea fuga nihil. Cum in aliquam earum eaque occaecati ratione.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10494, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0137", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-03", + "last_sent_date": null, + "due_date": "2020-07-30", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "46.60", + "balance": "42.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10494, + "quantity": 10, + "cost": 4.66, + "product_key": "nam", + "notes": "Quaerat aut voluptatem libero et. Beatae doloremque aut deleniti rerum nisi. Odit sit ratione quaerat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10495, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0138", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-28", + "last_sent_date": null, + "due_date": "2020-07-31", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "49.68", + "balance": "13.25", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10495, + "quantity": 9, + "cost": 5.52, + "product_key": "suscipit", + "notes": "Dolores quisquam voluptatem dolores. Cupiditate incidunt qui ipsa.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10496, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0139", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-05", + "last_sent_date": null, + "due_date": "2020-10-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "80.10", + "balance": "55.65", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10496, + "quantity": 9, + "cost": 8.9, + "product_key": "doloribus", + "notes": "Quae ab recusandae in rerum. Iusto voluptatem in iste qui corporis magni sit. Impedit perspiciatis dolor voluptas ea omnis aut. Voluptatem expedita libero dolor ut et aut. Dolore nihil est beatae. Cupiditate aut in necessitatibus sit ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10497, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0140", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-02", + "last_sent_date": null, + "due_date": "2020-07-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "21.60", + "balance": "17.63", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10497, + "quantity": 8, + "cost": 2.7, + "product_key": "tempore", + "notes": "Aliquam pariatur voluptatem perspiciatis omnis. Saepe culpa velit aperiam harum officia rerum. Voluptas ea explicabo fuga.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10518, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0161", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-13", + "last_sent_date": null, + "due_date": "2020-09-24", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "21.66", + "balance": "7.62", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10518, + "quantity": 3, + "cost": 7.22, + "product_key": "dolores", + "notes": "Voluptates nemo et saepe suscipit quidem et. Repellat deleniti pariatur odit dolore in. Vel voluptatem saepe ex aut et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10519, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0162", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-07", + "last_sent_date": null, + "due_date": "2020-05-09", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.20", + "balance": "13.24", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10519, + "quantity": 2, + "cost": 9.6, + "product_key": "sit", + "notes": "Molestias numquam ut dicta fugiat quos. Perferendis voluptas ipsa quasi totam possimus qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10520, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0163", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-25", + "last_sent_date": null, + "due_date": "2020-08-15", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "78.50", + "balance": "10.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10520, + "quantity": 10, + "cost": 7.85, + "product_key": "aperiam", + "notes": "Velit in corrupti repudiandae aut facilis fugiat dolorem voluptatem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10521, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0164", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-29", + "last_sent_date": null, + "due_date": "2020-04-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.44", + "balance": "13.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10521, + "quantity": 4, + "cost": 8.61, + "product_key": "nihil", + "notes": "Aliquid aut sunt optio inventore voluptas sed. Laborum quia ab dolorum numquam. Excepturi porro iste voluptatem nulla ipsum eaque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10522, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0165", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-21", + "last_sent_date": null, + "due_date": "2020-09-28", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "2.79", + "balance": "2.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10522, + "quantity": 1, + "cost": 2.79, + "product_key": "modi", + "notes": "Repudiandae voluptatum aut consectetur fugiat. Fugiat sit assumenda culpa accusantium. Qui placeat impedit sed ea beatae aut. Aspernatur saepe mollitia sequi. Dolor repellat est nostrum vel aliquid. Molestias nulla ut voluptatem. Autem ipsa voluptatem aliquam quis est officia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10523, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0166", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-26", + "last_sent_date": null, + "due_date": "2020-05-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "31.10", + "balance": "25.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10523, + "quantity": 10, + "cost": 3.11, + "product_key": "et", + "notes": "Iure accusamus est autem sapiente. Est voluptas ipsa accusantium deserunt voluptas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10524, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0167", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-07", + "last_sent_date": null, + "due_date": "2020-05-26", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "76.30", + "balance": "8.73", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10524, + "quantity": 10, + "cost": 7.63, + "product_key": "perferendis", + "notes": "Amet totam blanditiis officia similique architecto non dolor. Aut eveniet et minus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10525, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0168", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-18", + "last_sent_date": null, + "due_date": "2020-05-19", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "54.00", + "balance": "52.19", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10525, + "quantity": 8, + "cost": 6.75, + "product_key": "voluptas", + "notes": "Iste dolor et at. Odit quas ut veritatis nihil voluptas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10526, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0169", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-21", + "last_sent_date": null, + "due_date": "2020-10-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.70", + "balance": "0.65", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10526, + "quantity": 5, + "cost": 1.94, + "product_key": "inventore", + "notes": "Et suscipit dolorem ab quaerat. Dolorum in aut recusandae. Et dolores officia libero et sequi accusamus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10527, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0170", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-17", + "last_sent_date": null, + "due_date": "2020-08-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.10", + "balance": "13.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10527, + "quantity": 10, + "cost": 2.41, + "product_key": "consequatur", + "notes": "Laboriosam tempora officia commodi. Cupiditate voluptatem ullam saepe consectetur mollitia sunt doloribus tenetur. Ab consequuntur facilis qui non debitis beatae. Est ut aliquid quam quis amet iusto tenetur voluptas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10528, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0171", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-19", + "last_sent_date": null, + "due_date": "2020-05-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "1.08", + "balance": "0.13", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10528, + "quantity": 1, + "cost": 1.08, + "product_key": "veniam", + "notes": "Labore magnam vel porro accusamus similique natus reiciendis. Omnis quibusdam ea vel repudiandae. Recusandae rerum iusto et est delectus maxime nemo. Maxime at et doloribus quas possimus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10529, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0172", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-19", + "last_sent_date": null, + "due_date": "2020-07-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.12", + "balance": "3.41", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10529, + "quantity": 2, + "cost": 6.06, + "product_key": "unde", + "notes": "Et autem voluptatem ex voluptate accusamus. Voluptatem odio enim accusamus quo dolorum. Est repudiandae quia minima quos voluptas sint et beatae. Sequi et itaque delectus. Iusto nobis et a vel vel rerum tempora.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10530, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0173", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-18", + "last_sent_date": null, + "due_date": "2020-05-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.60", + "balance": "19.04", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10530, + "quantity": 6, + "cost": 4.1, + "product_key": "quia", + "notes": "Exercitationem minus ipsam asperiores aut et dolores. Et ipsam deserunt odio eum. Et et voluptas consequatur et est omnis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10531, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0174", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-30", + "last_sent_date": null, + "due_date": "2020-06-14", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.70", + "balance": "1.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10531, + "quantity": 6, + "cost": 1.95, + "product_key": "a", + "notes": "Dolores qui veritatis saepe tenetur. Quasi suscipit error reiciendis vel voluptatum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10532, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0175", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-29", + "last_sent_date": null, + "due_date": "2020-04-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "47.10", + "balance": "44.66", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10532, + "quantity": 6, + "cost": 7.85, + "product_key": "amet", + "notes": "Atque autem quisquam est. Molestias omnis pariatur non odit quod. Fugit non explicabo nihil et. Dolores eum quia ipsam suscipit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10533, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0176", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-11", + "last_sent_date": null, + "due_date": "2020-04-12", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.46", + "balance": "5.92", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10533, + "quantity": 2, + "cost": 7.73, + "product_key": "modi", + "notes": "Ea ratione incidunt aut similique quos quis repudiandae enim. Hic sint quod sit consequuntur. Tempora neque ut voluptas qui eos soluta.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10534, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0177", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-10", + "last_sent_date": null, + "due_date": "2020-05-26", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "79.38", + "balance": "19.29", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10534, + "quantity": 9, + "cost": 8.82, + "product_key": "porro", + "notes": "Nesciunt maiores et alias placeat accusamus. Sunt et corporis magni laborum. Sunt ut provident non debitis sapiente.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10535, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0178", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-07", + "last_sent_date": null, + "due_date": "2020-08-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "50.19", + "balance": "16.89", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10535, + "quantity": 7, + "cost": 7.17, + "product_key": "optio", + "notes": "Quaerat id consequuntur minima dicta. Hic error est quia quam. Quia vitae ea id velit vitae deleniti.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10536, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0179", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-01", + "last_sent_date": null, + "due_date": "2020-08-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "49.10", + "balance": "28.73", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10536, + "quantity": 5, + "cost": 9.82, + "product_key": "qui", + "notes": "Eaque aut aut et maiores accusamus magni tempora. Amet necessitatibus quia iste voluptatem voluptates. Quasi delectus laudantium quisquam ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10537, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0180", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-09", + "last_sent_date": null, + "due_date": "2020-08-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "30.96", + "balance": "7.91", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10537, + "quantity": 6, + "cost": 5.16, + "product_key": "occaecati", + "notes": "Nesciunt odit qui cupiditate.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10558, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0201", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-01", + "last_sent_date": null, + "due_date": "2020-09-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.58", + "balance": "5.08", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10558, + "quantity": 6, + "cost": 1.43, + "product_key": "qui", + "notes": "Enim ut consequuntur consequatur rerum. Sequi veritatis aut iste rerum unde. In distinctio et ducimus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10559, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0202", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-18", + "last_sent_date": null, + "due_date": "2020-05-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.66", + "balance": "11.49", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10559, + "quantity": 2, + "cost": 8.83, + "product_key": "iusto", + "notes": "Et ut consequatur modi est dicta. Voluptas et ipsam illum deleniti nihil eos ipsum. Minus temporibus consequatur ut qui et quidem dolorem. Aperiam voluptatem accusamus itaque officia exercitationem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10560, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0203", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-06", + "last_sent_date": null, + "due_date": "2020-05-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.50", + "balance": "5.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10560, + "quantity": 5, + "cost": 1.3, + "product_key": "rerum", + "notes": "Accusantium id non nobis expedita. Veniam dolorum eligendi non velit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10561, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0204", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-17", + "last_sent_date": null, + "due_date": "2020-08-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.12", + "balance": "12.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10561, + "quantity": 7, + "cost": 2.16, + "product_key": "sit", + "notes": "Vero sint hic ut veritatis dolorem corrupti sequi. Est itaque veritatis placeat autem ullam. Iste sed harum non omnis repellat architecto asperiores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10562, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0205", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-05", + "last_sent_date": null, + "due_date": "2020-09-19", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "36.00", + "balance": "10.78", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10562, + "quantity": 8, + "cost": 4.5, + "product_key": "ut", + "notes": "Tempora molestiae dolore vitae in eaque. Architecto neque quis molestiae vitae ipsa. Omnis sunt corporis eligendi ab.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10563, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0206", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-03", + "last_sent_date": null, + "due_date": "2020-08-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "53.60", + "balance": "33.11", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10563, + "quantity": 8, + "cost": 6.7, + "product_key": "blanditiis", + "notes": "Error quibusdam id illum cum. Voluptatum enim sed aut et eius fugit sunt et. Consequatur error consequuntur enim soluta occaecati sint cumque doloremque. Dolor sit velit et adipisci et nobis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10564, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0207", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-24", + "last_sent_date": null, + "due_date": "2020-07-19", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "1.35", + "balance": "0.05", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10564, + "quantity": 1, + "cost": 1.35, + "product_key": "odio", + "notes": "Id sequi unde earum. Accusamus et enim sint impedit. Rerum enim possimus reiciendis illo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10565, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0208", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-02", + "last_sent_date": null, + "due_date": "2020-09-30", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.52", + "balance": "3.24", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10565, + "quantity": 4, + "cost": 3.13, + "product_key": "nam", + "notes": "Ullam velit eius odio doloribus quia unde. Quaerat sit et ad. Quia et laborum facere quod quia rerum ea.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10566, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0209", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-28", + "last_sent_date": null, + "due_date": "2020-06-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "46.75", + "balance": "19.49", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10566, + "quantity": 5, + "cost": 9.35, + "product_key": "laboriosam", + "notes": "Delectus cumque ab est delectus. Harum et in dolore. Ad omnis totam veritatis. Qui dignissimos in dolor iusto et atque natus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10567, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0210", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-27", + "last_sent_date": null, + "due_date": "2020-05-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.05", + "balance": "35.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10567, + "quantity": 5, + "cost": 8.41, + "product_key": "in", + "notes": "Dolorem distinctio quia perspiciatis eveniet error eos et. Sed harum sint saepe voluptas quod repudiandae. Dignissimos autem dolores quasi nesciunt omnis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10568, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0211", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-25", + "last_sent_date": null, + "due_date": "2020-07-13", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "59.15", + "balance": "29.94", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10568, + "quantity": 7, + "cost": 8.45, + "product_key": "odit", + "notes": "Dolor iste at id officia. Tenetur culpa cumque enim. Atque architecto officiis ex architecto illo assumenda consequuntur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10569, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0212", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-03", + "last_sent_date": null, + "due_date": "2020-05-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.90", + "balance": "4.47", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10569, + "quantity": 2, + "cost": 4.45, + "product_key": "velit", + "notes": "Temporibus officia omnis dignissimos optio.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10570, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0213", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-29", + "last_sent_date": null, + "due_date": "2020-03-31", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.35", + "balance": "4.42", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10570, + "quantity": 1, + "cost": 6.35, + "product_key": "ut", + "notes": "Numquam aut suscipit vitae earum nulla. Ut harum et quo. In praesentium ab perspiciatis commodi. Aliquid dicta voluptas deleniti sed aliquid at rem. Neque facere impedit deleniti repellendus nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10571, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0214", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-09", + "last_sent_date": null, + "due_date": "2020-07-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "37.55", + "balance": "15.30", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10571, + "quantity": 5, + "cost": 7.51, + "product_key": "et", + "notes": "Voluptatibus aut qui soluta incidunt. Repellendus cum quisquam dolorem in quos sint quo. Nihil dolorem ipsam non voluptatem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10572, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0215", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-21", + "last_sent_date": null, + "due_date": "2020-04-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.51", + "balance": "0.84", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10572, + "quantity": 3, + "cost": 1.17, + "product_key": "adipisci", + "notes": "Nostrum est amet est amet ut. Deleniti odio est sed voluptate. Impedit sint quasi sit nihil quisquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10573, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0216", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-20", + "last_sent_date": null, + "due_date": "2020-08-28", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.56", + "balance": "7.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10573, + "quantity": 4, + "cost": 4.14, + "product_key": "harum", + "notes": "Natus tempora et tempora magni. Et cum ut eum odit. Consequuntur nesciunt hic quod sequi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10574, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0217", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-07", + "last_sent_date": null, + "due_date": "2020-04-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "31.64", + "balance": "28.24", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10574, + "quantity": 4, + "cost": 7.91, + "product_key": "ducimus", + "notes": "Laudantium amet temporibus vel ut ut. Et exercitationem earum recusandae doloremque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10575, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0218", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-23", + "last_sent_date": null, + "due_date": "2020-09-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "27.00", + "balance": "9.99", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10575, + "quantity": 10, + "cost": 2.7, + "product_key": "aliquam", + "notes": "Modi est sequi blanditiis. Laboriosam nesciunt sit id aliquid. Et deserunt et error quas officiis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10576, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0219", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-03", + "last_sent_date": null, + "due_date": "2020-06-21", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "30.00", + "balance": "23.01", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10576, + "quantity": 10, + "cost": 3, + "product_key": "cupiditate", + "notes": "Sed qui minima fugit commodi aut eum sit. Mollitia quidem officiis animi est. Enim sequi corrupti praesentium eum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10577, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0220", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-04", + "last_sent_date": null, + "due_date": "2020-07-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.56", + "balance": "6.18", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10577, + "quantity": 2, + "cost": 8.78, + "product_key": "ex", + "notes": "Labore officiis veritatis repellat dolor quos quasi libero.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10598, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0241", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-20", + "last_sent_date": null, + "due_date": "2020-05-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "66.08", + "balance": "30.46", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10598, + "quantity": 8, + "cost": 8.26, + "product_key": "numquam", + "notes": "Natus distinctio quia quia dolorum. Omnis ratione repellendus qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10599, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0242", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-22", + "last_sent_date": null, + "due_date": "2020-07-31", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.59", + "balance": "2.52", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10599, + "quantity": 1, + "cost": 8.59, + "product_key": "et", + "notes": "Id similique culpa corporis. Adipisci et suscipit eos consectetur. Voluptatem dolorem quia nemo. Eius ut esse minus dolor et expedita. Qui et voluptas dolor sunt. Omnis dicta qui ea nisi dicta quisquam consequatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10600, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0243", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-11", + "last_sent_date": null, + "due_date": "2020-05-06", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.34", + "balance": "5.42", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10600, + "quantity": 3, + "cost": 5.78, + "product_key": "optio", + "notes": "Recusandae aperiam dolores illum voluptatem eos odio sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10601, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0244", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-26", + "last_sent_date": null, + "due_date": "2020-09-30", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "52.00", + "balance": "4.42", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10601, + "quantity": 10, + "cost": 5.2, + "product_key": "consequatur", + "notes": "Consequatur voluptatem est in eveniet quia. Unde consequuntur provident voluptate tempore amet. Ut sint voluptatem voluptatem enim vitae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10602, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0245", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-25", + "last_sent_date": null, + "due_date": "2020-10-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.52", + "balance": "2.69", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10602, + "quantity": 4, + "cost": 3.13, + "product_key": "labore", + "notes": "Accusamus inventore sit quia voluptates. Quo recusandae in fugit fuga velit quas voluptatem. Voluptatibus quam repellat fugit voluptate quam neque aliquid ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10603, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0246", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-14", + "last_sent_date": null, + "due_date": "2020-06-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.96", + "balance": "3.37", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10603, + "quantity": 2, + "cost": 8.48, + "product_key": "aliquid", + "notes": "Sunt voluptate sed qui libero quasi id est. Et dolor cum dolor id laborum itaque ut. Facere qui expedita numquam laudantium sit dolorem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10604, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0247", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-10", + "last_sent_date": null, + "due_date": "2020-09-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.52", + "balance": "2.41", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10604, + "quantity": 4, + "cost": 1.38, + "product_key": "quo", + "notes": "Et omnis tempora omnis suscipit soluta et sit. Sed vero et inventore. Ut temporibus rerum similique neque quibusdam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10605, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0248", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-08", + "last_sent_date": null, + "due_date": "2020-07-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.50", + "balance": "4.69", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10605, + "quantity": 5, + "cost": 4.1, + "product_key": "qui", + "notes": "Neque quaerat illo cupiditate aut sed et. Voluptatibus laborum quidem assumenda quia qui laboriosam. Et eius corrupti molestiae qui asperiores pariatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10606, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0249", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-14", + "last_sent_date": null, + "due_date": "2020-05-25", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "32.97", + "balance": "10.31", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10606, + "quantity": 7, + "cost": 4.71, + "product_key": "quia", + "notes": "Eum ipsum nemo quis magni harum aut. Natus quos velit est eveniet. Totam recusandae dolores ipsa. Sit reiciendis voluptatum culpa.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10607, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0250", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-30", + "last_sent_date": null, + "due_date": "2020-03-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.24", + "balance": "26.09", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10607, + "quantity": 4, + "cost": 8.56, + "product_key": "velit", + "notes": "Numquam omnis optio repellendus. Maxime et et non consectetur. Ea dicta consequatur ratione qui incidunt.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10608, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0251", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-03", + "last_sent_date": null, + "due_date": "2020-09-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.65", + "balance": "2.85", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10608, + "quantity": 5, + "cost": 8.53, + "product_key": "fugiat", + "notes": "Iste quibusdam numquam necessitatibus animi. Dolor nemo voluptate totam. Excepturi nihil et libero nisi consequatur. Officia ex aut assumenda esse doloribus. Expedita nostrum magni eum ut sed quo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10609, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0252", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-06", + "last_sent_date": null, + "due_date": "2020-05-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "46.48", + "balance": "28.09", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10609, + "quantity": 7, + "cost": 6.64, + "product_key": "nihil", + "notes": "Expedita praesentium rerum expedita odio nisi. Doloremque qui ipsum omnis vero dolores ipsum aliquid. Perspiciatis nihil rerum fugit sed adipisci asperiores. Dolorem cupiditate quod soluta architecto et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10610, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0253", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-19", + "last_sent_date": null, + "due_date": "2020-05-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "63.50", + "balance": "63.27", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10610, + "quantity": 10, + "cost": 6.35, + "product_key": "aliquid", + "notes": "Omnis explicabo voluptas amet ab rerum est. Exercitationem et qui qui repellendus rerum et. Mollitia id a ab quia consequatur. Distinctio distinctio quae praesentium illo in.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10611, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0254", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-04", + "last_sent_date": null, + "due_date": "2020-05-26", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "69.76", + "balance": "39.86", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10611, + "quantity": 8, + "cost": 8.72, + "product_key": "cupiditate", + "notes": "Vitae omnis quidem unde et. Dolor quo beatae aut ullam. Molestiae quidem fugiat ducimus eaque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10612, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0255", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-25", + "last_sent_date": null, + "due_date": "2020-04-26", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.36", + "balance": "3.73", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10612, + "quantity": 4, + "cost": 1.59, + "product_key": "atque", + "notes": "Ut et officiis voluptas ullam neque adipisci eos. Nihil tempore sequi aliquam sed explicabo iusto quia ab. Eveniet voluptas repudiandae quaerat ad.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10613, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0256", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-08", + "last_sent_date": null, + "due_date": "2020-04-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.76", + "balance": "1.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10613, + "quantity": 1, + "cost": 4.76, + "product_key": "temporibus", + "notes": "Ducimus et minima illo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10614, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0257", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-01", + "last_sent_date": null, + "due_date": "2020-06-25", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.43", + "balance": "0.68", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10614, + "quantity": 7, + "cost": 1.49, + "product_key": "ut", + "notes": "Voluptatem aut suscipit similique minus et assumenda ex.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10615, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0258", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-28", + "last_sent_date": null, + "due_date": "2020-09-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "46.24", + "balance": "28.79", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10615, + "quantity": 8, + "cost": 5.78, + "product_key": "sapiente", + "notes": "Ut non at enim animi recusandae enim ratione. Quam totam dolorem nulla laudantium eum dignissimos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10616, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0259", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-22", + "last_sent_date": null, + "due_date": "2020-09-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.10", + "balance": "9.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10616, + "quantity": 5, + "cost": 2.42, + "product_key": "velit", + "notes": "Pariatur omnis commodi architecto est dignissimos ut. Delectus facilis suscipit dolorem voluptas. Odio incidunt fugit id vitae similique molestiae quos. Explicabo ipsa rem est aut. Tempore suscipit dolore aspernatur et quidem sint.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10617, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0260", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-07", + "last_sent_date": null, + "due_date": "2020-10-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "36.00", + "balance": "35.79", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10617, + "quantity": 10, + "cost": 3.6, + "product_key": "occaecati", + "notes": "Dolores tempora quod eaque quam laboriosam ut accusantium. Et voluptas vitae distinctio recusandae dicta delectus illum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10638, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0281", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-28", + "last_sent_date": null, + "due_date": "2020-03-31", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "52.20", + "balance": "8.38", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10638, + "quantity": 6, + "cost": 8.7, + "product_key": "expedita", + "notes": "Quas ut voluptatem pariatur nemo. Fuga consequuntur neque soluta suscipit rem. Exercitationem reiciendis suscipit amet fuga. Non et ut sint aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10639, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0282", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-23", + "last_sent_date": null, + "due_date": "2020-04-12", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "55.72", + "balance": "44.81", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10639, + "quantity": 7, + "cost": 7.96, + "product_key": "perspiciatis", + "notes": "Fugiat sint nihil rerum tempora quas et distinctio. Quo quia dolorem magni ab qui. Cumque occaecati voluptatem qui rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10640, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0283", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-19", + "last_sent_date": null, + "due_date": "2020-06-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "79.74", + "balance": "11.22", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10640, + "quantity": 9, + "cost": 8.86, + "product_key": "qui", + "notes": "Aut sed iusto vel voluptas. Aut sunt quo quam possimus eveniet est ratione.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10641, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0284", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-13", + "last_sent_date": null, + "due_date": "2020-10-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.66", + "balance": "2.21", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10641, + "quantity": 3, + "cost": 5.22, + "product_key": "perspiciatis", + "notes": "Et unde consequuntur aut ducimus. Eveniet ullam qui qui dicta. Odio expedita alias perferendis quia laboriosam. Tenetur quis est consequuntur sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10642, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0285", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-25", + "last_sent_date": null, + "due_date": "2020-05-19", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "52.78", + "balance": "14.03", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10642, + "quantity": 7, + "cost": 7.54, + "product_key": "et", + "notes": "Repellat qui possimus reiciendis vel voluptatem itaque corrupti. Nihil officiis et sed blanditiis aliquid in et. Voluptates quas consectetur sequi. Ad odio odio nisi distinctio.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10643, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0286", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-04", + "last_sent_date": null, + "due_date": "2020-05-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.38", + "balance": "6.77", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10643, + "quantity": 2, + "cost": 7.19, + "product_key": "quos", + "notes": "Facilis eum asperiores veniam ipsam et. In officiis vel et nesciunt minima enim natus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10644, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0287", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-05", + "last_sent_date": null, + "due_date": "2020-04-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.10", + "balance": "33.02", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10644, + "quantity": 10, + "cost": 4.21, + "product_key": "facere", + "notes": "Non voluptates voluptate nihil libero tempora dolore earum. Ab ratione praesentium ea. Incidunt itaque quaerat necessitatibus ullam odio aperiam. Velit odit maxime ea doloremque eius. Aut et earum non perferendis aut quae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10645, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0288", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-16", + "last_sent_date": null, + "due_date": "2020-07-12", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "30.30", + "balance": "27.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10645, + "quantity": 6, + "cost": 5.05, + "product_key": "aut", + "notes": "Reprehenderit id qui beatae est. Corrupti sed quis consequatur. Quam nam voluptatem saepe aut aliquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10646, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0289", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-13", "last_sent_date": null, "due_date": "2020-05-22", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "81.20", + "balance": "20.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10646, + "quantity": 10, + "cost": 8.12, + "product_key": "aut", + "notes": "Velit unde et distinctio autem illo doloribus deserunt. Distinctio exercitationem dicta quaerat consequuntur ex aliquam. Et consequatur odit totam sapiente velit id.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10647, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0290", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-23", + "last_sent_date": null, + "due_date": "2020-04-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.06", + "balance": "1.18", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10647, + "quantity": 1, + "cost": 6.06, + "product_key": "ut", + "notes": "Qui est quod eum culpa non quia. Dicta commodi ipsam voluptatem explicabo. Illo maiores voluptas pariatur aut odio sint.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10648, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0291", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-21", + "last_sent_date": null, + "due_date": "2020-05-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "36.68", + "balance": "2.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10648, + "quantity": 7, + "cost": 5.24, + "product_key": "iure", + "notes": "Qui perferendis sit sed aut. Voluptatem quia molestiae nihil omnis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10649, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0292", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-10", + "last_sent_date": null, + "due_date": "2020-06-25", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.51", + "balance": "6.88", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10649, + "quantity": 3, + "cost": 6.17, + "product_key": "consequuntur", + "notes": "Omnis tempora ut ea dicta. Sed facere fugiat voluptatibus dolores molestiae quam. Esse magnam deserunt quos sequi ut. Incidunt voluptas aut voluptate quaerat eos blanditiis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10650, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0293", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-28", + "last_sent_date": null, + "due_date": "2020-07-17", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.80", + "balance": "6.58", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10650, + "quantity": 8, + "cost": 3.1, + "product_key": "rerum", + "notes": "Deserunt iusto aut et nihil voluptates nulla quis. Sint reiciendis praesentium ea consequatur. Quam ut cum minus quod sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10651, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0294", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-10", + "last_sent_date": null, + "due_date": "2020-10-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "35.60", + "balance": "10.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10651, + "quantity": 10, + "cost": 3.56, + "product_key": "laboriosam", + "notes": "Ea dolorem qui quisquam repellendus porro. Debitis aperiam maiores quam exercitationem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10652, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0295", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-20", + "last_sent_date": null, + "due_date": "2020-04-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.76", + "balance": "12.74", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10652, + "quantity": 8, + "cost": 3.22, + "product_key": "quod", + "notes": "Rerum est autem dolores dolor. Sint ex ipsum placeat modi voluptatem cupiditate non error. Illo et alias omnis debitis officia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10653, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0296", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-12", + "last_sent_date": null, + "due_date": "2020-08-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "21.15", + "balance": "14.54", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10653, + "quantity": 9, + "cost": 2.35, + "product_key": "laborum", + "notes": "Soluta sapiente eos quisquam optio.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10654, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0297", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-07", + "last_sent_date": null, + "due_date": "2020-09-25", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "50.76", + "balance": "2.14", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10654, + "quantity": 6, + "cost": 8.46, + "product_key": "est", + "notes": "Dolore et quam molestias. Eos et vel est placeat impedit repellat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10655, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0298", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-23", + "last_sent_date": null, + "due_date": "2020-07-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.20", + "balance": "0.61", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10655, + "quantity": 1, + "cost": 5.2, + "product_key": "quibusdam", + "notes": "Laboriosam reprehenderit aut magni et autem molestiae. Illo repellat et sed unde rerum voluptatem aliquid. Est quaerat veniam quis possimus dicta harum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10656, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0299", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-19", + "last_sent_date": null, + "due_date": "2020-04-19", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.90", + "balance": "12.78", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10656, + "quantity": 3, + "cost": 6.3, + "product_key": "dolores", + "notes": "Aperiam voluptatum voluptatem voluptates eum fugit cumque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10657, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0300", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-12", + "last_sent_date": null, + "due_date": "2020-04-17", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.90", + "balance": "7.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10657, + "quantity": 3, + "cost": 5.3, + "product_key": "eius", + "notes": "Doloribus explicabo autem explicabo unde sint. Laborum consequatur officiis deserunt autem beatae. Autem sunt et magni fuga et deleniti minus itaque. Et quia rem tempora tempore non.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10678, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0321", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-01", + "last_sent_date": null, + "due_date": "2020-04-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.50", + "balance": "1.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10678, + "quantity": 1, + "cost": 5.5, + "product_key": "fugit", + "notes": "Quas quos expedita dignissimos odio deserunt. Ipsam voluptatibus praesentium voluptate at. Aut autem assumenda esse officia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10679, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0322", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-17", + "last_sent_date": null, + "due_date": "2020-07-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.30", + "balance": "12.35", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10679, + "quantity": 10, + "cost": 3.83, + "product_key": "facilis", + "notes": "Ut aut ut explicabo eaque qui ea earum. Dolor doloribus incidunt et quasi fugiat. Incidunt harum cumque cupiditate expedita. Voluptatem nihil laboriosam velit minus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10680, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0323", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-09", + "last_sent_date": null, + "due_date": "2020-06-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "47.20", + "balance": "21.66", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10680, + "quantity": 8, + "cost": 5.9, + "product_key": "expedita", + "notes": "Nihil dicta vero in voluptas quaerat placeat cum. Vel ea unde optio repudiandae iure.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10681, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0324", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-04", + "last_sent_date": null, + "due_date": "2020-04-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "30.17", + "balance": "23.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10681, + "quantity": 7, + "cost": 4.31, + "product_key": "asperiores", + "notes": "Quia qui amet odit sapiente et consequuntur temporibus. Ad quia animi sunt deserunt minus non velit. Amet quas debitis assumenda. Dolore molestias dolore minima. Dolores tenetur est et. Cupiditate hic laudantium illum est cupiditate nostrum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10682, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0325", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-22", + "last_sent_date": null, + "due_date": "2020-10-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "43.92", + "balance": "11.93", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10682, + "quantity": 9, + "cost": 4.88, + "product_key": "perferendis", + "notes": "Est provident illo eligendi provident. Vel est consequatur voluptatum fugit sed non ut vel. Inventore et quia et eius est.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10683, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0326", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-13", + "last_sent_date": null, + "due_date": "2020-07-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.16", + "balance": "1.43", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10683, + "quantity": 7, + "cost": 4.88, + "product_key": "iusto", + "notes": "Est commodi culpa laborum et aspernatur iure quia. Excepturi odio sunt quod ea. Culpa ut quam minima eos cupiditate. Cumque mollitia quasi ipsa iste dignissimos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10684, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0327", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-05", + "last_sent_date": null, + "due_date": "2020-04-24", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.37", + "balance": "6.96", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10684, + "quantity": 1, + "cost": 9.37, + "product_key": "deleniti", + "notes": "Dolores minima aperiam earum nisi et. Impedit porro sed nulla. Atque ex ut non ratione. Voluptas animi sit voluptatem sed.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10685, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0328", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-02", + "last_sent_date": null, + "due_date": "2020-08-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -133793,21 +15273,25 @@ "custom_value2": "0.00", "next_send_date": null, "amount": "5.58", - "balance": "5.58", - "partial": null, + "balance": "0.84", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 807, + "id": 10685, "quantity": 1, "cost": 5.58, - "product_key": "et", - "notes": "Modi aut iusto exercitationem sit. Nisi ut et maiores consectetur vero. Et nisi ut nihil excepturi sed. Labore autem ad nobis voluptates aut officiis quidem.", + "product_key": "commodi", + "notes": "Enim tempore rerum amet. Harum doloribus autem vero perspiciatis.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:28.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -133816,50 +15300,855 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 792, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 792, - "key": "ruqu8twafwamyzbmtkexr43z9tokixzv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 793, - "client_id": 16, + "id": 10686, + "client_id": 61, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0792", + "number": "0329", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-06", + "last_sent_date": null, + "due_date": "2020-04-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "86.94", + "balance": "17.06", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10686, + "quantity": 9, + "cost": 9.66, + "product_key": "quae", + "notes": "Architecto eos qui ex et aperiam non et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10687, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0330", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-24", + "last_sent_date": null, + "due_date": "2020-09-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.70", + "balance": "2.34", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10687, + "quantity": 2, + "cost": 2.85, + "product_key": "assumenda", + "notes": "Temporibus unde quos et culpa adipisci asperiores eum. Dicta eum perferendis velit iure. Animi quia laboriosam quia impedit ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10688, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0331", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-14", + "last_sent_date": null, + "due_date": "2020-06-24", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.40", + "balance": "0.07", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10688, + "quantity": 2, + "cost": 5.2, + "product_key": "corrupti", + "notes": "Quam repudiandae et sunt quasi. Iusto veniam a consequatur qui laborum adipisci. Similique ut officiis maiores sunt. In repudiandae et voluptatem temporibus dolores expedita.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10689, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0332", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-05", + "last_sent_date": null, + "due_date": "2020-07-29", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "21.90", + "balance": "21.27", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10689, + "quantity": 10, + "cost": 2.19, + "product_key": "voluptas", + "notes": "Vel voluptatem qui et repudiandae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10690, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0333", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-24", + "last_sent_date": null, + "due_date": "2020-04-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.56", + "balance": "18.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10690, + "quantity": 4, + "cost": 5.89, + "product_key": "quia", + "notes": "Alias tempora voluptatum adipisci temporibus dolores magnam voluptas. Laborum quisquam dolor autem quia magnam sapiente incidunt qui. Sint autem eveniet unde. Magni expedita dolorem rerum ut dolorum repudiandae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10691, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0334", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-02", + "last_sent_date": null, + "due_date": "2020-05-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.15", + "balance": "11.65", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10691, + "quantity": 5, + "cost": 2.43, + "product_key": "eos", + "notes": "Et esse voluptatem quia consequatur vel voluptatem dolor. Aut excepturi enim nihil accusantium vel sed. Dicta enim corporis omnis omnis dolor consequatur sed.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10692, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0335", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-28", + "last_sent_date": null, + "due_date": "2020-08-14", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.03", + "balance": "22.43", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10692, + "quantity": 9, + "cost": 2.67, + "product_key": "animi", + "notes": "Qui voluptatum incidunt dolorum veniam. Sed quia sed dolorem. Laboriosam nesciunt excepturi enim recusandae eum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10693, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0336", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-01", + "last_sent_date": null, + "due_date": "2020-07-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "40.14", + "balance": "33.23", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10693, + "quantity": 9, + "cost": 4.46, + "product_key": "quo", + "notes": "Magni consequuntur nemo officia asperiores. Laudantium fugiat et provident perferendis placeat id et autem. Qui ipsa iure quibusdam dolores itaque dicta.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10694, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0337", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-30", + "last_sent_date": null, + "due_date": "2020-06-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.92", + "balance": "2.49", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10694, + "quantity": 3, + "cost": 1.64, + "product_key": "debitis", + "notes": "Ipsum repellat provident velit maiores. Voluptatem adipisci et voluptatem iste. Sint ut libero consequatur quia voluptatem et ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10695, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0338", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-10", + "last_sent_date": null, + "due_date": "2020-05-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.86", + "balance": "14.78", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10695, + "quantity": 6, + "cost": 3.81, + "product_key": "sed", + "notes": "Tenetur assumenda eum nihil autem quia necessitatibus. Est suscipit unde dignissimos quis mollitia. Iusto est libero sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10696, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0339", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-29", + "last_sent_date": null, + "due_date": "2020-04-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "66.64", + "balance": "56.76", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10696, + "quantity": 8, + "cost": 8.33, + "product_key": "ea", + "notes": "Molestiae facilis tempore consequatur odit quo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10697, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0340", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-26", + "last_sent_date": null, + "due_date": "2020-06-29", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "27.02", + "balance": "23.26", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10697, + "quantity": 7, + "cost": 3.86, + "product_key": "et", + "notes": "Commodi ut voluptas harum eaque a autem et. Sit porro delectus id expedita ut. Corrupti qui numquam voluptas nostrum itaque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10718, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0361", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-26", + "last_sent_date": null, + "due_date": "2020-09-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.81", + "balance": "0.59", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10718, + "quantity": 1, + "cost": 4.81, + "product_key": "quos", + "notes": "Ipsa quae illo reprehenderit earum repudiandae. Quae sit consequatur doloremque voluptatum ipsum et quia sit. Vel sit dolorem deserunt quo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10719, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0362", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-05", + "last_sent_date": null, + "due_date": "2020-07-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "45.80", + "balance": "30.87", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10719, + "quantity": 10, + "cost": 4.58, + "product_key": "numquam", + "notes": "Autem dolorum minima iste veniam consequatur nisi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10720, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0363", "discount": "0.00", "is_amount_discount": false, "po_number": "", "date": "2020-04-22", "last_sent_date": null, - "due_date": "2020-03-26", + "due_date": "2020-07-01", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -133868,22 +16157,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "58.17", - "balance": "58.17", - "partial": null, + "amount": "30.24", + "balance": "8.41", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 808, - "quantity": 7, - "cost": 8.31, - "product_key": "accusantium", - "notes": "Vero blanditiis aut et architecto enim. Dolorem et ex maiores soluta. Dolores repudiandae hic accusantium.", + "id": 10720, + "quantity": 6, + "cost": 5.04, + "product_key": "dolore", + "notes": "Suscipit est molestiae in. Quia maiores tempora eum labore natus sequi. Ab hic sit cum blanditiis.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:29.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -133892,50 +16185,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 793, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 793, - "key": "wfrxd24087hsnxctjql2ailo5e3uhoka", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 794, - "client_id": 16, + "id": 10721, + "client_id": 62, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0793", + "number": "0364", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2019-12-07", + "date": "2020-09-27", "last_sent_date": null, - "due_date": "2020-03-25", + "due_date": "2020-04-15", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -133944,98 +16216,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "18.66", - "balance": "18.66", - "partial": null, + "amount": "76.10", + "balance": "28.41", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 809, - "quantity": 3, - "cost": 6.22, - "product_key": "incidunt", - "notes": "Qui et quo dolor deserunt voluptates voluptates. Exercitationem cum repellat ut quia quasi blanditiis aut asperiores. Doloribus temporibus autem culpa beatae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 794, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 794, - "key": "go5kv8roakgeysiaaovuyz5gfark2ne3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 795, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0794", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-31", - "last_sent_date": null, - "due_date": "2019-12-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.90", - "balance": "34.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 810, + "id": 10721, "quantity": 10, - "cost": 3.49, - "product_key": "rem", - "notes": "Quia sit sint rerum qui maiores eveniet sed. A deserunt eos qui quis nihil quidem similique. In totam accusantium incidunt deleniti magni illum saepe.", + "cost": 7.61, + "product_key": "veritatis", + "notes": "Aut repellat vel sint unde cupiditate explicabo. Consequatur veniam inventore quos voluptatem sapiente. Laboriosam tempora corrupti totam consectetur reiciendis.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:29.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -134044,50 +16244,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 795, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 795, - "key": "rf84o5jgptyzrehemfywplzdnmbjarmg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 796, - "client_id": 16, + "id": 10722, + "client_id": 62, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0795", + "number": "0365", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-19", + "date": "2020-06-14", "last_sent_date": null, - "due_date": "2019-12-14", + "due_date": "2020-03-30", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -134096,22 +16275,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "22.61", - "balance": "22.61", - "partial": null, + "amount": "45.96", + "balance": "7.24", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 811, - "quantity": 7, - "cost": 3.23, - "product_key": "ipsa", - "notes": "Eaque quisquam quas nulla fuga officiis. Rem ipsam expedita perferendis hic.", + "id": 10722, + "quantity": 6, + "cost": 7.66, + "product_key": "aliquam", + "notes": "Magnam adipisci non corrupti blanditiis eos quis debitis. Alias cum doloribus ipsum. Magnam cumque iusto porro aut exercitationem ut. Id velit explicabo minus molestias.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:29.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -134120,50 +16303,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 796, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 796, - "key": "o1s78bsknhufrp09avq9lo2euta7tm5a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 797, - "client_id": 16, + "id": 10723, + "client_id": 62, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0796", + "number": "0366", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-01", + "date": "2020-06-12", "last_sent_date": null, - "due_date": "2020-01-30", + "due_date": "2020-04-20", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -134172,22 +16334,203 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "11.85", - "balance": "11.85", - "partial": null, + "amount": "41.50", + "balance": "16.09", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 812, + "id": 10723, + "quantity": 10, + "cost": 4.15, + "product_key": "adipisci", + "notes": "Impedit totam placeat similique accusamus. Totam minus ducimus id hic aspernatur. Reprehenderit sed dolorum sunt.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10724, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0367", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-22", + "last_sent_date": null, + "due_date": "2020-08-17", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.42", + "balance": "16.92", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10724, + "quantity": 6, + "cost": 3.07, + "product_key": "dolor", + "notes": "Recusandae vitae quisquam repudiandae sint dolores aut illo. Possimus consequatur fuga placeat expedita et omnis. Quam est hic consequatur sapiente molestiae. Illum molestiae dicta consectetur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10725, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0368", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-24", + "last_sent_date": null, + "due_date": "2020-03-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.22", + "balance": "0.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10725, + "quantity": 6, + "cost": 1.87, + "product_key": "illo", + "notes": "Commodi veritatis voluptatem cum atque inventore dolores. Sed ad at at itaque autem inventore. Tempora itaque tenetur quia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10726, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0369", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-27", + "last_sent_date": null, + "due_date": "2020-07-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "37.20", + "balance": "4.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10726, "quantity": 5, - "cost": 2.37, - "product_key": "ad", - "notes": "Totam qui enim ea dolore architecto. Voluptatem voluptas non rerum et. Minima voluptate expedita eligendi temporibus et.", + "cost": 7.44, + "product_key": "est", + "notes": "Beatae ut aut quia atque minima. Error velit nihil vel hic eos aliquam qui. Vel et sint non quasi ducimus.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:29.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -134196,50 +16539,914 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 797, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 797, - "key": "mkahfv9ffztrmx2hqubywneo2g8ochyg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 798, - "client_id": 16, + "id": 10727, + "client_id": 62, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0797", + "number": "0370", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-03", + "last_sent_date": null, + "due_date": "2020-05-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "66.32", + "balance": "41.16", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10727, + "quantity": 8, + "cost": 8.29, + "product_key": "maiores", + "notes": "Dolores nulla et sed voluptatem rem ad eligendi. Numquam maiores delectus autem mollitia maiores. Facilis eligendi esse vel quos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10728, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0371", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-08", + "last_sent_date": null, + "due_date": "2020-06-21", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.63", + "balance": "1.41", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10728, + "quantity": 7, + "cost": 2.09, + "product_key": "soluta", + "notes": "Suscipit porro quo id cumque incidunt aut et. Expedita rem cumque et et ipsum et quibusdam. Voluptatem vel accusamus sint ex ullam dolorem. Voluptatibus optio at aut. Voluptatem impedit nostrum consequatur quas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10729, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0372", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-30", + "last_sent_date": null, + "due_date": "2020-06-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.58", + "balance": "1.98", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10729, + "quantity": 1, + "cost": 7.58, + "product_key": "quos", + "notes": "Dolor eligendi quam qui commodi ut ut et. Nesciunt nobis officiis eum dolores est. Est nemo minus omnis nostrum itaque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10730, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0373", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-11", + "last_sent_date": null, + "due_date": "2020-08-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "71.55", + "balance": "57.23", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10730, + "quantity": 9, + "cost": 7.95, + "product_key": "provident", + "notes": "Maxime officiis quae voluptatem quis iusto atque sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10731, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0374", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-26", + "last_sent_date": null, + "due_date": "2020-06-21", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "37.44", + "balance": "21.39", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10731, + "quantity": 9, + "cost": 4.16, + "product_key": "voluptatibus", + "notes": "Voluptatem aut voluptatem quidem dicta et sed nemo. Soluta voluptate nisi repellendus. Quo adipisci dolor quia et ab excepturi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10732, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0375", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-06", + "last_sent_date": null, + "due_date": "2020-06-06", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.37", + "balance": "7.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10732, + "quantity": 1, + "cost": 8.37, + "product_key": "maiores", + "notes": "Quibusdam earum adipisci odit facilis facilis incidunt qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10733, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0376", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-01", + "last_sent_date": null, + "due_date": "2020-04-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "2.77", + "balance": "1.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10733, + "quantity": 1, + "cost": 2.77, + "product_key": "libero", + "notes": "Provident laboriosam ex non quisquam id voluptas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10734, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0377", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-16", + "last_sent_date": null, + "due_date": "2020-07-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.09", + "balance": "5.31", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10734, + "quantity": 1, + "cost": 7.09, + "product_key": "repellat", + "notes": "Et maiores quo soluta perspiciatis dicta. Sit magni omnis exercitationem aliquid dolorem quaerat velit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10735, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0378", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-21", + "last_sent_date": null, + "due_date": "2020-09-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "48.16", + "balance": "37.93", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10735, + "quantity": 7, + "cost": 6.88, + "product_key": "deserunt", + "notes": "Nam aliquam facere ut ipsa velit nihil. Sit dolorem et quis. Magni sit explicabo et quia placeat veniam voluptatum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10736, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0379", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-20", + "last_sent_date": null, + "due_date": "2020-04-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "84.87", + "balance": "28.06", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10736, + "quantity": 9, + "cost": 9.43, + "product_key": "sed", + "notes": "Perferendis qui est hic et. Nesciunt velit minima ullam ab. Qui at rem quasi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10737, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0380", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-15", + "last_sent_date": null, + "due_date": "2020-09-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.76", + "balance": "1.65", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10737, + "quantity": 2, + "cost": 4.38, + "product_key": "rerum", + "notes": "Deleniti non incidunt aperiam at. Et eligendi at laborum ut iusto.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10758, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0401", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-06", + "last_sent_date": null, + "due_date": "2020-09-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.52", + "balance": "1.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10758, + "quantity": 4, + "cost": 2.13, + "product_key": "adipisci", + "notes": "Sit aliquid impedit nostrum fuga. Enim aut ipsum quo assumenda vel dolor omnis minima. Quidem minus et officia. Tempore aut iusto laborum. Omnis harum eum et amet consequatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10759, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0402", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-10", + "last_sent_date": null, + "due_date": "2020-09-18", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.68", + "balance": "16.61", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10759, + "quantity": 4, + "cost": 8.67, + "product_key": "est", + "notes": "Quia similique magni ut a neque non libero.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10760, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0403", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-27", + "last_sent_date": null, + "due_date": "2020-10-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.46", + "balance": "5.26", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10760, + "quantity": 3, + "cost": 3.82, + "product_key": "possimus", + "notes": "Est totam consequatur voluptatem ad et autem ducimus. Reiciendis architecto modi quia occaecati. Molestias nisi sunt eum est blanditiis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10761, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0404", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-01", + "last_sent_date": null, + "due_date": "2020-05-19", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "21.57", + "balance": "1.97", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10761, + "quantity": 3, + "cost": 7.19, + "product_key": "animi", + "notes": "Tempora ratione ipsum est debitis neque qui et atque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10762, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0405", "discount": "0.00", "is_amount_discount": false, "po_number": "", "date": "2020-04-07", "last_sent_date": null, - "due_date": "2020-04-08", + "due_date": "2020-05-01", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -134248,22 +17455,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "12.87", - "balance": "12.87", - "partial": null, + "amount": "60.83", + "balance": "11.76", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 813, - "quantity": 9, - "cost": 1.43, - "product_key": "architecto", - "notes": "Suscipit et rerum molestiae. Qui libero soluta eos eos. Ut atque consectetur et quis. Aut harum omnis non in error. Quia aperiam qui molestias. Vitae et libero dolore.", + "id": 10762, + "quantity": 7, + "cost": 8.69, + "product_key": "sunt", + "notes": "Dolorum sit sed est quod iste optio.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:30.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -134272,50 +17483,1150 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 798, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 798, - "key": "ma4xhb9apkm36rwociztxlbvd87peyao", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 799, - "client_id": 16, + "id": 10763, + "client_id": 63, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0798", + "number": "0406", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-02", + "date": "2020-07-16", + "last_sent_date": null, + "due_date": "2020-08-13", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "47.60", + "balance": "38.05", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10763, + "quantity": 5, + "cost": 9.52, + "product_key": "qui", + "notes": "Nulla exercitationem ducimus itaque reiciendis consectetur aut qui mollitia. Esse et iste qui id possimus sit quo. Est repellat voluptatibus in nisi accusantium tenetur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10764, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0407", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-13", + "last_sent_date": null, + "due_date": "2020-08-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.68", + "balance": "2.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10764, + "quantity": 3, + "cost": 6.56, + "product_key": "voluptatem", + "notes": "Illum asperiores ad labore voluptatem maxime nisi. Ad neque dignissimos placeat ducimus et ab occaecati. Voluptatum voluptatibus voluptates quo sint. Eos dolorum corrupti consequatur modi. Iste sunt quod facere saepe eveniet.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10765, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0408", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-07", + "last_sent_date": null, + "due_date": "2020-08-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "77.20", + "balance": "19.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10765, + "quantity": 8, + "cost": 9.65, + "product_key": "voluptatem", + "notes": "Est consequatur aut qui dicta qui facere. Nobis fugiat harum recusandae. Ab eos dolore consequuntur eaque quidem consequatur. Ea minima voluptates nulla sapiente.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10766, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0409", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-18", + "last_sent_date": null, + "due_date": "2020-10-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.50", + "balance": "9.81", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10766, + "quantity": 3, + "cost": 9.5, + "product_key": "non", + "notes": "Nesciunt ex quod molestiae libero et id. Distinctio iusto qui voluptatem. Nesciunt sunt cupiditate laboriosam nisi. Eligendi dolor quidem repudiandae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10767, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0410", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-16", + "last_sent_date": null, + "due_date": "2020-09-26", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.84", + "balance": "6.85", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10767, + "quantity": 2, + "cost": 6.92, + "product_key": "sapiente", + "notes": "Asperiores illum quod nesciunt quo adipisci cumque officiis neque. Ex quam minus sint et. Illo in nostrum et ipsa. Ipsa et earum dolor omnis minus facere tenetur. Dolores est accusantium velit eveniet modi itaque quos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10768, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0411", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-20", + "last_sent_date": null, + "due_date": "2020-08-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.22", + "balance": "3.15", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10768, + "quantity": 7, + "cost": 2.46, + "product_key": "voluptas", + "notes": "Quia velit laboriosam nihil numquam impedit deleniti. Dignissimos porro consequatur eligendi ducimus impedit. Cum voluptas impedit voluptatem reprehenderit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10769, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0412", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-07", + "last_sent_date": null, + "due_date": "2020-09-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.50", + "balance": "1.58", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10769, + "quantity": 5, + "cost": 3.5, + "product_key": "necessitatibus", + "notes": "Nostrum tempora consequatur id eveniet. Aut officiis consequatur delectus labore culpa praesentium et odio. Quaerat accusantium id quae aut voluptatem et laborum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10770, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0413", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-07", + "last_sent_date": null, + "due_date": "2020-09-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "58.80", + "balance": "23.73", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10770, + "quantity": 10, + "cost": 5.88, + "product_key": "quibusdam", + "notes": "Ducimus animi rerum similique repellat et. Dolorem hic molestiae et rerum necessitatibus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10771, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0414", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-27", + "last_sent_date": null, + "due_date": "2020-10-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.20", + "balance": "8.74", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10771, + "quantity": 6, + "cost": 3.7, + "product_key": "repellendus", + "notes": "Omnis fugiat ea minima dolore incidunt. Sit deleniti velit quo provident. Sit non vero quisquam. Nostrum veniam similique debitis adipisci.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10772, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0415", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-19", + "last_sent_date": null, + "due_date": "2020-09-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.21", + "balance": "1.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10772, + "quantity": 1, + "cost": 8.21, + "product_key": "voluptatem", + "notes": "Eaque omnis quis illum ullam quia. Est nam aut non. Et vitae consequatur assumenda. Qui et culpa cumque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10773, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0416", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-25", + "last_sent_date": null, + "due_date": "2020-04-29", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.74", + "balance": "3.27", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10773, + "quantity": 6, + "cost": 3.29, + "product_key": "modi", + "notes": "Saepe corrupti sed repudiandae nemo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10774, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0417", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-02", + "last_sent_date": null, + "due_date": "2020-04-12", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.17", + "balance": "3.24", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10774, + "quantity": 1, + "cost": 7.17, + "product_key": "nisi", + "notes": "Vero facere optio consectetur natus molestiae et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10775, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0418", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-19", + "last_sent_date": null, + "due_date": "2020-05-30", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.24", + "balance": "1.65", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10775, + "quantity": 1, + "cost": 5.24, + "product_key": "labore", + "notes": "Earum nostrum sit velit aut veniam. Natus aut aliquid est. Velit eligendi non ut. Eum eveniet doloribus qui nemo reiciendis eum non.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10776, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0419", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-04", + "last_sent_date": null, + "due_date": "2020-07-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "59.58", + "balance": "0.87", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10776, + "quantity": 9, + "cost": 6.62, + "product_key": "consequuntur", + "notes": "Delectus quam sit consectetur veritatis. Excepturi odio dolore eos laborum placeat. Eos iste illo numquam dolor id et eaque incidunt.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10777, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0420", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-10", + "last_sent_date": null, + "due_date": "2020-09-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "85.00", + "balance": "66.67", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10777, + "quantity": 10, + "cost": 8.5, + "product_key": "voluptas", + "notes": "Veritatis soluta quia dolorum voluptas laboriosam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10798, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0441", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-16", + "last_sent_date": null, + "due_date": "2020-06-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.76", + "balance": "3.51", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10798, + "quantity": 8, + "cost": 2.22, + "product_key": "aliquam", + "notes": "Consequatur laboriosam laudantium dolor et nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10799, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0442", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-03", + "last_sent_date": null, + "due_date": "2020-06-09", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.80", + "balance": "3.02", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10799, + "quantity": 1, + "cost": 5.8, + "product_key": "doloremque", + "notes": "Laborum deserunt ut voluptatem voluptas tenetur est ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10800, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0443", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-25", + "last_sent_date": null, + "due_date": "2020-04-21", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.16", + "balance": "3.51", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10800, + "quantity": 2, + "cost": 5.08, + "product_key": "nobis", + "notes": "Quae laboriosam maiores et illum iste. Modi qui nam ullam possimus. Laudantium officia enim similique impedit. Hic fuga laborum doloribus alias possimus dolores fugiat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10801, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0444", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-22", + "last_sent_date": null, + "due_date": "2020-08-17", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.94", + "balance": "6.83", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10801, + "quantity": 3, + "cost": 4.98, + "product_key": "aut", + "notes": "In consequatur consectetur tenetur fugiat iusto. Voluptatum vel recusandae autem repudiandae. Ullam culpa eos aut quaerat ab. Placeat rem dicta voluptate.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10802, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0445", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-15", "last_sent_date": null, "due_date": "2020-04-22", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -134324,22 +18635,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "8.10", - "balance": "8.10", - "partial": null, + "amount": "31.88", + "balance": "11.60", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 814, - "quantity": 3, - "cost": 2.7, - "product_key": "nisi", - "notes": "Non architecto quia quidem odit soluta. Deleniti sequi officiis nisi nobis. Totam distinctio dolorum quia.", + "id": 10802, + "quantity": 4, + "cost": 7.97, + "product_key": "consectetur", + "notes": "Nisi est architecto quo deserunt corporis.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:32.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -134348,50 +18663,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 799, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 799, - "key": "8fsqjfcqhp6pyx5a2vvqaitiutr4pycq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 800, - "client_id": 16, + "id": 10803, + "client_id": 64, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0799", + "number": "0446", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-03-15", + "date": "2020-07-17", "last_sent_date": null, - "due_date": "2020-01-17", + "due_date": "2020-07-30", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -134400,22 +18694,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "1.93", - "balance": "1.93", - "partial": null, + "amount": "28.64", + "balance": "1.14", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 815, - "quantity": 1, - "cost": 1.93, - "product_key": "inventore", - "notes": "Quas quam omnis modi sed. Accusantium iusto mollitia ducimus eius quo ut libero. In saepe at sequi tenetur dolorum.", + "id": 10803, + "quantity": 4, + "cost": 7.16, + "product_key": "sint", + "notes": "Fugiat reprehenderit quo culpa. Soluta ut qui quia. Aut et odit et non ut sed sed.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:32.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -134424,50 +18722,10600 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 800, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 800, - "key": "bz4wcuidagz4oxioxvkfbgkq1dllbehs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 801, - "client_id": 16, + "id": 10804, + "client_id": 64, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 3, "design_id": 1, - "number": "0800", + "number": "0447", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-26", + "date": "2020-05-12", + "last_sent_date": null, + "due_date": "2020-08-21", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.34", + "balance": "3.17", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10804, + "quantity": 6, + "cost": 1.39, + "product_key": "et", + "notes": "Eos animi labore voluptatibus velit rem fugit aut. Laborum unde quo est quod eum possimus. At quisquam non ullam architecto at. Velit enim at vero a veniam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10805, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0448", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-09", + "last_sent_date": null, + "due_date": "2020-06-06", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.46", + "balance": "6.01", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10805, + "quantity": 2, + "cost": 3.73, + "product_key": "quas", + "notes": "Saepe distinctio fugit eum eius harum animi. In cum dolorem eum velit dolor non. Ut vel vel dolor modi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10806, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0449", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-18", + "last_sent_date": null, + "due_date": "2020-08-18", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.54", + "balance": "0.59", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10806, + "quantity": 2, + "cost": 2.27, + "product_key": "occaecati", + "notes": "Quae repudiandae harum iusto est. Rerum autem consequatur eligendi voluptas est vel. Sint ipsa officiis eaque commodi pariatur tempore. Ipsum necessitatibus eos est et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10807, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0450", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-20", + "last_sent_date": null, + "due_date": "2020-04-21", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "36.30", + "balance": "11.79", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10807, + "quantity": 5, + "cost": 7.26, + "product_key": "ut", + "notes": "Ipsam aut iusto qui et. Neque numquam doloremque quos ducimus quibusdam esse.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10808, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0451", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-06", + "last_sent_date": null, + "due_date": "2020-09-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.74", + "balance": "0.38", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10808, + "quantity": 2, + "cost": 9.37, + "product_key": "sint", + "notes": "Cupiditate sunt libero temporibus id ab amet et. Iste commodi repellendus laborum earum ut commodi vel temporibus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10809, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0452", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-27", + "last_sent_date": null, + "due_date": "2020-09-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.45", + "balance": "6.01", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10809, + "quantity": 5, + "cost": 4.49, + "product_key": "architecto", + "notes": "Repudiandae earum modi molestias similique et. Tempora quod architecto dolore eum. Nulla sed dolor est aut non officia qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10810, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0453", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-31", + "last_sent_date": null, + "due_date": "2020-07-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "52.20", + "balance": "48.37", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10810, + "quantity": 6, + "cost": 8.7, + "product_key": "praesentium", + "notes": "Eos at culpa non. Sed eum est dolor repellat velit laudantium cum. Accusamus quis non facere quos beatae ut officia. Facere optio adipisci corrupti quaerat labore impedit soluta.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10811, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0454", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-25", + "last_sent_date": null, + "due_date": "2020-04-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "70.92", + "balance": "60.03", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10811, + "quantity": 9, + "cost": 7.88, + "product_key": "ut", + "notes": "Ut quo pariatur enim adipisci. Odit quibusdam sint ut qui unde aut delectus. Quo asperiores quos nobis dolores. Facilis fugiat aperiam hic consequuntur possimus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10812, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0455", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-19", + "last_sent_date": null, + "due_date": "2020-03-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.96", + "balance": "7.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10812, + "quantity": 7, + "cost": 1.28, + "product_key": "distinctio", + "notes": "Quia esse labore cum totam. Molestiae qui consequatur et porro omnis ut laudantium. Vel nam rerum sed sapiente inventore veritatis aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10813, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0456", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-16", + "last_sent_date": null, + "due_date": "2020-08-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "52.50", + "balance": "38.62", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10813, + "quantity": 10, + "cost": 5.25, + "product_key": "et", + "notes": "Quidem dignissimos aut sunt quaerat. Nisi qui omnis quo sapiente illum. Quo delectus debitis iste aut atque quam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10814, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0457", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-25", + "last_sent_date": null, + "due_date": "2020-04-17", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.70", + "balance": "2.37", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10814, + "quantity": 2, + "cost": 9.35, + "product_key": "nobis", + "notes": "Dolorem doloribus beatae nihil qui perspiciatis quas qui. In suscipit quisquam sint consequuntur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10815, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0458", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-24", + "last_sent_date": null, + "due_date": "2020-04-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "37.05", + "balance": "18.33", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10815, + "quantity": 5, + "cost": 7.41, + "product_key": "quasi", + "notes": "Omnis expedita deserunt modi sunt. Qui repellat non omnis molestias. Occaecati qui qui consequatur delectus atque. Quisquam et aut provident voluptates quisquam voluptate quasi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10816, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0459", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-27", + "last_sent_date": null, + "due_date": "2020-08-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.72", + "balance": "24.17", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10816, + "quantity": 4, + "cost": 8.68, + "product_key": "non", + "notes": "Laborum rerum et sed deserunt animi. Sint saepe vero exercitationem libero libero. Vel quia consequatur animi velit dolores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10817, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0460", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-12", + "last_sent_date": null, + "due_date": "2020-05-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.72", + "balance": "1.42", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10817, + "quantity": 9, + "cost": 1.08, + "product_key": "illo", + "notes": "Debitis aliquam pariatur harum esse porro.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10838, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0481", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-12", + "last_sent_date": null, + "due_date": "2020-05-24", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.44", + "balance": "0.66", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10838, + "quantity": 4, + "cost": 1.11, + "product_key": "odit", + "notes": "Voluptatem sunt nisi et. Quaerat quia autem labore tempore. Ab pariatur optio suscipit impedit perspiciatis illum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10839, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0482", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-23", + "last_sent_date": null, + "due_date": "2020-04-13", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "54.72", + "balance": "43.47", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10839, + "quantity": 8, + "cost": 6.84, + "product_key": "modi", + "notes": "Dolorum eos unde fugit sit aliquid enim. Fugiat et architecto quidem possimus odio eos. Occaecati quia autem aperiam autem id magni. Facere aut rerum eius fuga.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10840, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0483", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-17", + "last_sent_date": null, + "due_date": "2020-08-13", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "71.28", + "balance": "24.39", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10840, + "quantity": 9, + "cost": 7.92, + "product_key": "dolor", + "notes": "Quia suscipit corrupti magnam minima qui possimus nihil. At eaque consequuntur non sequi exercitationem. Quod esse et dolores dolorum iure. Quibusdam qui consequatur est aliquid nostrum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10841, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0484", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-09", + "last_sent_date": null, + "due_date": "2020-08-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "44.08", + "balance": "42.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10841, + "quantity": 8, + "cost": 5.51, + "product_key": "ut", + "notes": "Facilis iure id natus quia et sequi ut itaque. Eum eligendi culpa hic ducimus aliquam et. Nam qui recusandae inventore aut amet. Odio facere sit eveniet repudiandae omnis ea praesentium quia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10842, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0485", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-19", + "last_sent_date": null, + "due_date": "2020-10-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "21.12", + "balance": "17.27", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10842, + "quantity": 3, + "cost": 7.04, + "product_key": "in", + "notes": "Est natus et ad veritatis dolorem quis ullam sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10843, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0486", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-28", + "last_sent_date": null, + "due_date": "2020-05-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.90", + "balance": "7.54", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10843, + "quantity": 5, + "cost": 2.78, + "product_key": "iusto", + "notes": "Molestiae excepturi quos quidem reiciendis eveniet quae. Sint veritatis facere et velit accusantium sit ipsa molestias.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10844, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0487", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-11", + "last_sent_date": null, + "due_date": "2020-07-29", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.90", + "balance": "11.27", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10844, + "quantity": 5, + "cost": 2.58, + "product_key": "tempore", + "notes": "Esse quasi ut totam occaecati. A est ratione voluptate maiores omnis. Porro quis aut nihil saepe maiores deleniti.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10845, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0488", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-11", + "last_sent_date": null, + "due_date": "2020-06-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.98", + "balance": "14.96", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10845, + "quantity": 6, + "cost": 4.83, + "product_key": "culpa", + "notes": "Asperiores incidunt iure autem ex. Atque voluptas rem impedit dolores nemo quo ad. Veniam ut vitae placeat maxime ullam tempora libero. Enim voluptas inventore omnis quidem occaecati.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10846, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0489", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-04", + "last_sent_date": null, + "due_date": "2020-06-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.00", + "balance": "10.73", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10846, + "quantity": 10, + "cost": 1.2, + "product_key": "explicabo", + "notes": "Itaque vel nostrum accusamus doloremque autem at. Quia aut asperiores similique nesciunt ex vel. Placeat culpa beatae explicabo ipsam est asperiores. Ea eveniet ad repudiandae error rerum ut laborum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10847, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0490", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-13", + "last_sent_date": null, + "due_date": "2020-07-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "67.34", + "balance": "11.68", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10847, + "quantity": 7, + "cost": 9.62, + "product_key": "veniam", + "notes": "Et neque necessitatibus excepturi exercitationem similique non quasi. Distinctio veniam libero sit quaerat. Eius dolores sint quasi ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10848, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0491", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-09", + "last_sent_date": null, + "due_date": "2020-09-17", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.30", + "balance": "2.91", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10848, + "quantity": 1, + "cost": 3.3, + "product_key": "aut", + "notes": "Velit harum voluptatibus ab accusamus qui laborum. Corrupti omnis id sed nostrum est. Sed sed nesciunt qui consequatur corporis non.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10849, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0492", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-30", + "last_sent_date": null, + "due_date": "2020-06-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "32.88", + "balance": "19.73", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10849, + "quantity": 6, + "cost": 5.48, + "product_key": "facilis", + "notes": "Dolore sunt fuga libero. Dicta nihil et quam molestiae laboriosam. Voluptatum porro quia quos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10850, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0493", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-18", + "last_sent_date": null, + "due_date": "2020-05-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "1.03", + "balance": "0.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10850, + "quantity": 1, + "cost": 1.03, + "product_key": "error", + "notes": "Quasi dolor earum delectus perspiciatis sed. Sed et aliquam modi ratione praesentium placeat ipsa. Quia saepe optio facilis qui id.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10851, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0494", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-18", + "last_sent_date": null, + "due_date": "2020-04-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.37", + "balance": "6.09", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10851, + "quantity": 3, + "cost": 7.79, + "product_key": "nihil", + "notes": "Et consequuntur atque vero perferendis animi commodi. Culpa quam praesentium dolor qui eos necessitatibus natus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10852, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0495", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-23", "last_sent_date": null, "due_date": "2020-05-29", "uses_inclusive_taxes": 0, "is_deleted": 0, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "31.10", + "balance": "30.34", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10852, + "quantity": 5, + "cost": 6.22, + "product_key": "et", + "notes": "Velit numquam tempore aperiam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10853, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0496", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-14", + "last_sent_date": null, + "due_date": "2020-06-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.22", + "balance": "10.16", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10853, + "quantity": 7, + "cost": 1.46, + "product_key": "eum", + "notes": "Delectus praesentium cupiditate doloremque sunt aut commodi nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10854, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0497", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-06", + "last_sent_date": null, + "due_date": "2020-04-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "49.65", + "balance": "9.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10854, + "quantity": 5, + "cost": 9.93, + "product_key": "sit", + "notes": "Omnis ex et libero asperiores. Officia facilis nesciunt qui et perferendis magni. Rerum perferendis officiis iste sint dignissimos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10855, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0498", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-14", + "last_sent_date": null, + "due_date": "2020-04-25", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "84.90", + "balance": "34.09", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10855, + "quantity": 10, + "cost": 8.49, + "product_key": "illo", + "notes": "Eos consectetur quia non repudiandae eos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10856, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0499", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-26", + "last_sent_date": null, + "due_date": "2020-06-12", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "50.58", + "balance": "11.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10856, + "quantity": 6, + "cost": 8.43, + "product_key": "quo", + "notes": "Excepturi asperiores dolor eveniet. Blanditiis rerum sit commodi pariatur quo et et debitis. Non et molestiae sit esse ut provident. Aut consequatur voluptatum tempore accusantium earum sit fugiat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10857, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0500", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-19", + "last_sent_date": null, + "due_date": "2020-06-15", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.76", + "balance": "0.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10857, + "quantity": 4, + "cost": 1.69, + "product_key": "est", + "notes": "Mollitia aut aut eos qui laborum ipsum cumque. Nihil eum possimus soluta reprehenderit saepe.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10878, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0521", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-03", + "last_sent_date": null, + "due_date": "2020-07-31", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "27.84", + "balance": "7.12", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10878, + "quantity": 6, + "cost": 4.64, + "product_key": "illo", + "notes": "Fugit magni ut nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10879, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0522", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-31", + "last_sent_date": null, + "due_date": "2020-08-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "32.70", + "balance": "21.08", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10879, + "quantity": 10, + "cost": 3.27, + "product_key": "dolores", + "notes": "Eveniet impedit ut sunt tempore qui laudantium. Sequi ea eius et eius. Quos dolores qui animi similique.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10880, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0523", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-24", + "last_sent_date": null, + "due_date": "2020-08-25", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "92.20", + "balance": "23.79", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10880, + "quantity": 10, + "cost": 9.22, + "product_key": "necessitatibus", + "notes": "Cumque alias sunt iure totam maiores. Eius tempora voluptatem rerum sunt. Quaerat sint omnis ipsam natus aspernatur voluptas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10881, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0524", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-27", + "last_sent_date": null, + "due_date": "2020-06-17", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "29.85", + "balance": "15.73", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10881, + "quantity": 3, + "cost": 9.95, + "product_key": "et", + "notes": "Officiis recusandae saepe qui enim dignissimos. Velit tempore temporibus sed ducimus excepturi dolorem amet.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10882, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0525", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-14", + "last_sent_date": null, + "due_date": "2020-04-29", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.36", + "balance": "11.89", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10882, + "quantity": 8, + "cost": 3.17, + "product_key": "voluptatibus", + "notes": "Voluptatem alias qui architecto. Saepe est nostrum perferendis voluptatem. Quasi magni error voluptas consequatur qui vel. Voluptatibus atque facilis sed tenetur veniam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10883, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0526", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-24", + "last_sent_date": null, + "due_date": "2020-06-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.14", + "balance": "7.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10883, + "quantity": 2, + "cost": 5.57, + "product_key": "rerum", + "notes": "Consectetur eos ut reiciendis impedit dolorem dicta sunt sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10884, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0527", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-21", + "last_sent_date": null, + "due_date": "2020-05-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.67", + "balance": "0.96", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10884, + "quantity": 1, + "cost": 9.67, + "product_key": "tenetur", + "notes": "Ea quod magnam quidem enim nemo laborum. Quae et nemo veniam. Consequatur corporis maiores modi alias quia qui animi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10885, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0528", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-22", + "last_sent_date": null, + "due_date": "2020-04-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.80", + "balance": "3.39", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10885, + "quantity": 8, + "cost": 3.6, + "product_key": "qui", + "notes": "Quo aut accusamus est iure. Dicta deserunt soluta amet. Sunt eos hic commodi quaerat beatae. Quas voluptate delectus sed iusto nam. Non repellat nesciunt cum quo repellendus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10886, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0529", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-27", + "last_sent_date": null, + "due_date": "2020-06-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "45.68", + "balance": "35.04", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10886, + "quantity": 8, + "cost": 5.71, + "product_key": "maxime", + "notes": "Optio odio maxime id. Quos cupiditate accusantium ratione quisquam nostrum et. Perspiciatis pariatur repellat itaque magni pariatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10887, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0530", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-25", + "last_sent_date": null, + "due_date": "2020-09-18", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.98", + "balance": "10.14", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10887, + "quantity": 2, + "cost": 5.49, + "product_key": "reprehenderit", + "notes": "Quibusdam deserunt itaque non et exercitationem voluptatem eum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10888, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0531", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-18", + "last_sent_date": null, + "due_date": "2020-07-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.52", + "balance": "6.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10888, + "quantity": 2, + "cost": 4.26, + "product_key": "soluta", + "notes": "Accusamus nostrum aut corporis. Eos nihil mollitia ea unde quas dolorem enim. Qui esse cumque exercitationem et numquam nisi at voluptatibus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10889, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0532", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-16", + "last_sent_date": null, + "due_date": "2020-04-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.24", + "balance": "12.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10889, + "quantity": 4, + "cost": 9.56, + "product_key": "est", + "notes": "Id inventore repellat et tenetur hic. Fuga a vitae blanditiis distinctio vitae eos neque. Fugit voluptatibus libero consequatur soluta dolores. Dolor placeat natus iusto quia dicta. Numquam quis commodi voluptas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10890, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0533", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-24", + "last_sent_date": null, + "due_date": "2020-04-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.96", + "balance": "2.47", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10890, + "quantity": 2, + "cost": 3.98, + "product_key": "eveniet", + "notes": "Earum temporibus neque quod veritatis et eligendi quis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10891, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0534", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-03", + "last_sent_date": null, + "due_date": "2020-07-26", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "2.36", + "balance": "1.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10891, + "quantity": 2, + "cost": 1.18, + "product_key": "ut", + "notes": "Omnis tenetur doloremque repudiandae. Omnis nisi sequi minus doloribus repellendus unde. Ea doloremque sint facere.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10892, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0535", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-01", + "last_sent_date": null, + "due_date": "2020-05-19", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.15", + "balance": "14.15", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10892, + "quantity": 5, + "cost": 3.43, + "product_key": "id", + "notes": "Esse debitis occaecati repudiandae sunt sed. Omnis ea dolorum voluptatibus consectetur qui porro. Beatae atque et labore qui labore ea. Ut et omnis aperiam eos ea aut est cupiditate.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10893, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0536", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-03", + "last_sent_date": null, + "due_date": "2020-06-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "50.40", + "balance": "37.24", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10893, + "quantity": 7, + "cost": 7.2, + "product_key": "eius", + "notes": "Minima asperiores et adipisci at. Est totam dolores omnis quas odit. Sit qui qui ipsa quod ipsum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10894, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0537", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-18", + "last_sent_date": null, + "due_date": "2020-05-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.06", + "balance": "4.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10894, + "quantity": 7, + "cost": 2.58, + "product_key": "soluta", + "notes": "Nihil est veniam facilis quod. Aut officia facilis reiciendis est repellendus illum. Omnis id quos ipsa veritatis asperiores. Corrupti voluptates sed ex voluptatum vitae dolorum dolor.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10895, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0538", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-17", + "last_sent_date": null, + "due_date": "2020-10-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "21.21", + "balance": "4.43", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10895, + "quantity": 7, + "cost": 3.03, + "product_key": "consequatur", + "notes": "Praesentium qui minus ducimus qui omnis officiis. Ut repellat doloribus nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10896, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0539", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-22", + "last_sent_date": null, + "due_date": "2020-04-26", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "51.52", + "balance": "12.92", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10896, + "quantity": 7, + "cost": 7.36, + "product_key": "consequatur", + "notes": "Ut autem voluptatem minus. Vel dolor eligendi ut itaque. Eaque illum impedit atque odit placeat quia dolore quaerat. Quia illo et eveniet enim.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10897, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0540", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-12", + "last_sent_date": null, + "due_date": "2020-03-30", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "39.24", + "balance": "36.08", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10897, + "quantity": 4, + "cost": 9.81, + "product_key": "cumque", + "notes": "Quo sapiente dolor expedita vel.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10918, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0561", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-19", + "last_sent_date": null, + "due_date": "2020-03-31", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.32", + "balance": "15.86", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10918, + "quantity": 4, + "cost": 5.83, + "product_key": "quaerat", + "notes": "Veniam ducimus doloremque minima voluptates et architecto. Quidem qui maiores voluptatibus rem dolore praesentium necessitatibus in. Voluptas dolorum inventore sunt non fuga et. Est et molestiae sed officia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10919, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0562", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-08", + "last_sent_date": null, + "due_date": "2020-05-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.65", + "balance": "15.41", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10919, + "quantity": 5, + "cost": 4.73, + "product_key": "expedita", + "notes": "Omnis perferendis commodi ex consectetur molestias qui. Rem error totam eos. Consequatur et ut et dolorem et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10920, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0563", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-22", + "last_sent_date": null, + "due_date": "2020-09-18", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.88", + "balance": "14.55", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10920, + "quantity": 4, + "cost": 3.72, + "product_key": "non", + "notes": "Repellendus ut quasi quia incidunt est impedit esse.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10921, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0564", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-11", + "last_sent_date": null, + "due_date": "2020-08-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.91", + "balance": "18.69", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10921, + "quantity": 3, + "cost": 6.97, + "product_key": "aspernatur", + "notes": "Facilis sint corporis esse qui provident tempore quo. Illo aut quia aspernatur et ea. Ea fugiat perspiciatis in voluptas sed ut. Nihil laboriosam in minus eum et perspiciatis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10922, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0565", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-05", + "last_sent_date": null, + "due_date": "2020-05-18", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.40", + "balance": "0.39", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10922, + "quantity": 5, + "cost": 6.88, + "product_key": "praesentium", + "notes": "Vero ut autem in quibusdam. Eius placeat nostrum consequatur. Similique qui quam nostrum voluptas odio. Error nihil dolore hic voluptatem recusandae quidem. Porro minima corrupti et quia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10923, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0566", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-25", + "last_sent_date": null, + "due_date": "2020-05-15", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "91.00", + "balance": "87.03", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10923, + "quantity": 10, + "cost": 9.1, + "product_key": "id", + "notes": "Ducimus minima non delectus laborum ipsa.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10924, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0567", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-15", + "last_sent_date": null, + "due_date": "2020-04-09", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "27.00", + "balance": "0.55", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10924, + "quantity": 5, + "cost": 5.4, + "product_key": "sint", + "notes": "Harum in molestiae autem molestiae autem sunt. Minus sunt eaque fugiat dignissimos ut nihil. Aliquam minima deleniti totam quo et. Et et fuga fugiat aut et iusto.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10925, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0568", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-31", + "last_sent_date": null, + "due_date": "2020-08-31", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "1.96", + "balance": "0.94", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10925, + "quantity": 1, + "cost": 1.96, + "product_key": "debitis", + "notes": "Et animi nobis et possimus architecto. Non nostrum expedita deleniti id.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10926, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0569", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-05", + "last_sent_date": null, + "due_date": "2020-09-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "26.60", + "balance": "0.78", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10926, + "quantity": 10, + "cost": 2.66, + "product_key": "rerum", + "notes": "Unde rerum aliquam accusantium voluptas. Ut corporis ut illum saepe impedit illo consequatur officia. Ea velit soluta a est. In neque aliquam non.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10927, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0570", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-21", + "last_sent_date": null, + "due_date": "2020-06-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.49", + "balance": "13.61", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10927, + "quantity": 3, + "cost": 6.83, + "product_key": "nobis", + "notes": "Et voluptatum consequuntur ut distinctio.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10928, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0571", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-03", + "last_sent_date": null, + "due_date": "2020-04-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.83", + "balance": "19.43", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10928, + "quantity": 7, + "cost": 3.69, + "product_key": "quis", + "notes": "Voluptas harum et aliquid architecto distinctio temporibus. Eos praesentium tempore autem consequatur perferendis officiis. Quasi molestias consequatur perspiciatis et necessitatibus sit libero officia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10929, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0572", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-20", + "last_sent_date": null, + "due_date": "2020-08-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "26.60", + "balance": "9.62", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10929, + "quantity": 7, + "cost": 3.8, + "product_key": "fugit", + "notes": "Sint voluptatem eligendi nostrum minus. Harum odit et qui qui vel. Facere dicta omnis suscipit facilis inventore dolor pariatur. Reprehenderit deleniti optio neque architecto incidunt illum vitae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10930, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0573", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-21", + "last_sent_date": null, + "due_date": "2020-05-21", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "60.30", + "balance": "52.85", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10930, + "quantity": 10, + "cost": 6.03, + "product_key": "sed", + "notes": "Reprehenderit consectetur quidem qui modi id sit optio. Quasi qui harum officia ipsum consequatur minus. Nihil culpa blanditiis unde aperiam. Assumenda optio numquam rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10931, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0574", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-04", + "last_sent_date": null, + "due_date": "2020-04-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "68.20", + "balance": "20.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10931, + "quantity": 10, + "cost": 6.82, + "product_key": "natus", + "notes": "Autem autem doloribus qui sunt veritatis fugit optio. Quidem est doloremque distinctio eum labore dignissimos. Velit vero rem quas omnis aliquid quaerat quas. Est id et necessitatibus repellendus nesciunt commodi vitae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10932, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0575", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-20", + "last_sent_date": null, + "due_date": "2020-09-12", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "57.40", + "balance": "5.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10932, + "quantity": 7, + "cost": 8.2, + "product_key": "quas", + "notes": "Sit odio sed distinctio tenetur excepturi consequatur. Nobis labore nostrum delectus. Dolores dolores eos odio voluptatem voluptatem. Amet sit nostrum error aut non nemo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10933, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0576", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-20", + "last_sent_date": null, + "due_date": "2020-07-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.44", + "balance": "0.22", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10933, + "quantity": 2, + "cost": 2.22, + "product_key": "sed", + "notes": "Ut illum nam unde culpa accusantium quod mollitia. Sunt quasi eos asperiores. Et aliquid voluptas sint iure. Enim aut velit numquam aperiam eveniet vitae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10934, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0577", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-15", + "last_sent_date": null, + "due_date": "2020-08-14", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.80", + "balance": "27.15", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10934, + "quantity": 9, + "cost": 3.2, + "product_key": "aspernatur", + "notes": "Beatae cum soluta fugiat facilis eveniet est magnam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10935, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0578", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-09", + "last_sent_date": null, + "due_date": "2020-08-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.80", + "balance": "7.23", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10935, + "quantity": 6, + "cost": 2.3, + "product_key": "laborum", + "notes": "Adipisci similique alias in omnis. Ab totam adipisci velit laboriosam ex. Similique ipsa iure rerum autem quos cum accusantium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10936, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0579", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-05", + "last_sent_date": null, + "due_date": "2020-07-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.42", + "balance": "7.24", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10936, + "quantity": 2, + "cost": 7.71, + "product_key": "quis", + "notes": "Recusandae rerum doloribus et eveniet ex exercitationem. Maxime veritatis rerum labore. Omnis eum earum aut placeat sunt velit. Consequatur tenetur et quis est reprehenderit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10937, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0580", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-03", + "last_sent_date": null, + "due_date": "2020-05-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.50", + "balance": "7.67", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10937, + "quantity": 10, + "cost": 2.05, + "product_key": "cumque", + "notes": "Vitae animi debitis tempora consequatur. Aut quo deleniti qui libero pariatur voluptatum tenetur. Sit incidunt suscipit sit maiores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10958, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0601", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-26", + "last_sent_date": null, + "due_date": "2020-03-24", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "77.44", + "balance": "65.03", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10958, + "quantity": 8, + "cost": 9.68, + "product_key": "vitae", + "notes": "Vero sint natus impedit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10959, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0602", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-03", + "last_sent_date": null, + "due_date": "2020-05-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.18", + "balance": "5.25", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10959, + "quantity": 7, + "cost": 1.74, + "product_key": "provident", + "notes": "Modi itaque tenetur mollitia assumenda quia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10960, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0603", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-05", + "last_sent_date": null, + "due_date": "2020-04-12", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.52", + "balance": "1.66", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10960, + "quantity": 2, + "cost": 8.76, + "product_key": "ipsa", + "notes": "Perferendis mollitia et nemo soluta reiciendis porro qui nulla.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10961, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0604", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-09", + "last_sent_date": null, + "due_date": "2020-07-26", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "85.60", + "balance": "39.30", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10961, + "quantity": 10, + "cost": 8.56, + "product_key": "esse", + "notes": "Quia voluptas aut qui. Et sint tenetur occaecati odio. Eius fugiat dicta fuga similique ex. Ut iure ipsam facilis enim. Non minima accusamus vel. Aliquam soluta ad quidem sit. Et suscipit ut aut culpa debitis vel iste earum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10962, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0605", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-30", + "last_sent_date": null, + "due_date": "2020-08-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.81", + "balance": "2.84", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10962, + "quantity": 1, + "cost": 3.81, + "product_key": "dolore", + "notes": "Voluptas qui vel et ratione. Ratione sed aut voluptate similique corrupti quidem. Amet et iste corporis error laboriosam. Alias autem rerum voluptates voluptatum facere ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10963, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0606", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-08", + "last_sent_date": null, + "due_date": "2020-08-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.54", + "balance": "39.01", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10963, + "quantity": 6, + "cost": 7.09, + "product_key": "porro", + "notes": "Illo sit porro fugit illum. Sunt aliquam non voluptatibus asperiores expedita non quisquam. Quisquam a voluptates ut quam corrupti eius rem. Temporibus quo amet corrupti nobis veniam id.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10964, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0607", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-30", + "last_sent_date": null, + "due_date": "2020-06-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.10", + "balance": "3.86", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10964, + "quantity": 10, + "cost": 2.31, + "product_key": "totam", + "notes": "Maiores voluptatem consectetur distinctio ut earum voluptatem. Illum deleniti provident quia cumque. Voluptatibus sit architecto maxime ab quia qui. Omnis culpa asperiores assumenda distinctio eum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10965, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0608", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-31", + "last_sent_date": null, + "due_date": "2020-10-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "2.00", + "balance": "1.43", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10965, + "quantity": 2, + "cost": 1, + "product_key": "animi", + "notes": "Libero id quia eum numquam aut perspiciatis excepturi neque. Ab ut consectetur sed nostrum. Nesciunt earum voluptates minus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10966, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0609", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-01", + "last_sent_date": null, + "due_date": "2020-05-13", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "31.59", + "balance": "9.19", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10966, + "quantity": 9, + "cost": 3.51, + "product_key": "fuga", + "notes": "Aut excepturi corrupti quo cumque. Quidem dicta praesentium distinctio. Accusantium similique quia magni facilis. Minima deserunt ducimus quos amet hic nesciunt quas. Qui excepturi distinctio veniam. Sunt voluptates atque suscipit omnis quaerat mollitia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10967, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0610", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-26", + "last_sent_date": null, + "due_date": "2020-05-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.76", + "balance": "5.74", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10967, + "quantity": 6, + "cost": 6.46, + "product_key": "ipsa", + "notes": "Et sapiente quidem quos amet velit earum. Non officiis et voluptas eius corporis qui. Aspernatur voluptatem ea nostrum enim a alias asperiores non. Est consectetur possimus maxime deleniti. Error quidem voluptate sed aut suscipit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10968, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0611", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-18", + "last_sent_date": null, + "due_date": "2020-09-24", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "39.90", + "balance": "20.83", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10968, + "quantity": 5, + "cost": 7.98, + "product_key": "architecto", + "notes": "Rerum quidem rerum perferendis vel cupiditate. Et nulla minus facere ipsa. Nisi perspiciatis in id aut rem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10969, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0612", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-24", + "last_sent_date": null, + "due_date": "2020-07-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "61.46", + "balance": "12.26", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10969, + "quantity": 7, + "cost": 8.78, + "product_key": "dolorum", + "notes": "Provident sunt perspiciatis perspiciatis et soluta neque. Omnis repellat voluptatem laborum nostrum. Et quidem laudantium maxime iste hic enim possimus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10970, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0613", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-06", + "last_sent_date": null, + "due_date": "2020-09-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.04", + "balance": "1.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10970, + "quantity": 3, + "cost": 1.68, + "product_key": "quisquam", + "notes": "Eos architecto quod adipisci. Voluptas omnis est aut sunt iusto sit. Aut animi quia sunt et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10971, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0614", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-07", + "last_sent_date": null, + "due_date": "2020-04-28", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "56.52", + "balance": "51.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10971, + "quantity": 9, + "cost": 6.28, + "product_key": "aut", + "notes": "Voluptas tempore magnam repellat perspiciatis. Quas ipsa beatae nostrum autem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10972, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0615", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-20", + "last_sent_date": null, + "due_date": "2020-05-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.43", + "balance": "34.04", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10972, + "quantity": 9, + "cost": 4.27, + "product_key": "nostrum", + "notes": "Quae at doloribus doloribus earum natus quia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10973, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0616", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-10", + "last_sent_date": null, + "due_date": "2020-07-31", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.84", + "balance": "1.43", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10973, + "quantity": 4, + "cost": 3.21, + "product_key": "iusto", + "notes": "Consequuntur et voluptatem iure sunt praesentium. Animi est aperiam qui cum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10974, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0617", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-25", + "last_sent_date": null, + "due_date": "2020-04-15", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.78", + "balance": "3.91", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10974, + "quantity": 3, + "cost": 2.26, + "product_key": "omnis", + "notes": "Natus deserunt dolor earum quidem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10975, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0618", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-18", + "last_sent_date": null, + "due_date": "2020-09-13", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.10", + "balance": "1.76", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10975, + "quantity": 6, + "cost": 1.85, + "product_key": "repellendus", + "notes": "Velit illo cum rerum quidem necessitatibus nihil. Enim provident et illo non rerum eius.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10976, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0619", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-10", + "last_sent_date": null, + "due_date": "2020-04-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "27.27", + "balance": "6.69", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10976, + "quantity": 9, + "cost": 3.03, + "product_key": "cum", + "notes": "Ipsa et esse et ut illum et quis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10977, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0620", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-31", + "last_sent_date": null, + "due_date": "2020-09-30", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.37", + "balance": "3.97", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10977, + "quantity": 1, + "cost": 9.37, + "product_key": "expedita", + "notes": "Molestiae sit asperiores et enim. Eos excepturi sint et ut odio dicta eveniet. Consequatur est et animi aliquid illo. Ab a magni quis aut enim. Sed nostrum qui vero omnis temporibus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10998, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0641", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-06", + "last_sent_date": null, + "due_date": "2020-04-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "36.32", + "balance": "11.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10998, + "quantity": 8, + "cost": 4.54, + "product_key": "quam", + "notes": "Dicta exercitationem rerum saepe et. Omnis reprehenderit nulla culpa. Laudantium eos amet voluptatum magni corrupti sequi. Et nam fuga et assumenda.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10999, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0642", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-30", + "last_sent_date": null, + "due_date": "2020-07-10", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.25", + "balance": "4.69", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10999, + "quantity": 1, + "cost": 8.25, + "product_key": "nesciunt", + "notes": "Sequi tempore voluptas pariatur dolorum et. Maiores est aut dolore esse quam eius rerum. Mollitia occaecati quod non cumque error voluptas quia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11000, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0643", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-29", + "last_sent_date": null, + "due_date": "2020-06-17", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.15", + "balance": "1.51", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11000, + "quantity": 3, + "cost": 1.05, + "product_key": "molestiae", + "notes": "Ullam quos qui odit eos occaecati. Cum rem sint omnis. Libero qui non sint voluptatem dolor nam beatae. Reiciendis earum saepe quo dolorem ratione.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11001, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0644", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-23", + "last_sent_date": null, + "due_date": "2020-05-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "36.64", + "balance": "6.96", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11001, + "quantity": 4, + "cost": 9.16, + "product_key": "aut", + "notes": "Architecto vel quasi animi. Rem repellendus occaecati magnam facere non ipsum ut. Sed temporibus id fuga ducimus. Pariatur molestiae necessitatibus voluptatem perspiciatis delectus ex.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11002, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0645", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-24", + "last_sent_date": null, + "due_date": "2020-06-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "31.20", + "balance": "20.54", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11002, + "quantity": 8, + "cost": 3.9, + "product_key": "iusto", + "notes": "Sed veniam aut et commodi. Consequatur non architecto aliquam aut autem porro necessitatibus facere. Rerum nobis dolorem vel dolore nihil. Ut consequuntur placeat alias nihil illo voluptatem aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11003, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0646", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-26", + "last_sent_date": null, + "due_date": "2020-09-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.00", + "balance": "11.23", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11003, + "quantity": 5, + "cost": 3.6, + "product_key": "commodi", + "notes": "Saepe sapiente quia aspernatur molestiae. Adipisci magni ex sunt qui error. Excepturi nihil totam ut quia repellendus commodi omnis dolorum. In vel iusto illo debitis quidem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11004, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0647", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-03", + "last_sent_date": null, + "due_date": "2020-05-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.96", + "balance": "6.78", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11004, + "quantity": 4, + "cost": 2.74, + "product_key": "maxime", + "notes": "Consequuntur quia ipsa sapiente ab iure et. Quo et rem et eligendi omnis ut ducimus omnis. Est laboriosam ipsum et a numquam sed. Consequuntur odio accusamus quisquam fuga vel veniam delectus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11005, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0648", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-01", + "last_sent_date": null, + "due_date": "2020-06-14", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "75.10", + "balance": "9.83", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11005, + "quantity": 10, + "cost": 7.51, + "product_key": "eos", + "notes": "Quisquam alias quod et corporis perferendis. Est dolorum dolores quia ut exercitationem necessitatibus. Fugiat occaecati qui minus sed fuga dignissimos. Dignissimos aut voluptas reprehenderit dolor quaerat non. In asperiores qui fuga maiores reprehenderit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11006, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0649", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-27", + "last_sent_date": null, + "due_date": "2020-09-09", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "66.08", + "balance": "36.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11006, + "quantity": 7, + "cost": 9.44, + "product_key": "rerum", + "notes": "Fuga dolor enim similique ab. Molestiae maiores ut a.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11007, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0650", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-20", + "last_sent_date": null, + "due_date": "2020-06-26", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "27.99", + "balance": "10.55", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11007, + "quantity": 3, + "cost": 9.33, + "product_key": "ut", + "notes": "Recusandae cumque esse officia et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11008, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0651", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-11", + "last_sent_date": null, + "due_date": "2020-08-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.38", + "balance": "33.84", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11008, + "quantity": 6, + "cost": 5.73, + "product_key": "architecto", + "notes": "Tempora architecto earum eum aspernatur tempore est in veritatis. Sit aut quos eum omnis. Voluptate amet alias illo asperiores blanditiis laudantium numquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11009, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0652", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-15", + "last_sent_date": null, + "due_date": "2020-08-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.23", + "balance": "5.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11009, + "quantity": 1, + "cost": 9.23, + "product_key": "dignissimos", + "notes": "Consequatur sapiente ad ea ea. Quos aliquid maiores similique et. Velit magnam non ut in modi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11010, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0653", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-14", + "last_sent_date": null, + "due_date": "2020-08-13", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "60.48", + "balance": "38.28", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11010, + "quantity": 7, + "cost": 8.64, + "product_key": "molestias", + "notes": "Sit in sed eveniet vel et ea consequuntur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11011, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0654", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-15", + "last_sent_date": null, + "due_date": "2020-03-25", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "55.20", + "balance": "38.85", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11011, + "quantity": 8, + "cost": 6.9, + "product_key": "temporibus", + "notes": "Aut amet sed aut maxime voluptas blanditiis. Magni facere architecto tempora quod.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11012, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0655", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-27", + "last_sent_date": null, + "due_date": "2020-06-29", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "43.00", + "balance": "38.14", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11012, + "quantity": 10, + "cost": 4.3, + "product_key": "et", + "notes": "Et consectetur quo non corporis. Quae quo dignissimos vero minus. Velit modi in qui accusamus sint corrupti id. Earum quod nulla eos perspiciatis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11013, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0656", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-28", + "last_sent_date": null, + "due_date": "2020-08-17", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.44", + "balance": "2.67", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11013, + "quantity": 2, + "cost": 9.22, + "product_key": "earum", + "notes": "Accusamus distinctio voluptas odit occaecati possimus et quidem. Nobis cumque sunt repellendus voluptate ut quisquam omnis accusantium. Reiciendis vel odit commodi ex qui ipsum itaque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11014, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0657", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-25", + "last_sent_date": null, + "due_date": "2020-09-04", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "2.01", + "balance": "0.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11014, + "quantity": 1, + "cost": 2.01, + "product_key": "vitae", + "notes": "Eligendi sunt autem quidem debitis aliquid suscipit. Minima sunt ad et voluptatem alias ad. Quia minima earum sequi dolorum alias. Enim molestiae explicabo quia ratione rem delectus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11015, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0658", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-10", + "last_sent_date": null, + "due_date": "2020-08-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "41.60", + "balance": "36.49", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11015, + "quantity": 5, + "cost": 8.32, + "product_key": "dolore", + "notes": "Quod aspernatur repellat quia dicta nemo. Incidunt quisquam excepturi consequatur dicta maiores vero placeat. Aut perferendis animi maiores. Libero unde eaque fugit cumque corrupti.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11016, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0659", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-25", + "last_sent_date": null, + "due_date": "2020-09-15", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "40.08", + "balance": "32.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11016, + "quantity": 8, + "cost": 5.01, + "product_key": "autem", + "notes": "Sed sequi voluptatum ut doloribus mollitia a.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11017, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0660", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-07", + "last_sent_date": null, + "due_date": "2020-09-25", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.28", + "balance": "9.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11017, + "quantity": 8, + "cost": 2.16, + "product_key": "pariatur", + "notes": "Aut rerum distinctio laborum minima a est ipsum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11038, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0681", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-18", + "last_sent_date": null, + "due_date": "2020-04-14", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.12", + "balance": "0.94", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11038, + "quantity": 4, + "cost": 2.28, + "product_key": "ipsum", + "notes": "Tenetur vitae eos corporis earum eum. Qui totam modi quisquam illo voluptas. Recusandae magnam consequatur quaerat rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11039, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0682", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-07", + "last_sent_date": null, + "due_date": "2020-08-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "39.41", + "balance": "5.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11039, + "quantity": 7, + "cost": 5.63, + "product_key": "aut", + "notes": "Et ut laudantium doloremque hic ipsam. Dolorum eos quia quas commodi error qui nulla. Aut odio cum repellat incidunt. Molestiae incidunt necessitatibus iure et voluptates voluptatem ullam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11040, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0683", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-14", + "last_sent_date": null, + "due_date": "2020-09-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.68", + "balance": "3.62", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11040, + "quantity": 1, + "cost": 5.68, + "product_key": "assumenda", + "notes": "Dicta consectetur nisi vel nostrum officiis. Ut ut modi eligendi voluptatem accusantium ipsa tenetur rem. Non et rem praesentium deserunt sed repudiandae qui. Deserunt atque consequatur iure accusamus ipsa ipsum est.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11041, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0684", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-29", + "last_sent_date": null, + "due_date": "2020-10-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.70", + "balance": "39.26", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11041, + "quantity": 7, + "cost": 6.1, + "product_key": "quia", + "notes": "Vel temporibus molestiae est illum reiciendis similique sit. Ut explicabo inventore ipsa quia aut quia. Soluta esse rem placeat beatae et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11042, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0685", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-24", + "last_sent_date": null, + "due_date": "2020-05-20", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.96", + "balance": "0.68", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11042, + "quantity": 8, + "cost": 4.87, + "product_key": "nihil", + "notes": "Sapiente debitis sit amet facere odio. Aut veniam et consequuntur consequuntur est qui. Similique commodi odit non molestias ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11043, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0686", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-09", + "last_sent_date": null, + "due_date": "2020-03-29", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.16", + "balance": "3.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11043, + "quantity": 8, + "cost": 2.27, + "product_key": "nobis", + "notes": "Sed rerum iure quo tenetur assumenda.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11044, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0687", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-04", + "last_sent_date": null, + "due_date": "2020-07-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "31.41", + "balance": "25.65", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11044, + "quantity": 9, + "cost": 3.49, + "product_key": "voluptas", + "notes": "Voluptas consequuntur maiores sapiente placeat sed accusamus. Voluptates ut unde consequatur id sint. Sit omnis eaque at eaque. Quidem praesentium repudiandae adipisci necessitatibus cupiditate sint reprehenderit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11045, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0688", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-28", + "last_sent_date": null, + "due_date": "2020-05-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.95", + "balance": "6.91", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11045, + "quantity": 3, + "cost": 3.65, + "product_key": "ullam", + "notes": "Ea sunt assumenda consequatur aspernatur velit. Fugit tenetur laborum nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11046, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0689", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-29", + "last_sent_date": null, + "due_date": "2020-05-06", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.88", + "balance": "14.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11046, + "quantity": 3, + "cost": 5.96, + "product_key": "numquam", + "notes": "Et dolores consequatur aliquam dolorum mollitia et odio ea.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11047, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0690", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-27", + "last_sent_date": null, + "due_date": "2020-07-28", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "74.32", + "balance": "7.69", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11047, + "quantity": 8, + "cost": 9.29, + "product_key": "et", + "notes": "Tenetur error cupiditate ratione harum. Ex quos est modi consequatur culpa. Deserunt est eum sed molestiae soluta.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11048, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0691", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-15", + "last_sent_date": null, + "due_date": "2020-04-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "55.08", + "balance": "7.74", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11048, + "quantity": 6, + "cost": 9.18, + "product_key": "distinctio", + "notes": "Similique officiis consequatur quae magni quis. In dicta id minus quae ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11049, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0692", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-31", + "last_sent_date": null, + "due_date": "2020-05-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.28", + "balance": "9.26", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11049, + "quantity": 2, + "cost": 5.14, + "product_key": "amet", + "notes": "Atque aliquam sunt qui vel voluptatem laboriosam. Doloremque omnis ut non voluptatem deleniti. Sint voluptate sed ratione et. Ut et iure aut aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11050, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0693", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-22", + "last_sent_date": null, + "due_date": "2020-05-02", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.56", + "balance": "6.24", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11050, + "quantity": 2, + "cost": 5.78, + "product_key": "ea", + "notes": "Laboriosam sunt ab omnis magnam omnis ipsum. Ex dolores officiis doloremque iure atque quo enim.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11051, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0694", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-23", + "last_sent_date": null, + "due_date": "2020-08-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.52", + "balance": "3.05", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11051, + "quantity": 6, + "cost": 3.42, + "product_key": "similique", + "notes": "Eaque quae molestiae sit sint modi praesentium. Cum et est velit ullam nobis voluptatem eaque. Nam velit sed libero est. Quam eos est totam est vero quaerat optio fuga.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11052, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0695", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-03", + "last_sent_date": null, + "due_date": "2020-09-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.96", + "balance": "22.18", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11052, + "quantity": 4, + "cost": 6.49, + "product_key": "velit", + "notes": "Non natus pariatur quos et itaque. Et hic quasi repellat aut maiores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11053, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0696", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-04", + "last_sent_date": null, + "due_date": "2020-08-31", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "26.75", + "balance": "19.29", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11053, + "quantity": 5, + "cost": 5.35, + "product_key": "est", + "notes": "Itaque exercitationem minus quidem nostrum quia quo in dolor. Et aut ut quod et. Rerum et distinctio autem quibusdam magni quaerat. Fugiat nihil consequatur odio nam illo adipisci libero. Voluptas ut velit modi non.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11054, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0697", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-28", + "last_sent_date": null, + "due_date": "2020-07-30", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.86", + "balance": "3.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11054, + "quantity": 2, + "cost": 2.93, + "product_key": "minima", + "notes": "Dicta totam exercitationem laboriosam temporibus et et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11055, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0698", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-29", + "last_sent_date": null, + "due_date": "2020-07-13", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.34", + "balance": "0.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11055, + "quantity": 1, + "cost": 4.34, + "product_key": "vero", + "notes": "Facere aliquid veritatis qui enim rerum saepe voluptatem. Suscipit sed magnam dolorem distinctio est enim rerum vitae. Ut porro doloribus dolorem repellat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11056, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0699", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-23", + "last_sent_date": null, + "due_date": "2020-06-21", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "37.92", + "balance": "23.44", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11056, + "quantity": 4, + "cost": 9.48, + "product_key": "quaerat", + "notes": "Consequatur cumque magnam omnis omnis. Saepe sed exercitationem non culpa unde magni occaecati. Eveniet sequi qui rerum et et. Earum temporibus molestiae voluptatem qui aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11057, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0700", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-07", + "last_sent_date": null, + "due_date": "2020-05-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.12", + "balance": "3.99", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11057, + "quantity": 2, + "cost": 3.06, + "product_key": "reiciendis", + "notes": "Molestias pariatur et consequatur. Eos ipsum id laboriosam illo culpa inventore aspernatur. Reiciendis laboriosam suscipit rerum a aut laudantium. Non exercitationem tempora est autem provident consequatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11078, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0721", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-13", + "last_sent_date": null, + "due_date": "2020-04-01", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "83.79", + "balance": "82.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11078, + "quantity": 9, + "cost": 9.31, + "product_key": "quo", + "notes": "Blanditiis labore iure corporis itaque. Sunt atque ullam sit aspernatur rerum sit facilis. Accusantium maxime nemo aut adipisci delectus eum velit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11079, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0722", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-13", + "last_sent_date": null, + "due_date": "2020-05-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "67.50", + "balance": "46.19", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11079, + "quantity": 9, + "cost": 7.5, + "product_key": "blanditiis", + "notes": "Aliquid quia nam accusantium. Voluptas quae molestias recusandae sunt natus. Aut nam est placeat distinctio quam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11080, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0723", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-21", + "last_sent_date": null, + "due_date": "2020-09-13", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "68.90", + "balance": "6.16", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11080, + "quantity": 10, + "cost": 6.89, + "product_key": "laborum", + "notes": "Repellat temporibus impedit autem quas aut corporis. Neque ea nam ducimus velit inventore. Et architecto soluta molestiae aut natus ut. Nihil blanditiis consequuntur et libero ex. Quae adipisci unde totam vero velit. Tenetur quia similique voluptatem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11081, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0724", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-07", + "last_sent_date": null, + "due_date": "2020-08-03", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.54", + "balance": "2.22", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11081, + "quantity": 2, + "cost": 4.77, + "product_key": "dolore", + "notes": "Sed commodi perspiciatis est consectetur. Ut aut dolor velit et error. Illum quo quo deserunt omnis ipsam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11082, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0725", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-14", + "last_sent_date": null, + "due_date": "2020-09-13", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.60", + "balance": "10.58", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11082, + "quantity": 8, + "cost": 2.95, + "product_key": "eaque", + "notes": "Error quo nobis quia reprehenderit excepturi adipisci. Autem doloribus reiciendis vitae repellendus. Qui est ad qui laudantium accusantium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11083, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0726", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-02", + "last_sent_date": null, + "due_date": "2020-08-09", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.92", + "balance": "15.69", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11083, + "quantity": 4, + "cost": 4.23, + "product_key": "voluptatem", + "notes": "Et ipsam veritatis quia iure. Ducimus libero aspernatur beatae aperiam voluptatem vel.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11084, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0727", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-27", + "last_sent_date": null, + "due_date": "2020-08-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.24", + "balance": "14.74", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11084, + "quantity": 4, + "cost": 5.81, + "product_key": "ut", + "notes": "Impedit nihil dolorem quia omnis. Dolores voluptatum et possimus aliquam. Iusto est vel hic aut. Hic consequatur inventore accusantium aliquam qui nesciunt aut. Iste quo explicabo hic quia quibusdam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11085, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0728", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-20", + "last_sent_date": null, + "due_date": "2020-07-21", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.78", + "balance": "2.92", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11085, + "quantity": 1, + "cost": 3.78, + "product_key": "voluptas", + "notes": "Atque nemo aliquam sunt. Quo porro ad dicta ut corrupti.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11086, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0729", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-06", + "last_sent_date": null, + "due_date": "2020-09-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "57.96", + "balance": "5.18", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11086, + "quantity": 7, + "cost": 8.28, + "product_key": "quas", + "notes": "Nam asperiores optio eaque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11087, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0730", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-23", + "last_sent_date": null, + "due_date": "2020-05-17", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.94", + "balance": "16.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11087, + "quantity": 6, + "cost": 6.49, + "product_key": "optio", + "notes": "Molestiae aliquid nobis sit soluta illo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11088, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0731", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-02", + "last_sent_date": null, + "due_date": "2020-05-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.76", + "balance": "2.77", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11088, + "quantity": 7, + "cost": 1.68, + "product_key": "deserunt", + "notes": "Et natus vel sunt distinctio porro id. Quibusdam laborum quod quia. Eius voluptatem quam incidunt ipsum et nesciunt repudiandae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11089, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0732", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-14", + "last_sent_date": null, + "due_date": "2020-08-11", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "76.40", + "balance": "2.11", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11089, + "quantity": 8, + "cost": 9.55, + "product_key": "rerum", + "notes": "Odio ea assumenda dicta ullam placeat sapiente animi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11090, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0733", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-26", + "last_sent_date": null, + "due_date": "2020-04-27", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.00", + "balance": "6.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11090, + "quantity": 4, + "cost": 2.25, + "product_key": "maiores", + "notes": "Dolorem fugiat suscipit debitis nam voluptate necessitatibus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11091, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0734", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-28", + "last_sent_date": null, + "due_date": "2020-04-28", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.78", + "balance": "5.11", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11091, + "quantity": 2, + "cost": 3.39, + "product_key": "aut", + "notes": "Iure laudantium iusto tempore ea possimus ab rerum quisquam. Eos voluptate cumque dolore quas. Facere amet ut eius nemo provident aut blanditiis. Et velit optio labore porro.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11092, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0735", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-17", + "last_sent_date": null, + "due_date": "2020-06-09", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "48.79", + "balance": "19.91", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11092, + "quantity": 7, + "cost": 6.97, + "product_key": "a", + "notes": "Minus rerum ad veniam ut aut. Eum nostrum accusamus et sed. Cupiditate nesciunt eius explicabo qui harum consequatur in. Numquam magnam asperiores quia reiciendis. Nisi quos natus expedita.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11093, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0736", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-30", + "last_sent_date": null, + "due_date": "2020-04-09", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "46.00", + "balance": "42.16", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11093, + "quantity": 8, + "cost": 5.75, + "product_key": "rerum", + "notes": "Similique fuga sit est aut natus. Soluta accusamus qui nemo rerum explicabo esse.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11094, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0737", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-11", + "last_sent_date": null, + "due_date": "2020-07-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "30.10", + "balance": "12.11", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11094, + "quantity": 5, + "cost": 6.02, + "product_key": "quia", + "notes": "Autem ut voluptas error ut. Dolore in aut repellat error quis et consequatur. Esse distinctio et saepe aut. Corrupti non id est voluptatum voluptates.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11095, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0738", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-25", + "last_sent_date": null, + "due_date": "2020-08-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.43", + "balance": "6.91", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11095, + "quantity": 7, + "cost": 1.49, + "product_key": "excepturi", + "notes": "Eveniet aliquid veniam dolorem adipisci molestiae nulla soluta. Omnis dicta vero praesentium exercitationem. Non eius consequuntur quia quibusdam earum laborum. Eius maiores est vitae quam voluptate.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11096, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0739", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-28", + "last_sent_date": null, + "due_date": "2020-05-05", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.06", + "balance": "6.46", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11096, + "quantity": 2, + "cost": 3.53, + "product_key": "esse", + "notes": "Quae magnam quod consequatur qui esse animi. Qui et laboriosam sit asperiores eum. Incidunt numquam sed aperiam accusantium quidem minus. Est voluptas temporibus at doloribus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11097, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0740", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-27", + "last_sent_date": null, + "due_date": "2020-04-09", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "51.04", + "balance": "0.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11097, + "quantity": 8, + "cost": 6.38, + "product_key": "dolorem", + "notes": "Harum sunt rerum dolor aliquid. Est ut sunt magnam ut maiores quam tenetur. Quo temporibus qui quia in hic ratione nesciunt.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11118, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0761", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-25", + "last_sent_date": null, + "due_date": "2020-07-30", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.80", + "balance": "4.63", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11118, + "quantity": 2, + "cost": 2.4, + "product_key": "numquam", + "notes": "Consectetur tenetur quo ex eum at a. Sunt et et deleniti non assumenda est veritatis. Ut dolorem molestiae et deleniti ullam ut ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11119, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0762", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-02", + "last_sent_date": null, + "due_date": "2020-04-29", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.84", + "balance": "1.05", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11119, + "quantity": 8, + "cost": 2.48, + "product_key": "perspiciatis", + "notes": "Consequatur tempore cumque tempore laborum velit in incidunt. Quia deserunt qui ut ut nulla autem. Excepturi saepe corporis quia laboriosam ea suscipit amet et. In quis voluptas expedita dolores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11120, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0763", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-28", + "last_sent_date": null, + "due_date": "2020-07-18", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "85.00", + "balance": "78.46", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11120, + "quantity": 10, + "cost": 8.5, + "product_key": "vero", + "notes": "Beatae quisquam voluptatem eos nobis ex. Nulla tenetur iure dolor consequatur est impedit rem. Iste nemo distinctio in magni tenetur nobis praesentium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11121, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0764", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-28", + "last_sent_date": null, + "due_date": "2020-07-07", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "1.50", + "balance": "1.34", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11121, + "quantity": 1, + "cost": 1.5, + "product_key": "nihil", + "notes": "Numquam distinctio sed voluptas id unde. Rerum nam est ea dolor libero quos. Et repellat sed ut ex maiores magnam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11122, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0765", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-09", + "last_sent_date": null, + "due_date": "2020-06-23", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "33.50", + "balance": "33.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11122, + "quantity": 10, + "cost": 3.35, + "product_key": "necessitatibus", + "notes": "Sunt voluptate nihil explicabo eligendi ab ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11123, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0766", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-19", + "last_sent_date": null, + "due_date": "2020-04-15", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.12", + "balance": "9.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11123, + "quantity": 4, + "cost": 3.78, + "product_key": "nobis", + "notes": "Eaque est omnis ipsam deleniti atque qui. Necessitatibus et non accusantium sequi. Dicta similique et illo. Harum est quis doloribus. Cupiditate magni harum eius expedita. Quis voluptate laboriosam error porro.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11124, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0767", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-03", + "last_sent_date": null, + "due_date": "2020-03-31", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "86.94", + "balance": "5.79", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11124, + "quantity": 9, + "cost": 9.66, + "product_key": "nulla", + "notes": "In iure et hic provident dolorem. Ducimus id sit sint dolorum. Iste fugit suscipit temporibus vero id non rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11125, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0768", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-15", + "last_sent_date": null, + "due_date": "2020-07-30", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.20", + "balance": "9.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11125, + "quantity": 3, + "cost": 5.4, + "product_key": "quaerat", + "notes": "Quas ipsum quia itaque accusamus rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11126, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0769", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-28", + "last_sent_date": null, + "due_date": "2020-08-25", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.04", + "balance": "7.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11126, + "quantity": 4, + "cost": 5.76, + "product_key": "officiis", + "notes": "Et illum officia exercitationem similique fugit labore velit. Totam consequuntur ex id aut ducimus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11127, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0770", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-02", + "last_sent_date": null, + "due_date": "2020-06-22", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "58.98", + "balance": "7.61", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11127, + "quantity": 6, + "cost": 9.83, + "product_key": "deserunt", + "notes": "Qui voluptas voluptate voluptatem consectetur repudiandae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11128, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0771", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-08", + "last_sent_date": null, + "due_date": "2020-03-24", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "41.86", + "balance": "10.55", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11128, + "quantity": 7, + "cost": 5.98, + "product_key": "assumenda", + "notes": "Voluptates ut in ipsa deleniti odio. Praesentium quia iusto voluptatem ullam. Beatae sint et iste voluptate repellat est.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11129, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0772", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-30", + "last_sent_date": null, + "due_date": "2020-04-14", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "37.96", + "balance": "23.29", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11129, + "quantity": 4, + "cost": 9.49, + "product_key": "laudantium", + "notes": "Voluptatum sed delectus fugit dolore nesciunt est. Voluptatem et ut quia. Nihil molestias neque voluptas non dolore placeat sed. Reiciendis a ut voluptatibus doloremque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11130, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0773", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-25", + "last_sent_date": null, + "due_date": "2020-04-21", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "60.76", + "balance": "49.26", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11130, + "quantity": 7, + "cost": 8.68, + "product_key": "qui", + "notes": "Natus laborum et nostrum modi eos provident. Ullam dolor dolor quo odio maxime velit provident. Occaecati voluptas molestias vero pariatur quia. Voluptate est qui possimus voluptatibus ullam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11131, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0774", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-26", + "last_sent_date": null, + "due_date": "2020-08-15", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "44.56", + "balance": "39.16", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11131, + "quantity": 8, + "cost": 5.57, + "product_key": "suscipit", + "notes": "Dolores deserunt eum sit. Ratione deserunt corrupti sunt in ducimus sunt.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11132, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0775", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-19", + "last_sent_date": null, + "due_date": "2020-04-08", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "32.90", + "balance": "15.01", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11132, + "quantity": 10, + "cost": 3.29, + "product_key": "vero", + "notes": "Eveniet in aut eaque. Nobis ut voluptas est repudiandae amet. Maxime expedita aut ut sapiente. Officia dolor inventore odit sed voluptatem odit in. Sit dolores et nemo consequuntur voluptas. Similique sit nemo mollitia dolorem unde.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11133, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0776", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-22", + "last_sent_date": null, + "due_date": "2020-06-29", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.36", + "balance": "12.44", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11133, + "quantity": 3, + "cost": 8.12, + "product_key": "itaque", + "notes": "Earum velit omnis ut quas ratione aut repudiandae. Eum nihil incidunt ut officiis cupiditate laudantium qui. Nulla error officiis molestiae explicabo eaque. Maiores sed quis sunt aut est modi est.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11134, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0777", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-24", + "last_sent_date": null, + "due_date": "2020-09-14", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.65", + "balance": "1.66", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11134, + "quantity": 5, + "cost": 3.13, + "product_key": "deleniti", + "notes": "Deleniti incidunt autem veniam nesciunt nisi qui quos. Nesciunt non doloremque voluptates eius in qui iure. Nesciunt et fuga sed ea.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11135, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0778", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-25", + "last_sent_date": null, + "due_date": "2020-09-24", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "32.56", + "balance": "9.87", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11135, + "quantity": 4, + "cost": 8.14, + "product_key": "temporibus", + "notes": "Necessitatibus quos qui quia in autem perspiciatis harum. Omnis harum cumque nemo non cumque. Expedita corrupti ut aut aliquam nihil. Eum sit nesciunt quas odio alias beatae possimus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11136, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0779", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-19", + "last_sent_date": null, + "due_date": "2020-03-24", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "33.72", + "balance": "22.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11136, + "quantity": 4, + "cost": 8.43, + "product_key": "amet", + "notes": "Voluptatum culpa sint id harum quae expedita magni. Recusandae quibusdam modi incidunt nobis. Eaque qui voluptatem commodi aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11137, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 3, + "design_id": 1, + "number": "0780", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-22", + "last_sent_date": null, + "due_date": "2020-08-16", + "uses_inclusive_taxes": 0, + "is_deleted": 0, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.31", + "balance": "1.16", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11137, + "quantity": 9, + "cost": 2.59, + "product_key": "iusto", + "notes": "Nesciunt dignissimos nulla alias fugit. Et eius et libero. Repellendus illo qui eos facere dolores laudantium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + } + ], + "recurring_invoices": [ + { + "id": 11158, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-18", + "last_sent_date": null, + "due_date": "1998-01-31", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_name3": "", + "tax_rate3": 0, + "custom_value1": "0.00", + "custom_value2": "0.00", + "custom_value3": "", + "custom_value4": "", + "amount": "20.85", + "balance": "20.85", + "partial": "0.00", + "partial_due_date": null, + "line_items": [ + { + "id": 11160, + "quantity": 1, + "cost": 5.85, + "product_key": "a", + "notes": "Voluptas autem iste dicta ut. Officiis velit et totam eius error recusandae atque. Rem dolore ut aliquid non. Unde accusamus quidem quaerat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-10-05 09:22:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + }, + { + "id": 11161, + "quantity": 1, + "cost": 5.43, + "product_key": "adipisci", + "notes": "Ut sunt quas est esse. Cumque blanditiis et sed eos minus. Nemo fugiat accusantium impedit nobis. Excepturi laudantium ipsa corrupti recusandae et optio.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-10-05 09:22:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + }, + { + "id": 11162, + "quantity": 1, + "cost": 9.57, + "product_key": "accusantium", + "notes": "Nam aliquam aliquid dignissimos accusamus aut consequatur ex.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-10-05 09:22:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-08-19", + "updated_at": "2020-10-05", + "deleted_at": null, + "next_send_date": "2020-08-01", + "frequency_id": 5, + "due_date_days": "31", + "remaining_cycles": -1 + }, + { + "id": 11159, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-29", + "last_sent_date": null, + "due_date": "1998-02-09", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_name3": "", + "tax_rate3": 0, + "custom_value1": "0.00", + "custom_value2": "0.00", + "custom_value3": "", + "custom_value4": "", + "amount": "5.43", + "balance": "5.43", + "partial": "0.00", + "partial_due_date": null, + "line_items": [ + { + "id": 11165, + "quantity": 1, + "cost": 5.43, + "product_key": "adipisci", + "notes": "Ut sunt quas est esse. Cumque blanditiis et sed eos minus. Nemo fugiat accusantium impedit nobis. Excepturi laudantium ipsa corrupti recusandae et optio.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-10-05 09:45:59.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-09-29", + "updated_at": "2020-10-05", + "deleted_at": null, + "next_send_date": "2020-09-29", + "frequency_id": 2, + "due_date_days": "terms", + "remaining_cycles": 34 + }, + { + "id": 11160, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-05", + "last_sent_date": null, + "due_date": "0000-00-00", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_name3": "", + "tax_rate3": 0, + "custom_value1": "0.00", + "custom_value2": "0.00", + "custom_value3": "", + "custom_value4": "", + "amount": "8.67", + "balance": "8.67", + "partial": "0.00", + "partial_due_date": null, + "line_items": [ + { + "id": 11166, + "quantity": 1, + "cost": 8.67, + "product_key": "ad", + "notes": "Sed esse ad at eos aut repellendus. Et omnis velit ut omnis nesciunt quam. Est quas occaecati sunt ipsa reiciendis. Aut aut rem architecto ex.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-10-07 00:09:58.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-10-05", + "updated_at": "2020-10-07", + "deleted_at": null, + "next_send_date": "2020-10-05", + "frequency_id": 5, + "due_date_days": "00", + "remaining_cycles": 9 + } + ], + "quotes": [ + { + "id": 10378, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0021", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-09", + "last_sent_date": null, + "due_date": "2020-07-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.28", + "balance": "9.28", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10378, + "quantity": 2, + "cost": 4.64, + "product_key": "a", + "notes": "Eos provident rerum eum laborum voluptatem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:17.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10379, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0022", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-07", + "last_sent_date": null, + "due_date": "2020-05-14", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -134478,552 +29326,24 @@ "next_send_date": null, "amount": "3.75", "balance": "3.75", - "partial": null, + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 816, - "quantity": 3, - "cost": 1.25, - "product_key": "incidunt", - "notes": "Harum qui impedit odit. Delectus et aut qui doloribus tenetur. Dolorem aperiam rem ut atque accusantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 801, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 801, - "key": "xopptx2024uht0mbg2knf5dzjzygobuz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 802, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0801", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.80", - "balance": "43.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 817, - "quantity": 10, - "cost": 4.38, - "product_key": "quo", - "notes": "Numquam quos rerum non doloremque. Tenetur omnis qui error laudantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 802, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 802, - "key": "hnggwfndppynun4jnswoxincnyfkijwu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 803, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0802", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.06", - "balance": "6.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 818, - "quantity": 6, - "cost": 1.01, - "product_key": "quia", - "notes": "Repellat qui nesciunt nisi sed id et et. Et deleniti porro debitis corporis alias totam officia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 803, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 803, - "key": "a0unidlpz7wwtnr3dxkjtoot4bpvapex", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 804, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0803", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-25", - "last_sent_date": null, - "due_date": "2020-04-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.51", - "balance": "57.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 819, - "quantity": 9, - "cost": 6.39, - "product_key": "omnis", - "notes": "Deserunt quia sit natus deserunt. Pariatur quod similique soluta quibusdam necessitatibus sed est omnis. Et aut ea laboriosam aperiam nobis est corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 804, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 804, - "key": "zmbl0rk1lkbxue87xmk3wmneinwqohxl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 805, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0804", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-21", - "last_sent_date": null, - "due_date": "2020-04-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.74", - "balance": "18.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 820, - "quantity": 2, - "cost": 9.37, - "product_key": "sed", - "notes": "Rerum nostrum aliquid iste porro et ipsa. Ullam aut sunt qui quo doloribus accusantium. Rem soluta qui nisi iure accusamus accusamus fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 805, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 805, - "key": "naacwed5cbrizt0zhckgcencbrwjywqi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 806, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0805", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-31", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.00", - "balance": "66.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 821, - "quantity": 8, - "cost": 8.25, - "product_key": "cum", - "notes": "Totam nostrum voluptatem quas dolores nemo odio facere. Et et aspernatur harum recusandae. Dolor similique et minima neque et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 806, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 806, - "key": "lccvgpsgb0oll6zqwrroihv8ja5sfwy3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 807, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0806", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-01-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.44", - "balance": "38.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 822, - "quantity": 4, - "cost": 9.61, - "product_key": "quo", - "notes": "Possimus officia reprehenderit dolores doloribus. Quasi iste sunt quia reprehenderit amet. Autem inventore est et quia ut non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 807, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 807, - "key": "dufwmm3orrqgg22kxxiyfc1hdrpcbuts", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 808, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0807", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.72", - "balance": "27.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 823, - "quantity": 3, - "cost": 9.24, + "id": 10379, + "quantity": 1, + "cost": 3.75, "product_key": "itaque", - "notes": "Sed quia delectus molestiae qui. Accusantium vel et non.", + "notes": "Ipsum delectus reprehenderit velit rerum soluta sint in et.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:20:48.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -135032,54770 +29352,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 808, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 808, - "key": "zyfqzbi0fqrre7fx3gguciregxw6xdan", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 809, - "client_id": 16, + "id": 10380, + "client_id": 53, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "0808", + "number": "0023", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-03-27", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.90", - "balance": "34.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 824, - "quantity": 10, - "cost": 3.49, - "product_key": "quam", - "notes": "Ab sed numquam magnam dignissimos. Voluptas mollitia similique fugiat perspiciatis ut voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 809, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 809, - "key": "lydkr2barltsfrykdsbzhp9sjkm4xgas", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 810, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0809", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-28", - "last_sent_date": null, - "due_date": "2020-04-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "98.90", - "balance": "98.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 825, - "quantity": 10, - "cost": 9.89, - "product_key": "numquam", - "notes": "Quam libero dolorem iusto ab. Sequi autem est dolorem consequatur quis ex temporibus. Culpa officiis molestias nostrum dignissimos. Reprehenderit possimus non sint et vel asperiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 810, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 810, - "key": "fnswpgeazjyocoh1ctomoqycpkp8ociw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:48", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 811, - "client_id": 16, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0810", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2019-12-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.90", - "balance": "39.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 826, - "quantity": 7, - "cost": 5.7, - "product_key": "sit", - "notes": "Non ab quam et quae amet ea. Eius excepturi voluptas voluptas unde voluptate dolorem est. Provident est quidem dolores blanditiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:48.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 811, - "company_id": 1, - "user_id": 1, - "client_contact_id": 16, - "quote_id": 811, - "key": "adjucdusu84if62rbdxhrqueqhhwhoun", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:49", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 912, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0911", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.84", - "balance": "27.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 927, - "quantity": 4, - "cost": 6.96, - "product_key": "sit", - "notes": "Nisi nemo quis dolorem tempora dolor voluptas. Asperiores dolorem necessitatibus corrupti dignissimos consectetur ad. Voluptatem fuga aliquid sunt voluptas eum nostrum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 912, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 912, - "key": "rfdwbyxqnvvdrntffgfsxcpe3gxbq2nl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 913, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0912", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "79.60", - "balance": "79.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 928, - "quantity": 10, - "cost": 7.96, - "product_key": "optio", - "notes": "Saepe excepturi repellat aut veniam iusto est. Temporibus beatae minima sint. Porro consequatur excepturi nam corporis labore. Sequi esse qui qui aspernatur nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:53.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 913, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 913, - "key": "rzwt7rdkdowdbakmoqx2amd2ab9kr96h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:53", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 914, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0913", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2019-12-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.92", - "balance": "37.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 929, - "quantity": 4, - "cost": 9.48, - "product_key": "vitae", - "notes": "Eos ratione similique est aliquam unde quia earum iste. Cumque impedit ut delectus rerum. Culpa ducimus sint possimus quisquam error atque. Omnis ut soluta harum itaque laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 914, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 914, - "key": "b1ws2ux6gh5otskgekyj9only717rwy9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 915, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0914", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-31", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.25", - "balance": "13.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 930, - "quantity": 5, - "cost": 2.65, - "product_key": "expedita", - "notes": "Quia numquam fugit culpa. Alias excepturi sunt adipisci minus excepturi. Repellat est ut fuga facilis distinctio. Odit est expedita dolores. Laudantium cupiditate laudantium voluptas cum modi. Aliquid eveniet at fugiat et occaecati est cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 915, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 915, - "key": "ncjbfuwvewjgvxynsrf5rjzds5hnpic1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 916, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0915", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-04-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.90", - "balance": "27.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 931, - "quantity": 5, - "cost": 5.58, - "product_key": "voluptatem", - "notes": "Voluptatibus consequatur exercitationem enim sit ut et. Cumque et sequi laborum. Sequi illo rerum incidunt laborum quaerat totam. Quam et veritatis corporis facilis aut inventore ducimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 916, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 916, - "key": "olykizp8vdgwhymgjoliltywz6gwkslj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 917, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0916", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-10", - "last_sent_date": null, - "due_date": "2020-03-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.52", - "balance": "9.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 932, - "quantity": 4, - "cost": 2.38, - "product_key": "sunt", - "notes": "Officiis animi cumque ut deleniti placeat. Veritatis quisquam omnis dolores laborum. Qui iusto iusto consequatur neque vitae. Ab corporis recusandae dolor recusandae et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 917, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 917, - "key": "cgzzsx9zuhkqm2uhkfojavnklymuvb3w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 918, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0917", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-30", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.60", - "balance": "12.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 933, - "quantity": 3, - "cost": 4.2, - "product_key": "labore", - "notes": "Qui ea sunt numquam ut nesciunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 918, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 918, - "key": "r3blyog6whribafovbsll9odrasxwy8k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 919, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0918", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "87.93", - "balance": "87.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 934, - "quantity": 9, - "cost": 9.77, - "product_key": "cupiditate", - "notes": "Quia consequatur necessitatibus vitae dolore. Corporis eos officia et. Ipsam cumque fuga qui commodi repellendus aliquid deserunt nemo. Eos quia nam illum voluptatem consequatur iusto earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 919, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 919, - "key": "utwoxb9r6vbwrmv4xif0fmvwe45mkzjl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 920, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0919", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-09", - "last_sent_date": null, - "due_date": "2020-03-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.16", - "balance": "34.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 935, - "quantity": 8, - "cost": 4.27, - "product_key": "molestias", - "notes": "Rem debitis reprehenderit consequuntur id. Beatae accusantium atque et deserunt assumenda nulla. Quidem dolore itaque et reiciendis. Aut aut debitis nihil mollitia nisi voluptatem qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 920, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 920, - "key": "o1irvfcajylqv8fzwenlugvuwdldst72", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 921, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0920", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-21", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.68", - "balance": "22.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 936, - "quantity": 6, - "cost": 3.78, - "product_key": "voluptatem", - "notes": "Sint nisi ipsum et mollitia impedit. Officia et eveniet illo rerum ullam optio delectus vel. Dolor omnis laudantium ea est totam aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 921, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 921, - "key": "jbm7kqouc086v61hxx5i7vyhrcwy9qfn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 922, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0921", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2019-12-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.88", - "balance": "34.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 937, - "quantity": 8, - "cost": 4.36, - "product_key": "sed", - "notes": "Qui quae quis id nesciunt. Et tempore sunt deleniti quasi est at. Omnis itaque unde reiciendis est ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 922, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 922, - "key": "avayfpfkqyuprdz1seuqenlp99pdipef", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 923, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0922", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.79", - "balance": "29.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 938, - "quantity": 3, - "cost": 9.93, - "product_key": "quas", - "notes": "Aut iusto explicabo eveniet esse porro aut aut. Aliquid eius alias aut veniam. Eum qui in voluptas sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 923, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 923, - "key": "mheibwnaux3jgeco1ccgkknjkvv0norv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 924, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0923", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-11", + "date": "2020-08-12", "last_sent_date": null, "due_date": "2020-03-26", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.96", - "balance": "12.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 939, - "quantity": 8, - "cost": 1.62, - "product_key": "eum", - "notes": "Aut voluptas et recusandae totam error. Beatae aut nam suscipit eligendi laboriosam. Tempore sit et est aliquam blanditiis dolores quis. Adipisci consectetur officiis accusamus vero maxime adipisci. Perspiciatis autem iste eos aspernatur dicta quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 924, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 924, - "key": "2bweqlq50vnjpi2voj0fwfuynsl20iwx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 925, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0924", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.18", - "balance": "4.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 940, - "quantity": 1, - "cost": 4.18, - "product_key": "qui", - "notes": "Vero nesciunt ea consequatur qui officiis unde. Esse quod aut aut velit sint sunt et. Porro et architecto ad alias blanditiis ipsa consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 925, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 925, - "key": "ch58pwgpzdnjgrbweqs1oni8ufpjrsqi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 926, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0925", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-07", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.30", - "balance": "5.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 941, - "quantity": 5, - "cost": 1.06, - "product_key": "non", - "notes": "Quasi dolore repellendus aliquid ea ex in. Velit aspernatur quae dolorum tempora iusto vitae tenetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 926, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 926, - "key": "8fegkcidchdkblkpjnbtevhewomdaajy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 927, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0926", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-26", - "last_sent_date": null, - "due_date": "2020-04-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.72", - "balance": "12.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 942, - "quantity": 4, - "cost": 3.18, - "product_key": "alias", - "notes": "Ea odio accusamus a ad aspernatur quo et. Natus temporibus temporibus illum repellendus sunt. Illo ratione enim voluptas ipsam cupiditate rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 927, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 927, - "key": "ddbuap5lqgdthbruo29emofu2imnqtl8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 928, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0927", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.00", - "balance": "15.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 943, - "quantity": 2, - "cost": 7.5, - "product_key": "id", - "notes": "Est omnis incidunt ut nihil et porro pariatur. Voluptas id quia praesentium unde sed. Ratione id enim voluptas et velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 928, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 928, - "key": "l97hxkb0odzkkqzdsbmct16p3dbvlmvo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 929, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0928", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-03", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.08", - "balance": "54.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 944, - "quantity": 8, - "cost": 6.76, - "product_key": "fugiat", - "notes": "Aperiam et eos tenetur est. Vero blanditiis laudantium placeat qui accusantium maiores. Nihil sit veniam itaque. Id quisquam harum aut autem harum doloremque voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 929, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 929, - "key": "44x08ixtcjlom41huwse0rhosr8qcwmh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 930, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0929", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.55", - "balance": "39.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 945, - "quantity": 7, - "cost": 5.65, - "product_key": "voluptas", - "notes": "A beatae aspernatur vitae voluptatem. Ut eaque cumque architecto. Veritatis iste aliquam est tenetur laborum et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 930, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 930, - "key": "kacl3cyzbe4ejs53ojafi9oukggdm1tb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 931, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0930", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2019-12-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.80", - "balance": "16.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 946, - "quantity": 6, - "cost": 2.8, - "product_key": "nemo", - "notes": "Sunt enim soluta vitae consequuntur totam. Repellendus molestias mollitia quam deleniti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 931, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 931, - "key": "2dxyvhloplclb5pahzhfykhjj8jztjit", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 932, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0931", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-22", - "last_sent_date": null, - "due_date": "2020-02-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.52", - "balance": "23.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 947, - "quantity": 8, - "cost": 2.94, - "product_key": "et", - "notes": "Dolor error et occaecati non quas quos. Laboriosam voluptas provident sint quasi quia sed. Dolores quibusdam iusto quia vel cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 932, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 932, - "key": "l5gkgx4ixld4eq8mmw0ubeqcmybz3uk6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 933, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0932", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.00", - "balance": "57.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 948, - "quantity": 10, - "cost": 5.7, - "product_key": "quia", - "notes": "Non itaque doloremque tempora molestias dolores facilis. Aut aliquam et voluptatem vero. Id sunt rerum illum quaerat necessitatibus. Molestias omnis dicta necessitatibus eos error. Deleniti sit delectus molestiae aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 933, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 933, - "key": "brspvvoldgdgrjzlnkpvxlpbyohxdrw7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 934, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0933", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2020-06-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.36", - "balance": "1.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 949, - "quantity": 1, - "cost": 1.36, - "product_key": "aliquam", - "notes": "Excepturi debitis ut sapiente voluptatem sed totam quia. Saepe sed saepe dolores. Praesentium saepe aperiam aut sed. Quia est deleniti voluptatibus ut dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 934, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 934, - "key": "yo6yujtxq9mj61kqjevfhmu4l4wji3wd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 935, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0934", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.21", - "balance": "8.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 950, - "quantity": 1, - "cost": 8.21, - "product_key": "delectus", - "notes": "Molestiae dolorem quos libero rerum exercitationem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 935, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 935, - "key": "jijyrygxervrpssq0arpee1qiwejvdt6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 936, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0935", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.00", - "balance": "48.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 951, - "quantity": 8, - "cost": 6, - "product_key": "sapiente", - "notes": "Consectetur ipsa rerum earum. Minima est ea consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 936, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 936, - "key": "rrl9i71uwrm2hel87bramt7fcxpkbesj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 937, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0936", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-03-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.69", - "balance": "2.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 952, - "quantity": 1, - "cost": 2.69, - "product_key": "accusamus", - "notes": "Voluptatibus aperiam aut consequatur perferendis nam. Provident accusantium excepturi at dignissimos est fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 937, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 937, - "key": "xaunswaxpe9xd2eqcyaq01utc2ihohke", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 938, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0937", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-11", - "last_sent_date": null, - "due_date": "2020-06-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.53", - "balance": "25.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 953, - "quantity": 3, - "cost": 8.51, - "product_key": "earum", - "notes": "Aut ut dolores et est aperiam. Animi pariatur sit consequatur sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 938, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 938, - "key": "thcqjheb9ddad7ljysqd73dionl3vkb7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 939, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0938", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "2020-06-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.10", - "balance": "61.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 954, - "quantity": 10, - "cost": 6.11, - "product_key": "non", - "notes": "Quos tempora qui blanditiis optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 939, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 939, - "key": "eqarevkivm7oepehipl5fbyittd7gw9t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 940, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0939", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-02", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.42", - "balance": "4.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 955, - "quantity": 2, - "cost": 2.21, - "product_key": "dolorum", - "notes": "Eum iure autem est itaque et odio. At aperiam modi aspernatur quisquam nesciunt porro. Quia recusandae at voluptas nisi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 940, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 940, - "key": "ojbv1ygm4qfffvfj5rongmri86sufmzo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 941, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0940", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-06-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.36", - "balance": "13.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 956, - "quantity": 4, - "cost": 3.34, - "product_key": "expedita", - "notes": "Velit earum quae aut rerum optio. Est voluptate quia modi consequuntur quisquam facilis. Esse at vel dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 941, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 941, - "key": "5dbzmt2emqeqq0wszcifsvwq1jmrj6sh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 942, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0941", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.25", - "balance": "48.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 957, - "quantity": 5, - "cost": 9.65, - "product_key": "ut", - "notes": "Sit voluptatem aliquam voluptas consequatur. In rerum libero magnam laudantium. Ea repellat perspiciatis officia quibusdam inventore. Voluptatem vero sit omnis accusantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 942, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 942, - "key": "yu0fbumxpilbslsiv1yekvlqcvpzidda", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 943, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0942", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-13", - "last_sent_date": null, - "due_date": "2020-06-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.48", - "balance": "6.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 958, - "quantity": 3, - "cost": 2.16, - "product_key": "veritatis", - "notes": "Accusamus sit vel ipsam tenetur sed iusto. Aut molestiae quia est id temporibus sapiente fugiat voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 943, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 943, - "key": "vb57t1q8ajn3c3ihhmgtp0lghjxdlts0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 944, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0943", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.56", - "balance": "25.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 959, - "quantity": 6, - "cost": 4.26, - "product_key": "ut", - "notes": "Quia culpa voluptatum nulla molestiae et explicabo. Architecto fugiat aliquam est maxime totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 944, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 944, - "key": "bxmrsr9u8duin5sqgu7axykzsxzz0b6s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 945, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0944", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-15", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.21", - "balance": "21.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 960, - "quantity": 7, - "cost": 3.03, - "product_key": "modi", - "notes": "Fugit vel consequuntur sed aliquid ullam accusamus enim. Officia tempore a est. Accusantium et aspernatur vero laudantium distinctio vitae eos. Repellendus sapiente est aspernatur delectus voluptas assumenda ut qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 945, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 945, - "key": "noergop3qbupc4nwgz6brtdx5wzlglqm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 946, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0945", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.18", - "balance": "6.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 961, - "quantity": 6, - "cost": 1.03, - "product_key": "consequatur", - "notes": "Omnis voluptas quos in et qui illum. Quasi autem commodi esse dolorem nihil amet ratione voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 946, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 946, - "key": "mcj6o2wpzzozhue3mqethcghahpqln6h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 947, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0946", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-26", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.72", - "balance": "12.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 962, - "quantity": 4, - "cost": 3.18, - "product_key": "est", - "notes": "Dolor in dolorem sint tenetur. Rerum ab voluptatem possimus aut eaque ea neque. Dolor facilis laboriosam consequatur asperiores dolores facilis ea. Numquam error sint nesciunt voluptatem provident.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 947, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 947, - "key": "xldrijabt5hiyr5xhepcnutva8hm5lbu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 948, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0947", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-21", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.10", - "balance": "68.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 963, - "quantity": 10, - "cost": 6.81, - "product_key": "repudiandae", - "notes": "Eum quis aut non sit. Et eos dolor qui deserunt dolore est. Enim quasi rerum veniam et corrupti qui. Esse provident et quod laudantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 948, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 948, - "key": "lynml9d3doqqpz9sqsqh0ovetcucf54a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 949, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0948", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2020-02-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.40", - "balance": "36.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 964, - "quantity": 5, - "cost": 7.28, - "product_key": "pariatur", - "notes": "Vel hic explicabo quos quia repudiandae. Suscipit ratione vitae odio illum. Qui velit nihil est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 949, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 949, - "key": "wxlixqttro04enunjblrwa3jstnla862", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 950, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0949", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.49", - "balance": "35.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 965, - "quantity": 7, - "cost": 5.07, - "product_key": "mollitia", - "notes": "Sint nihil numquam libero voluptate qui reprehenderit. Eum ipsa enim iste a. Autem eius vero illo laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 950, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 950, - "key": "icrj0yahqiikryblc5oxqkztfomwssis", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 951, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0950", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-06-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.40", - "balance": "27.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 966, - "quantity": 10, - "cost": 2.74, - "product_key": "et", - "notes": "Omnis non quos eius cum repellat cupiditate esse. Nisi quas ducimus quidem eos qui. Laborum aut vero consequatur eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 951, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 951, - "key": "dwjdow11tpc3ojit1u8ahe2tufd2iy2n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 952, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0951", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-28", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.74", - "balance": "12.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 967, - "quantity": 2, - "cost": 6.37, - "product_key": "cupiditate", - "notes": "Eaque eligendi et veniam. Id non atque quod eos autem molestiae. Velit tenetur corrupti temporibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 952, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 952, - "key": "9guyjuwffweckinijyq4pv4ju7eduhyi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 953, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0952", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.10", - "balance": "37.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 968, - "quantity": 10, - "cost": 3.71, - "product_key": "dolores", - "notes": "Magni optio ex a nihil dolor earum. Aut corrupti aliquid sunt. Rem qui perspiciatis est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 953, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 953, - "key": "0ymzwdetkwz4ofwh7ihvswopyabeg6av", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 954, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0953", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2020-05-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.72", - "balance": "11.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 969, - "quantity": 4, - "cost": 2.93, - "product_key": "officia", - "notes": "Non voluptatem animi ad tempore laboriosam quos dolore. Dolore sint ducimus sint necessitatibus. Necessitatibus cupiditate qui ut et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 954, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 954, - "key": "chsrdi0qpi5gkd9uvyz3y326hur4kvrb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 955, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0954", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-27", - "last_sent_date": null, - "due_date": "2020-04-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.40", - "balance": "22.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 970, - "quantity": 5, - "cost": 4.48, - "product_key": "dolor", - "notes": "Corporis quibusdam sunt commodi animi qui ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 955, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 955, - "key": "n1q2pzr159pgmarmspahocjfkddd1pbn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 956, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0955", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.49", - "balance": "42.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 971, - "quantity": 7, - "cost": 6.07, - "product_key": "qui", - "notes": "Aut iusto optio neque aut quis incidunt et. Sit laborum autem excepturi voluptates sed repellendus possimus. Omnis et et mollitia qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 956, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 956, - "key": "5gmui68jqvb20rk2x0k1slc3vaiukto8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 957, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0956", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.21", - "balance": "24.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 972, - "quantity": 3, - "cost": 8.07, - "product_key": "assumenda", - "notes": "Quod voluptate quia deserunt velit ut voluptas architecto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 957, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 957, - "key": "prw4ojngrafpj2lxhee3prx9zldu37tt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 958, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0957", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.58", - "balance": "23.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 973, - "quantity": 9, - "cost": 2.62, - "product_key": "rem", - "notes": "Consequatur aut mollitia neque rerum et cupiditate et. Tempora magnam accusamus commodi dolorum consequatur repellat eum. Porro ea et earum eaque totam distinctio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 958, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 958, - "key": "efyfapcj1eaklmgss2gqpyp1zj3fmfx2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 959, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0958", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-22", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.54", - "balance": "9.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 974, - "quantity": 9, - "cost": 1.06, - "product_key": "aut", - "notes": "Illo quia assumenda maxime veniam quo. Quo quae cum error. Accusamus commodi et modi voluptatum sit dolore ullam. Aut ducimus fugiat dolorem. Natus pariatur ullam perspiciatis et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 959, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 959, - "key": "1me6vagddxtmy30lmswlaub0irq0mksc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 960, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0959", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-11", - "last_sent_date": null, - "due_date": "2020-03-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.75", - "balance": "13.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 975, - "quantity": 5, - "cost": 2.75, - "product_key": "qui", - "notes": "Suscipit iure nam eos non cupiditate. Rerum quisquam nobis porro architecto fugiat sed ducimus ad. Ut voluptatum distinctio magnam sunt. Aliquam est nam error mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 960, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 960, - "key": "qhq0i29ppwgqm1jq7qbyw2y7zdqf2bao", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 961, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0960", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-13", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.40", - "balance": "28.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 976, - "quantity": 8, - "cost": 3.55, - "product_key": "saepe", - "notes": "Est veritatis vero eaque ut voluptatibus velit quaerat. Ut tempora vitae iste. Laboriosam nostrum aut rerum repellat alias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:54.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 961, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 961, - "key": "gxz8y99pvfwlrl7pnuszeizd2wpfic5t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:54", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 962, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0961", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.95", - "balance": "9.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 977, - "quantity": 5, - "cost": 1.99, - "product_key": "natus", - "notes": "Et aliquid dolor distinctio rerum quo. Et deleniti est molestias mollitia delectus rem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 962, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 962, - "key": "7ecv8fa3elrc0vg1i2qulsrchezm7yvw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 963, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0962", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.00", - "balance": "49.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 978, - "quantity": 10, - "cost": 4.9, - "product_key": "omnis", - "notes": "Suscipit libero quam rerum voluptatibus non nihil quidem. Commodi corrupti ut voluptatum nisi aut esse quibusdam. Labore pariatur qui dolores autem qui perspiciatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 963, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 963, - "key": "rpjqmpgz1ve32v2xwdpmkidqqq8plwna", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 964, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0963", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": null, - "due_date": "2020-04-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "65.90", - "balance": "65.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 979, - "quantity": 10, - "cost": 6.59, - "product_key": "et", - "notes": "Voluptates ipsa recusandae eum rerum. Aut qui voluptas rem illum. Sed asperiores quae et aut accusamus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 964, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 964, - "key": "hpz3g5j6ftyjvh8h704tit4rkbbqsri1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 965, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0964", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-22", - "last_sent_date": null, - "due_date": "2020-01-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.34", - "balance": "5.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 980, - "quantity": 2, - "cost": 2.67, - "product_key": "voluptas", - "notes": "Reiciendis blanditiis voluptas officiis odio aut quibusdam corrupti ut. Illo consequatur voluptate nesciunt et in aliquam rerum. Enim nulla porro ut qui cupiditate et inventore magni. Cumque aut voluptatem doloremque ipsum officiis autem itaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 965, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 965, - "key": "qjsauy6o99yykmjnodwlrtg3mdivruvj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 966, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0965", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2019-12-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.32", - "balance": "1.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 981, - "quantity": 1, - "cost": 1.32, - "product_key": "placeat", - "notes": "Esse sint quis consequatur et iusto autem placeat. Deleniti adipisci et ea at. Cumque suscipit voluptatem nam odit laboriosam aperiam ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 966, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 966, - "key": "zig85mq9wmjopcwnycoerpcps7usuvfm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 967, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0966", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-03-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.64", - "balance": "15.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 982, - "quantity": 4, - "cost": 3.91, - "product_key": "sunt", - "notes": "Cumque et sed voluptate similique possimus qui est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 967, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 967, - "key": "cjw3tt2l1k45frkoqruf1gdfegvsbkii", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 968, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0967", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-29", - "last_sent_date": null, - "due_date": "2019-12-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.40", - "balance": "53.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 983, - "quantity": 6, - "cost": 8.9, - "product_key": "quae", - "notes": "Id non nam qui consequatur earum error. Excepturi officiis possimus ab a qui repellat voluptas ut. Eaque distinctio voluptas nemo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 968, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 968, - "key": "fkco63rflnfm8zywhvlnsknbazlpojmf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 969, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0968", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.25", - "balance": "22.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 984, - "quantity": 5, - "cost": 4.45, - "product_key": "optio", - "notes": "Rem totam vitae maxime perspiciatis aut suscipit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 969, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 969, - "key": "n8mumx4jx75d1kfq5zixaqstbfm8lfjo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 970, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0969", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-03-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.04", - "balance": "21.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 985, - "quantity": 8, - "cost": 2.63, - "product_key": "est", - "notes": "Quis nihil quo omnis aut ut officiis. Enim corporis perferendis aliquid ex quo. Voluptas ut nulla soluta architecto temporibus qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 970, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 970, - "key": "nxm2khfzta7xpy7p2sjez2migcebdmuf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 971, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0970", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-13", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.48", - "balance": "5.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 986, - "quantity": 2, - "cost": 2.74, - "product_key": "illo", - "notes": "Beatae quasi quia amet. Quia voluptate aspernatur commodi libero. In deserunt totam dolores dolor sunt aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 971, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 971, - "key": "7sozjo7fdlkvlm8ytctbyymchhjdrhoj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 972, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0971", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-02-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.62", - "balance": "46.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 987, - "quantity": 7, - "cost": 6.66, - "product_key": "qui", - "notes": "Perferendis rem dolor sunt. Sit illum laudantium eaque. Vel ea et fuga unde. Ut quidem cum sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 972, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 972, - "key": "upkcnjrizdceonngucryeyfd5js4vch1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 973, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0972", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.05", - "balance": "42.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 988, - "quantity": 5, - "cost": 8.41, - "product_key": "harum", - "notes": "Consequatur perferendis animi dicta et explicabo aut libero. Itaque soluta accusamus in quia dolor tempora nisi. Qui voluptate mollitia quo perspiciatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 973, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 973, - "key": "wimu7hdzsm8im9lazxllb9ymvdleicv7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 974, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0973", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.55", - "balance": "7.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 989, - "quantity": 5, - "cost": 1.51, - "product_key": "distinctio", - "notes": "Sed distinctio mollitia incidunt optio qui. Soluta qui consequatur repellat quia sequi in. Id animi rerum quibusdam ipsa dicta possimus nemo. Quod est autem assumenda aut placeat magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 974, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 974, - "key": "lu0euznhyrvch426la0gxarq0laeuun0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 975, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0974", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.16", - "balance": "9.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 990, - "quantity": 4, - "cost": 2.29, - "product_key": "est", - "notes": "Et officia repellendus quaerat velit aliquid fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 975, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 975, - "key": "2u5rqukufyynjl4afdizzalzrveuz7au", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 976, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0975", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2019-12-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.09", - "balance": "4.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 991, - "quantity": 1, - "cost": 4.09, - "product_key": "cumque", - "notes": "Possimus eaque dicta omnis accusamus rerum omnis. Possimus sint et aut natus voluptatibus. Eos id porro commodi quaerat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 976, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 976, - "key": "qjhtzm0nlveoj4cefyxjhjaokjp4ifdf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 977, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0976", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.03", - "balance": "2.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 992, - "quantity": 1, - "cost": 2.03, - "product_key": "quisquam", - "notes": "Et sit sed aliquam quia. Rerum repellat veritatis dicta tempore ut praesentium fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 977, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 977, - "key": "vkjzbqtfzcnvyx9hbtelqyh4pppur3co", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 978, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0977", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2020-02-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.62", - "balance": "7.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 993, - "quantity": 6, - "cost": 1.27, - "product_key": "mollitia", - "notes": "Et facere soluta sunt consequatur aliquam reprehenderit. Rerum aspernatur natus temporibus fugiat consectetur amet. Est mollitia eos similique provident delectus repellat. Ut fugiat ducimus velit et in accusantium molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 978, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 978, - "key": "lsjmw5oosx6lu2wankdociqply8a2zkt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 979, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0978", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.98", - "balance": "19.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 994, - "quantity": 3, - "cost": 6.66, - "product_key": "delectus", - "notes": "Et molestiae eos et tempora ullam. Aut totam et culpa animi. Illo quod voluptas nostrum ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 979, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 979, - "key": "ap8kxna4cjwsbejqz5epnd7bmu5iwvdp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 980, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0979", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-02", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.24", - "balance": "40.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 995, - "quantity": 8, - "cost": 5.03, - "product_key": "recusandae", - "notes": "Cupiditate incidunt quod sit et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 980, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 980, - "key": "whsc5qw4iqvqdhyquah0yfx1gojhxh6o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 981, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0980", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-25", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.20", - "balance": "45.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 996, - "quantity": 5, - "cost": 9.04, - "product_key": "atque", - "notes": "Id sequi temporibus ratione non amet et modi. Adipisci omnis aut nesciunt cum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 981, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 981, - "key": "9ia9sb9vyi2gazitseugybcm6rjgbx7c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 982, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0981", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-10", - "last_sent_date": null, - "due_date": "2020-03-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.04", - "balance": "19.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 997, - "quantity": 8, - "cost": 2.38, - "product_key": "quod", - "notes": "Id sit qui et eligendi qui voluptas et. Minima quia dolores ut omnis. Necessitatibus harum quasi explicabo nihil sunt nam. Sapiente dolores sit aut non hic officia. Et velit tempora alias vero incidunt enim tempora. Omnis sunt excepturi ut quia consequuntur. Omnis officia et ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 982, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 982, - "key": "zlwkxp6abnzxjoyczxafyjbbugjgmtsl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 983, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0982", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.04", - "balance": "20.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 998, - "quantity": 6, - "cost": 3.34, - "product_key": "repudiandae", - "notes": "Qui vel sint facilis id. Recusandae ea est ipsa explicabo ut soluta facilis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 983, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 983, - "key": "yachdxfyobnqcetgmyiez1h2apawxtiu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 984, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0983", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.46", - "balance": "12.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 999, - "quantity": 7, - "cost": 1.78, - "product_key": "ratione", - "notes": "Provident sit vel provident tempora. Repellat necessitatibus nesciunt ab cum. Dolores enim labore ratione nisi aut suscipit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 984, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 984, - "key": "kqq7pfz2kkogjxcoinm7x8plt03m7vk9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 985, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0984", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-03-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.12", - "balance": "48.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1000, - "quantity": 6, - "cost": 8.02, - "product_key": "dolor", - "notes": "Quia ad consequuntur velit quo voluptatum explicabo ut consequuntur. Voluptate harum eveniet voluptas iure ipsa in aut. Qui qui ut dolores nulla beatae molestiae velit dolores. Accusantium maxime vitae quidem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 985, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 985, - "key": "gvoc26v5sysyupsacxi5belwalqcmfbs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 986, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0985", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.93", - "balance": "8.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1001, - "quantity": 1, - "cost": 8.93, - "product_key": "eius", - "notes": "Officia velit non sit tempore dolores ad dicta unde. Harum minima sapiente cum tempora. Alias consequuntur explicabo labore qui ut nemo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 986, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 986, - "key": "hu29kyviidkkpwg0i7xros7a4xzbagtg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 987, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0986", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-15", - "last_sent_date": null, - "due_date": "2020-03-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.70", - "balance": "57.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1002, - "quantity": 10, - "cost": 5.77, - "product_key": "veniam", - "notes": "Consectetur soluta ut veniam molestias. Non velit a at in fuga voluptas consequatur. Quia ducimus excepturi inventore cum dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 987, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 987, - "key": "ezwsh15wvqksxvcakqzfw4dmjakjl0vs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 988, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0987", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-06-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.80", - "balance": "19.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1003, - "quantity": 2, - "cost": 9.9, - "product_key": "voluptas", - "notes": "Et dicta cupiditate aut nostrum voluptas. Tempore quaerat atque autem aut enim. Ad aut nisi explicabo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 988, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 988, - "key": "ztyqchtqmsnnunasjvcpfsxexj3avg7p", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 989, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0988", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.14", - "balance": "49.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1004, - "quantity": 6, - "cost": 8.19, - "product_key": "minus", - "notes": "Repudiandae ducimus blanditiis occaecati ducimus sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 989, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 989, - "key": "ylkyace8znnudfejazvy1zhn36szdjg0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 990, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0989", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.68", - "balance": "40.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1005, - "quantity": 9, - "cost": 4.52, - "product_key": "qui", - "notes": "Aut est et distinctio doloremque modi doloremque. Ut ut pariatur repellat est. Consequatur velit aut debitis ex placeat. Minima placeat quia rerum ab beatae voluptas hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 990, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 990, - "key": "t1krrvmdcuqxvc0vibif8171kv6hku4j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 991, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0990", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.48", - "balance": "24.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1006, - "quantity": 6, - "cost": 4.08, - "product_key": "aut", - "notes": "Quis tenetur unde nostrum temporibus possimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 991, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 991, - "key": "xyhoqwmk0uvr9mghtciu8sdecwfqidoq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 992, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0991", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-29", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "78.75", - "balance": "78.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1007, - "quantity": 9, - "cost": 8.75, - "product_key": "sequi", - "notes": "Molestiae eos modi sint ea cupiditate omnis id. Id neque id modi repellat reiciendis nulla eius at. Enim explicabo eligendi temporibus molestias rerum sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 992, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 992, - "key": "7h6nkrhrlpw5suxd63k11qbkm397osni", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 993, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0992", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-25", - "last_sent_date": null, - "due_date": "2020-03-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.20", - "balance": "70.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1008, - "quantity": 10, - "cost": 7.02, - "product_key": "numquam", - "notes": "Voluptas nihil quia ut et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 993, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 993, - "key": "wxpqlm6bu6jsbz2ptgbbdsmxhcwabwz7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 994, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0993", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.18", - "balance": "18.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1009, - "quantity": 9, - "cost": 2.02, - "product_key": "iure", - "notes": "Tenetur adipisci fugiat praesentium perferendis excepturi accusamus. Alias est repellendus velit accusantium quia explicabo. Dolor esse quas placeat et velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 994, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 994, - "key": "lg6ftazk6eiddehynauyosphuxxuiy9f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 995, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0994", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.14", - "balance": "16.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1010, - "quantity": 3, - "cost": 5.38, - "product_key": "aut", - "notes": "Qui in quis incidunt exercitationem quos facilis deleniti. Ducimus optio quia praesentium nemo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 995, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 995, - "key": "oaybcxhrdduzgkmqweyse8bjqpmme1xi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 996, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0995", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-29", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.24", - "balance": "21.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1011, - "quantity": 4, - "cost": 5.31, - "product_key": "ipsum", - "notes": "Eveniet repudiandae consequatur et sunt. Non accusamus eaque ut possimus nobis aut. Deserunt dolorem est exercitationem autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 996, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 996, - "key": "f4iipetxi8e9cqkxutrmedzs6ujmuzqn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 997, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0996", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.88", - "balance": "26.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1012, - "quantity": 3, - "cost": 8.96, - "product_key": "ut", - "notes": "Quod et enim tenetur nihil alias optio. Rerum modi et iure veniam necessitatibus. Sequi necessitatibus labore eius vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 997, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 997, - "key": "rtidm5dk8eeqsr5tlxfnmv86zlh6zm9g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 998, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0997", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.74", - "balance": "12.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1013, - "quantity": 2, - "cost": 6.37, - "product_key": "quisquam", - "notes": "Consequuntur sit perspiciatis repellat possimus consequatur nemo. Ullam voluptatem eos commodi officiis sed quis. In ipsam laudantium in asperiores. Voluptatem minus iste vel sit esse qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 998, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 998, - "key": "00pjq2xatczwmzn9ymutbenkvfj2fiex", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 999, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0998", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.00", - "balance": "45.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1014, - "quantity": 9, - "cost": 5, - "product_key": "nihil", - "notes": "Sapiente beatae sit laudantium laboriosam illo amet nisi suscipit. Quas rerum blanditiis neque laudantium illo est. Voluptatibus deleniti voluptatem fuga occaecati laboriosam. Ipsum quos eum exercitationem quia numquam animi unde.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 999, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 999, - "key": "gsil45vwm5aucpplidqsqc7s1hqcqbpo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1000, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "0999", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.70", - "balance": "6.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1015, - "quantity": 5, - "cost": 1.34, - "product_key": "sed", - "notes": "Aspernatur odit commodi aut non perferendis et facere. Rerum odio voluptates alias non. Earum quia cumque quam sed qui qui. Consequatur doloremque ea voluptatibus rerum sed id. Consectetur doloribus voluptatem fugiat aut ipsam facilis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1000, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1000, - "key": "xejo0bu0equff2inq1gop3jdvmepggsh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1001, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1000", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.71", - "balance": "10.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1016, - "quantity": 3, - "cost": 3.57, - "product_key": "provident", - "notes": "Sapiente rem quas reiciendis esse harum in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1001, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1001, - "key": "cvo2yjpaaugaeodjrj1uwfhhb3aeogt4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1002, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1001", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.67", - "balance": "68.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1017, - "quantity": 9, - "cost": 7.63, - "product_key": "cum", - "notes": "Esse vel natus dicta dolor molestias maiores. Ipsum numquam vero nam quibusdam dolorum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1002, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1002, - "key": "sf9cnrx7nfpum8xwa7yuwroq6bfrvpkr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1003, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1002", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-06-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.50", - "balance": "25.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1018, - "quantity": 10, - "cost": 2.55, - "product_key": "quia", - "notes": "Sit ut fugit quod qui. Sit sed odio dignissimos tempora et explicabo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1003, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1003, - "key": "uvakvaedhvtklln6zzhxl6mkeeocytle", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1004, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1003", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.70", - "balance": "10.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1019, - "quantity": 2, - "cost": 5.35, - "product_key": "est", - "notes": "Maiores fuga nam iste necessitatibus et quis autem. Est atque nesciunt nesciunt accusantium consequatur autem. Magnam et ut dolor aliquid voluptatem iste ipsum. Corporis qui molestiae et et quia rerum. At reprehenderit aut assumenda vel odio eaque eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1004, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1004, - "key": "liebuig3mappzukr1xfcjv6wu8fibhrf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1005, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1004", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-03", - "last_sent_date": null, - "due_date": "2020-02-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.52", - "balance": "11.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1020, - "quantity": 4, - "cost": 2.88, - "product_key": "reiciendis", - "notes": "Velit ratione modi placeat. Ea dicta sed doloribus sit et accusamus est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1005, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1005, - "key": "2ntdmhjhyf1gsmdc7gzfdlwpirxipuru", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1006, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1005", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-01-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.32", - "balance": "28.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1021, - "quantity": 4, - "cost": 7.08, - "product_key": "ipsa", - "notes": "Error et fugiat eligendi alias mollitia voluptatum officia. Hic pariatur alias ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1006, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1006, - "key": "kphlfz8xvidpbnjjjdueseisqbt8jo0l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1007, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1006", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.00", - "balance": "11.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1022, - "quantity": 4, - "cost": 2.75, - "product_key": "qui", - "notes": "Non excepturi qui aliquam aliquid et est excepturi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1007, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1007, - "key": "hctrua3bsoeu1q7j8qxefdjgjiiicxlu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1008, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1007", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-06-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.20", - "balance": "33.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1023, - "quantity": 4, - "cost": 8.3, - "product_key": "a", - "notes": "Consequatur beatae voluptatem sed est. Et vitae minima doloremque non culpa. Aut fugiat qui minus quia perferendis saepe adipisci. Et porro culpa ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1008, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1008, - "key": "so3z7yodazon2elmziqrhmag6mxmnhoc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1009, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1008", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.34", - "balance": "20.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1024, - "quantity": 9, - "cost": 2.26, - "product_key": "nostrum", - "notes": "Quia exercitationem libero nihil ratione voluptatem. Dolorem non aliquid et nam. Nostrum non et odio nulla.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:55.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1009, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1009, - "key": "c5k63aje3klfndzka1ppivhxq3zigez9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:55", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1010, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1009", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.88", - "balance": "24.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1025, - "quantity": 8, - "cost": 3.11, - "product_key": "perferendis", - "notes": "Molestiae vel vel id commodi autem similique minus. Nesciunt et ducimus nisi consequatur. Voluptatem blanditiis eligendi qui blanditiis dolore. Reprehenderit magnam hic odit voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1010, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1010, - "key": "u2voplbgvwfutfuknmuf3frzmx1tf3mp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1011, - "client_id": 17, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1010", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.92", - "balance": "70.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1026, - "quantity": 9, - "cost": 7.88, - "product_key": "deserunt", - "notes": "Maiores non et voluptatem quaerat laborum id repudiandae occaecati.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:20:56.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1011, - "company_id": 1, - "user_id": 1, - "client_contact_id": 17, - "quote_id": 1011, - "key": "pmkomwjrfs0zg1og3df1eu7ittqalcue", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:20:56", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1112, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1111", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.04", - "balance": "11.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1127, - "quantity": 4, - "cost": 2.76, - "product_key": "et", - "notes": "Perferendis consectetur ipsa facilis dolorem mollitia quia consequatur. Perferendis inventore reiciendis voluptas vel aliquam. Libero blanditiis dolorum ea assumenda quam ea et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1112, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1112, - "key": "j1cp8mb6bmzao7uxizkdsd5vfigqey1y", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1113, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1112", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-22", - "last_sent_date": null, - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.60", - "balance": "21.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1128, - "quantity": 9, - "cost": 2.4, - "product_key": "vel", - "notes": "Qui quasi quis alias rerum illum enim harum est. Autem nostrum vel fuga earum impedit. Consequatur voluptate delectus velit ut. Dolorum dolores laborum eaque in et necessitatibus corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1113, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1113, - "key": "cwcudxsgn0bcul0dwvwknm9zfhz9htvi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1114, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1113", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-26", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.04", - "balance": "35.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1129, - "quantity": 4, - "cost": 8.76, - "product_key": "aliquid", - "notes": "Et quis ipsum non aut illum. Velit doloribus reiciendis officiis. Voluptatum ut voluptatem deleniti quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1114, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1114, - "key": "ah93f9dcyc81gra8ojetvchwaauuabga", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1115, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1114", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.30", - "balance": "8.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1130, - "quantity": 2, - "cost": 4.15, - "product_key": "et", - "notes": "Amet ullam dolorum est minus. Fuga hic blanditiis accusamus veniam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1115, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1115, - "key": "3eivhvdmtgdx4vrhe5qpjsshsafpvddp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1116, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1115", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-20", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.20", - "balance": "18.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1131, - "quantity": 5, - "cost": 3.64, - "product_key": "adipisci", - "notes": "Molestiae consequatur facere soluta dolore autem ut facere. Voluptate nisi sit qui voluptatem et non quod iste.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1116, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1116, - "key": "5gkdhbcrahpoweo0yfjf8fencrvenyzv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1117, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1116", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.76", - "balance": "9.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1132, - "quantity": 8, - "cost": 1.22, - "product_key": "non", - "notes": "Nihil illum dicta porro corporis recusandae facilis. Qui at sint cumque neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1117, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1117, - "key": "qdua5llvakwmu615004qfwlifj7dqs8l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1118, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1117", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-31", - "last_sent_date": null, - "due_date": "2020-03-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.37", - "balance": "34.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1133, - "quantity": 7, - "cost": 4.91, - "product_key": "et", - "notes": "Rerum est est id consequatur non. Consequatur magni amet autem veritatis dolorem aperiam veritatis aut. Odit labore officia optio voluptatem voluptas nihil possimus. Sint nihil illum corrupti voluptates nulla animi iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1118, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1118, - "key": "u7nsnnqlvvellrqqyzywg2p1eyqtvqlo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1119, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1118", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-08", - "last_sent_date": null, - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.68", - "balance": "64.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1134, - "quantity": 7, - "cost": 9.24, - "product_key": "dolorum", - "notes": "Aut voluptatem autem doloribus in ducimus aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1119, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1119, - "key": "phozxlxrkmwugatmtjwcdagm0wy4uljx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1120, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1119", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.65", - "balance": "25.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1135, - "quantity": 3, - "cost": 8.55, - "product_key": "dolorem", - "notes": "Quis incidunt et eius error necessitatibus amet. Perspiciatis autem et iure consequatur. Ipsum tenetur assumenda modi earum porro. Et officiis cumque nihil voluptates.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1120, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1120, - "key": "zbdimqpfgntonjmxxymwyf0eankx9w7i", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1121, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1120", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.54", - "balance": "1.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1136, - "quantity": 1, - "cost": 1.54, - "product_key": "et", - "notes": "At laborum et ut eos. Nisi in pariatur ut ut minus vel. Repellendus qui eius at ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1121, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1121, - "key": "jmm04gavrflo8owaja58q1lofsfbwra2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1122, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1121", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-08", - "last_sent_date": null, - "due_date": "2020-03-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.52", - "balance": "20.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1137, - "quantity": 4, - "cost": 5.13, - "product_key": "nemo", - "notes": "Non fuga sint id quis voluptatibus. Sit rerum sunt aperiam alias voluptate. Vero quia consectetur placeat eveniet assumenda laudantium in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1122, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1122, - "key": "nt4neyv12be4hjkyzie4alfgjjyizfz2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1123, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1122", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-31", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.76", - "balance": "13.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1138, - "quantity": 8, - "cost": 1.72, - "product_key": "praesentium", - "notes": "Sed quas sunt expedita esse quia. Tempora enim harum assumenda incidunt. Necessitatibus quod in reprehenderit doloremque nihil. Illo aut adipisci corrupti tempora nobis commodi similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1123, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1123, - "key": "b3wzdperlxha4ccb7dorxed17tqxemff", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1124, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1123", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.33", - "balance": "50.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1139, - "quantity": 7, - "cost": 7.19, - "product_key": "at", - "notes": "Quia beatae nulla sapiente vero consequatur totam. Sed nesciunt veniam velit sequi. Est ipsum molestias veniam autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1124, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1124, - "key": "em2ypz2ca3qok5tyjlcvxwu4mrqulbbf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1125, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1124", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.85", - "balance": "23.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1140, - "quantity": 5, - "cost": 4.77, - "product_key": "animi", - "notes": "Illum saepe saepe aut qui ut amet. Maxime eum et et est et aut neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1125, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1125, - "key": "tfkcuaanvcuzoytqbrodwfgd6cee3ljx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1126, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1125", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.72", - "balance": "35.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1141, - "quantity": 4, - "cost": 8.93, - "product_key": "adipisci", - "notes": "Eveniet sed cum mollitia et aut dolore aliquid voluptatem. Dolore eum dolor quia occaecati. Ex possimus dolor veniam quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1126, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1126, - "key": "s094qkt79pqgakj0e6aeasnmniyups92", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1127, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1126", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-03-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.32", - "balance": "24.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1142, - "quantity": 4, - "cost": 6.08, - "product_key": "beatae", - "notes": "Iste iure cum magnam quae. Eos facere ut provident sapiente ut. Accusamus sed nulla doloribus ipsam qui error. Deserunt iure sint nisi voluptates iure. Quisquam sunt occaecati labore aperiam ex ut non inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1127, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1127, - "key": "ico972ajrc2vdpsojh4gicxypewbzfhq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1128, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1127", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-26", - "last_sent_date": null, - "due_date": "2019-12-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.05", - "balance": "4.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1143, - "quantity": 3, - "cost": 1.35, - "product_key": "ut", - "notes": "Vitae dolor consequatur nemo qui. Nihil odit qui eos est ipsa accusamus. Voluptatibus earum quidem in illo dolor est quia eum. Quibusdam numquam nulla dicta rem libero non officiis asperiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1128, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1128, - "key": "e6sxiptlvph8cf17rcjjnr4wntqh6h7o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1129, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1128", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-11", - "last_sent_date": null, - "due_date": "2020-01-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "72.56", - "balance": "72.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1144, - "quantity": 8, - "cost": 9.07, - "product_key": "totam", - "notes": "Omnis ut aut reprehenderit architecto cumque laudantium. Asperiores quaerat aperiam doloremque quia esse aut rerum. Quia sequi pariatur mollitia exercitationem et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1129, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1129, - "key": "qbifiljes6xke18rgtpmuch23e9gf5cu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1130, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1129", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.40", - "balance": "50.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1145, - "quantity": 7, - "cost": 7.2, - "product_key": "in", - "notes": "Odit aliquid rem occaecati dolores. Quidem et necessitatibus rerum dolorem quo harum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1130, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1130, - "key": "48hb0bd96ld99n3rdp9xjhbw6t9idink", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1131, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1130", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-18", - "last_sent_date": null, - "due_date": "2020-02-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.76", - "balance": "23.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1146, - "quantity": 3, - "cost": 7.92, - "product_key": "quis", - "notes": "Qui sit ea accusamus doloribus vitae minima ipsam. Ratione et tempore autem quasi mollitia. Atque molestiae reiciendis dolor inventore sequi temporibus eligendi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1131, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1131, - "key": "tf7jrr5hljb4syhz6tw5trouamwn8cip", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1132, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1131", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.08", - "balance": "49.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1147, - "quantity": 6, - "cost": 8.18, - "product_key": "et", - "notes": "Debitis aliquam odio commodi animi magnam aliquam optio. Illo dicta veniam doloremque sit nostrum aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1132, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1132, - "key": "moyxjegtfi8wrmgwkvg18mhscgpufcmx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1133, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1132", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.88", - "balance": "17.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1148, - "quantity": 3, - "cost": 5.96, - "product_key": "magni", - "notes": "Dolores tempore est veritatis vel. Exercitationem facere et cum nihil. Accusamus et facere recusandae quaerat quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1133, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1133, - "key": "fqrpoxe9hjyuxpudufzoz5rpgjrryfhb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1134, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1133", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-03-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.81", - "balance": "18.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1149, - "quantity": 9, - "cost": 2.09, - "product_key": "ut", - "notes": "Est iusto quis exercitationem expedita veritatis. Ipsam nulla officia et nobis nulla voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1134, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1134, - "key": "nfrasp8yvhiw6wm69skicae6coze5rmw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1135, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1134", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-13", - "last_sent_date": null, - "due_date": "2020-05-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "72.18", - "balance": "72.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1150, - "quantity": 9, - "cost": 8.02, - "product_key": "et", - "notes": "Molestias nisi laboriosam doloribus ratione aut quod. Asperiores suscipit dignissimos earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1135, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1135, - "key": "xr69d6sinkxy70hyxefdwzcpmwy45tsj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1136, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1135", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2020-02-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.35", - "balance": "41.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1151, - "quantity": 5, - "cost": 8.27, - "product_key": "eveniet", - "notes": "Voluptatem eum debitis eius sed est hic. Nulla omnis distinctio ducimus omnis rerum ea. Nam accusantium alias voluptatem sint. Debitis sint nemo inventore ut amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1136, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1136, - "key": "63htg49lwuegagxl7iuji3oiuwpktxan", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1137, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1136", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2020-05-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.92", - "balance": "27.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1152, - "quantity": 8, - "cost": 3.49, - "product_key": "placeat", - "notes": "Temporibus enim mollitia quia natus debitis illo. Dolor sunt itaque voluptatem nostrum est voluptatum et. Vel ullam rerum dicta nesciunt. In quae doloribus aliquam dolorum sed magni. Iure omnis sed iste blanditiis excepturi qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1137, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1137, - "key": "wf4xatgn9jjyk6sakbhluihfxy2rie8d", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1138, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1137", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-22", - "last_sent_date": null, - "due_date": "2020-04-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.91", - "balance": "26.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1153, - "quantity": 3, - "cost": 8.97, - "product_key": "ad", - "notes": "Odio ipsum error mollitia eligendi dolor explicabo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1138, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1138, - "key": "xpmx6iffbts2kq8htnikmttjkxhhn3kv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1139, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1138", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-04-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.14", - "balance": "31.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1154, - "quantity": 6, - "cost": 5.19, - "product_key": "consequuntur", - "notes": "Aperiam atque illum delectus sint est eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1139, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1139, - "key": "jazz6ie2xpl2rtiwgcktnrhenzdtw3fw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1140, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1139", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-27", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "80.46", - "balance": "80.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1155, - "quantity": 9, - "cost": 8.94, - "product_key": "et", - "notes": "Eveniet non nisi cumque qui. Quis et et excepturi velit odio in. Nisi rem cumque autem aut iusto illum ullam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1140, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1140, - "key": "kzkiefpxvqaaob52uwkteporzbtwr6zp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1141, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1140", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-21", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.58", - "balance": "10.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1156, - "quantity": 2, - "cost": 5.29, - "product_key": "ipsum", - "notes": "Totam qui sint est temporibus et vel. Ad exercitationem vel soluta qui blanditiis. Porro doloribus dolores sunt enim. Tenetur quia voluptates nostrum molestiae adipisci excepturi ut. Beatae qui suscipit ullam quia. Pariatur culpa itaque expedita voluptatem quibusdam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1141, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1141, - "key": "y9jsorm6o2wyd6st8hspapykqs8wi7hn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1142, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1141", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.80", - "balance": "41.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1157, - "quantity": 5, - "cost": 8.36, - "product_key": "velit", - "notes": "Reiciendis et dolor quisquam. Ut necessitatibus sed doloremque omnis. Pariatur sequi possimus aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1142, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1142, - "key": "vtxsbrgdotajit85kpj6ewat95bbgjni", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1143, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1142", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-08", - "last_sent_date": null, - "due_date": "2020-03-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.29", - "balance": "7.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1158, - "quantity": 1, - "cost": 7.29, - "product_key": "dolorum", - "notes": "Ipsum vel hic iure velit. Reprehenderit iure dolorem qui architecto excepturi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1143, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1143, - "key": "vxuugc0i3ks5jinji1cuy4ji6xerxlhd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1144, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1143", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-18", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.56", - "balance": "42.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1159, - "quantity": 8, - "cost": 5.32, - "product_key": "repudiandae", - "notes": "Sed adipisci culpa itaque nihil ut est. Aliquam quis praesentium et harum saepe tenetur. Et unde enim soluta quibusdam et. Est voluptate dolor nulla architecto qui veritatis. Nam a consequatur excepturi vero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1144, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1144, - "key": "qwtiagjbt3q9o3bmu28b0vebrbl1lpgk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1145, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1144", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-04-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.80", - "balance": "17.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1160, - "quantity": 5, - "cost": 3.56, - "product_key": "architecto", - "notes": "Omnis maxime illo ullam magnam quaerat nostrum ut. Temporibus aut quod vitae enim omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1145, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1145, - "key": "0leluivju4ktvkbdu4wf3lsna4qgwgq6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1146, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1145", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-12", - "last_sent_date": null, - "due_date": "2020-04-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.81", - "balance": "6.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1161, - "quantity": 3, - "cost": 2.27, - "product_key": "nobis", - "notes": "Rem rem fugiat blanditiis iure necessitatibus aliquam inventore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1146, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1146, - "key": "d7ncjwfltsvs8yc9pibjymlzdyciiqpw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1147, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1146", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.89", - "balance": "7.89", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1162, - "quantity": 3, - "cost": 2.63, - "product_key": "est", - "notes": "Sint officia laboriosam cum placeat. At quod eos nesciunt consequatur dolores deleniti a quibusdam. Ratione iure suscipit tempora vero quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1147, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1147, - "key": "ypbwyl4rcsihvmbtdkwfxjyiudahpu8c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1148, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1147", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-15", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.29", - "balance": "16.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1163, - "quantity": 9, - "cost": 1.81, - "product_key": "debitis", - "notes": "Sed ut eos voluptas tenetur corrupti voluptatibus. Tempora temporibus quae exercitationem est ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1148, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1148, - "key": "o3fy3j3wmuwa90vrm0czs7pgb7u0co4r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1149, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1148", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "69.76", - "balance": "69.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1164, - "quantity": 8, - "cost": 8.72, - "product_key": "laudantium", - "notes": "Voluptates nostrum dolor illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1149, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1149, - "key": "mik3dojfdfrewrtsdtkzvlqcibqchu4z", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1150, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1149", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2020-04-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.61", - "balance": "29.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1165, - "quantity": 3, - "cost": 9.87, - "product_key": "animi", - "notes": "Eaque ut ut sunt harum. Voluptas velit sed distinctio incidunt in et voluptas aliquam. Tenetur culpa eum vitae error. Voluptatem omnis quo eligendi placeat non. In qui voluptate modi assumenda itaque rerum. Est minus aut labore rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1150, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1150, - "key": "ofpqxwtexwc6whsllwmz5usdk9ckbu6a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1151, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1150", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.88", - "balance": "64.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1166, - "quantity": 8, - "cost": 8.11, - "product_key": "doloremque", - "notes": "Assumenda maiores soluta sequi quod est aut. Dicta modi aut sequi quia deleniti. Quasi aut autem nobis nihil in. Adipisci rem voluptatem et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1151, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1151, - "key": "dkabsqsvlwzdwlwmibqbztdrkxfugxai", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1152, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1151", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-16", - "last_sent_date": null, - "due_date": "2019-12-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.86", - "balance": "3.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1167, - "quantity": 2, - "cost": 1.93, - "product_key": "unde", - "notes": "Est provident modi ea animi ipsam est et reprehenderit. Ea illum autem ut ut. Est blanditiis ut saepe est provident. Nesciunt ullam tenetur qui et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1152, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1152, - "key": "afgun6itbo8ezkxwkaybbmvdzl1kpp7m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1153, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1152", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.80", - "balance": "21.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1168, - "quantity": 5, - "cost": 4.36, - "product_key": "aut", - "notes": "Autem rem aut nesciunt. Ut beatae repudiandae ea occaecati et sed sed. Et commodi mollitia aliquid laborum excepturi illum. Quidem doloribus suscipit qui sint tempore sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1153, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1153, - "key": "fpz2bln1clewebphfm2uhcxsqhxfwx8l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1154, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1153", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.66", - "balance": "7.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1169, - "quantity": 2, - "cost": 3.83, - "product_key": "quam", - "notes": "Temporibus ut magnam omnis minima modi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1154, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1154, - "key": "wwjtawgnlhuoskbqdkd7xcxuxhmx5hm1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1155, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1154", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-26", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.33", - "balance": "3.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1170, - "quantity": 3, - "cost": 1.11, - "product_key": "ut", - "notes": "Quae ea nisi repellat et. Recusandae enim debitis tempora debitis. Praesentium quaerat omnis dolore aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1155, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1155, - "key": "8pmrufjiejja3hkorjgibdfgdv3rqkjr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1156, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1155", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-15", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.75", - "balance": "29.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1171, - "quantity": 7, - "cost": 4.25, - "product_key": "expedita", - "notes": "Ut at sed molestias saepe eum et incidunt. Ea ea architecto minima sapiente. Sint mollitia in ut dignissimos doloremque facere minus. Enim et officia eum illo aut perferendis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1156, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1156, - "key": "sgkivlmz0jhma3r2eyby8yjc4m7hguk2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1157, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1156", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.10", - "balance": "44.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1172, - "quantity": 7, - "cost": 6.3, - "product_key": "provident", - "notes": "Quo autem velit error ut pariatur suscipit ipsam est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1157, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1157, - "key": "cchsexbjjlzib91dlhxeqlc5hnpqt2wt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1158, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1157", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.88", - "balance": "31.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1173, - "quantity": 4, - "cost": 7.97, - "product_key": "adipisci", - "notes": "Assumenda odit ut autem velit officia quis debitis. Autem aut odit consequatur aspernatur voluptatem et vitae. Nesciunt error quisquam et rem. Magnam tempore unde ipsam odio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1158, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1158, - "key": "hrkl6a0andlubiatmxqa6vhb0ry8au57", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:01", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1159, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1158", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.85", - "balance": "14.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1174, - "quantity": 3, - "cost": 4.95, - "product_key": "aliquam", - "notes": "Illo deserunt neque assumenda ut deserunt eum expedita. Minima molestiae magni sequi non. Quidem numquam vero fugiat rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:01.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1159, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1159, - "key": "yyk3d8e5fetg0pgtfna8zlip3cj3ewhy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1160, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1159", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.88", - "balance": "22.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1175, - "quantity": 4, - "cost": 5.72, - "product_key": "fugit", - "notes": "Consectetur autem minus esse. Soluta voluptatem porro quasi quasi. Earum officia tenetur sint dolorem. Pariatur placeat modi nihil accusantium a.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1160, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1160, - "key": "frrglqykzahv4rroiwf9ac8dzm9qt7cc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1161, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1160", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.00", - "balance": "38.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1176, - "quantity": 10, - "cost": 3.8, - "product_key": "enim", - "notes": "Ut suscipit sit est et corrupti omnis. Aliquam totam sed ipsum ut occaecati.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1161, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1161, - "key": "csgqxgfmn2pkfrjgfbqjeaoxekvcs87i", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1162, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1161", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "72.30", - "balance": "72.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1177, - "quantity": 10, - "cost": 7.23, - "product_key": "non", - "notes": "Eos nisi sapiente omnis velit deserunt nobis placeat. Necessitatibus est iure non. Est a officia sint error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1162, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1162, - "key": "ymy0ylueocv1yawjpbpz8y8j4mwm5ply", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1163, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1162", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.32", - "balance": "31.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1178, - "quantity": 9, - "cost": 3.48, - "product_key": "aut", - "notes": "Ad ipsum officia corrupti omnis delectus eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1163, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1163, - "key": "bwacp93hjqges6oyuoylvz6cvmkjefvo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1164, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1163", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2020-02-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.55", - "balance": "18.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1179, - "quantity": 5, - "cost": 3.71, - "product_key": "sed", - "notes": "Ea voluptatem velit voluptas maxime qui quidem est tenetur. Et perferendis harum sed veritatis. Et qui blanditiis et tempora non aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1164, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1164, - "key": "fo4rrvvhxsekhmg8mmjbrkporsxgquhc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1165, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1164", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.52", - "balance": "10.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1180, - "quantity": 4, - "cost": 2.63, - "product_key": "natus", - "notes": "Veniam sed cumque non quidem. Praesentium quibusdam numquam quidem quidem ut voluptate nobis delectus. Qui quasi nam sunt est. Sit et et laudantium id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1165, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1165, - "key": "dspsjgllolamyysl8raxcbea7itm0ubn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1166, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1165", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2020-02-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.80", - "balance": "19.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1181, - "quantity": 5, - "cost": 3.96, - "product_key": "sunt", - "notes": "Modi et ut iure adipisci facilis. Ratione laboriosam porro officiis nulla culpa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1166, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1166, - "key": "nrptwu15fqumzpp6hnpcthusprmguskp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1167, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1166", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.83", - "balance": "11.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1182, - "quantity": 7, - "cost": 1.69, - "product_key": "quis", - "notes": "Sit dolorem sed est voluptatem vitae. Sed voluptatibus ut molestias tenetur placeat. Qui numquam sit mollitia voluptas asperiores officiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1167, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1167, - "key": "xr8qzgayqsazjxfczgrmrjejpvtgtsw2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1168, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1167", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "79.20", - "balance": "79.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1183, - "quantity": 8, - "cost": 9.9, - "product_key": "magnam", - "notes": "Sed dolor sapiente aut laudantium quis repellendus. Provident beatae ut repellendus. Quibusdam quibusdam labore debitis quia eum. Eligendi veniam fuga aut quos. Itaque voluptatem voluptatem est qui tenetur. Accusantium recusandae sunt provident quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1168, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1168, - "key": "e7p2mq3k2pkxovuqjxuwtmhlt6sl954i", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1169, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1168", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "62.64", - "balance": "62.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1184, - "quantity": 8, - "cost": 7.83, - "product_key": "accusantium", - "notes": "Laborum facilis officia voluptatum nostrum molestias porro numquam. Vel perspiciatis rerum fugiat maxime ea quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1169, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1169, - "key": "jnwamjw7q1knhf09gxgqxvxumrg6tp6r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1170, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1169", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-08", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.40", - "balance": "16.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1185, - "quantity": 5, - "cost": 3.28, - "product_key": "facilis", - "notes": "Dolor eligendi quia error aut est. Quas voluptates ut tempore totam. Aliquid eum sit sed dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1170, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1170, - "key": "0gvutpjdw5ht4hiasels5ni71cdu5ols", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1171, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1170", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "89.90", - "balance": "89.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1186, - "quantity": 10, - "cost": 8.99, - "product_key": "amet", - "notes": "Vel accusantium quisquam nesciunt incidunt et. Eum quia sit illum recusandae adipisci veniam dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1171, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1171, - "key": "yfcla34fgfnyuq20ihbheoiccfr8vati", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1172, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1171", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-04-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.87", - "balance": "6.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1187, - "quantity": 1, - "cost": 6.87, - "product_key": "est", - "notes": "Quia officiis ab dolor sunt quia. Consequatur accusamus quas blanditiis saepe soluta fugiat aut laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1172, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1172, - "key": "vwfwb4nauwzahoysfx8ajpzesbrckl8r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1173, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1172", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.56", - "balance": "61.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1188, - "quantity": 9, - "cost": 6.84, - "product_key": "error", - "notes": "Quia dolorem magnam et voluptatem eligendi et enim nam. Fuga vel nostrum est molestiae qui earum commodi. Quo fugit veritatis rerum sunt aut quos exercitationem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1173, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1173, - "key": "qaws3py7w9z3o1bhlgyr38tmcalgclpf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1174, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1173", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.90", - "balance": "57.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1189, - "quantity": 6, - "cost": 9.65, - "product_key": "et", - "notes": "Et sed quae ut voluptas quidem provident vel nihil. Atque ipsum et dolor. Rem molestiae rerum ut dolorum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1174, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1174, - "key": "1h0g4i794dogo5pznjgjtfzdztipbvoi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1175, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1174", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2020-03-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.44", - "balance": "40.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1190, - "quantity": 6, - "cost": 6.74, - "product_key": "est", - "notes": "Qui sit quis repellendus numquam quia. Nostrum sit autem necessitatibus sed non omnis aut. Quas ipsa at saepe distinctio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1175, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1175, - "key": "0einxaabglvgsnacgy3kl31uvfklzbar", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1176, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1175", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.11", - "balance": "43.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1191, - "quantity": 9, - "cost": 4.79, - "product_key": "deleniti", - "notes": "Consequatur blanditiis facilis nobis architecto. Cumque non ea animi et. Qui officiis voluptate debitis quibusdam facere similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1176, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1176, - "key": "xu2tx72622gcupglgk4ma7zfyy020dfr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1177, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1176", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-08", - "last_sent_date": null, - "due_date": "2020-01-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.24", - "balance": "66.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1192, - "quantity": 9, - "cost": 7.36, - "product_key": "eaque", - "notes": "Excepturi consequatur repellendus fugiat quae omnis vitae. Explicabo officiis consequatur voluptate ut recusandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1177, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1177, - "key": "7iicjjsa23k0yq9xzdwe7hsopzw3gwae", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1178, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1177", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2020-04-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.75", - "balance": "6.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1193, - "quantity": 3, - "cost": 2.25, - "product_key": "voluptas", - "notes": "Inventore eius illum vel sunt. Quae ab dolores rerum vero ducimus autem. Quis atque porro ea distinctio eum commodi et et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1178, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1178, - "key": "dpihen2k04lusa6xfky9xst4sssftsdd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1179, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1178", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "82.70", - "balance": "82.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1194, - "quantity": 10, - "cost": 8.27, - "product_key": "dolor", - "notes": "Tenetur tempore eum dolores deserunt enim qui. Dolor optio distinctio qui voluptates. Quis nisi ut possimus assumenda reiciendis provident nam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1179, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1179, - "key": "jrjyjg0cyq3twebieakawazmkb7pygmq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1180, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1179", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.80", - "balance": "23.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1195, - "quantity": 7, - "cost": 3.4, - "product_key": "qui", - "notes": "Enim voluptas nam aut distinctio. Laudantium in velit autem sapiente maiores pariatur. Odio earum laudantium facilis. Vel praesentium soluta id. Debitis reiciendis sint omnis quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1180, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1180, - "key": "9mwo0jq1izuxiqohtwwx95lebkdaolxp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1181, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1180", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.40", - "balance": "5.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1196, - "quantity": 3, - "cost": 1.8, - "product_key": "possimus", - "notes": "Illum quia animi sed ex id nisi. Aut provident atque recusandae debitis. Dolorem dicta labore nostrum repellat. Doloribus est deserunt odit ut dolor neque molestias. Eum laborum cum sit dolores. Qui earum quis sint iste rerum est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1181, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1181, - "key": "frvyek2xvixsomiovimwbcbopqnjenfr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1182, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1181", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-30", - "last_sent_date": null, - "due_date": "2020-04-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.05", - "balance": "41.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1197, - "quantity": 5, - "cost": 8.21, - "product_key": "illum", - "notes": "Suscipit non eaque aut aut consequatur ullam temporibus. Atque porro nisi et sint ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1182, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1182, - "key": "y8om2jvvtj7ofp0nwu1i6bz9twc4x3fj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1183, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1182", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.18", - "balance": "2.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1198, - "quantity": 1, - "cost": 2.18, - "product_key": "et", - "notes": "Odio nostrum ut optio maiores neque consequuntur. Qui vero rerum voluptatem earum similique et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1183, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1183, - "key": "z6wf6kad0fjl9pmy9y1dznh0pcrb0of9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1184, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1183", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2019-12-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.94", - "balance": "37.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1199, - "quantity": 7, - "cost": 5.42, - "product_key": "commodi", - "notes": "Accusamus asperiores dignissimos sit laudantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1184, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1184, - "key": "xoryazthhpqisyfax7pxpznvpf7ch2av", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1185, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1184", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-05-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.11", - "balance": "61.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1200, - "quantity": 9, - "cost": 6.79, - "product_key": "dolor", - "notes": "Nemo maxime qui qui eos nobis. Similique sint ea dignissimos. Veniam velit modi ab eos quia odio. Consequatur totam voluptates ea perferendis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1185, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1185, - "key": "lf2wcbgs77sfe44sndirazyfq9ia6efq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1186, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1185", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2020-05-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "74.16", - "balance": "74.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1201, - "quantity": 9, - "cost": 8.24, - "product_key": "voluptatem", - "notes": "Enim amet modi iusto similique. Minima necessitatibus similique aliquid magni. Enim voluptate quis facere adipisci ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1186, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1186, - "key": "rjeyoeyfgrxfhxlugmrcopy10jeiut6n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1187, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1186", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-11", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.12", - "balance": "42.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1202, - "quantity": 6, - "cost": 7.02, - "product_key": "optio", - "notes": "Molestiae possimus eos minima at consequuntur et est. Explicabo reiciendis voluptas eligendi est aut et velit. Qui voluptatum delectus perspiciatis ea omnis enim necessitatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1187, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1187, - "key": "spk7igcsvqmdriqpfwmqn4ogkz25snpr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1188, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1187", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "58.05", - "balance": "58.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1203, - "quantity": 9, - "cost": 6.45, - "product_key": "commodi", - "notes": "Voluptatem autem nisi sed quam aut dignissimos exercitationem aut. Accusamus debitis facilis hic doloremque facere earum quis. Exercitationem quo ut accusamus perspiciatis cupiditate sapiente excepturi. Debitis quia sit id et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1188, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1188, - "key": "gf8dwfhfxbudbaroivmmyzsn0swnz8ks", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1189, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1188", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.96", - "balance": "15.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1204, - "quantity": 6, - "cost": 2.66, - "product_key": "soluta", - "notes": "Exercitationem in ipsum qui beatae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1189, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1189, - "key": "gnjxaw2tomipukkzj94cnmrjnwwlrgef", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1190, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1189", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.56", - "balance": "7.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1205, - "quantity": 6, - "cost": 1.26, - "product_key": "velit", - "notes": "Iure vero accusantium natus doloribus aut ab voluptatem id. Modi est rerum autem harum. Eum et velit magnam sint iusto numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1190, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1190, - "key": "qwemijsknsvohov6vzsvy9ailwhwpjux", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1191, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1190", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-06-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.50", - "balance": "3.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1206, - "quantity": 2, - "cost": 1.75, - "product_key": "molestiae", - "notes": "Dolores laudantium ut eaque. Corporis explicabo fuga sed architecto est. Et ipsa blanditiis voluptatum quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1191, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1191, - "key": "jokzfgzmkfobz45ef6nygklpodd9hzpc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1192, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1191", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.07", - "balance": "29.07", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1207, - "quantity": 9, - "cost": 3.23, - "product_key": "dolor", - "notes": "Debitis placeat magni sunt qui animi omnis. Ut in inventore ut hic ut voluptatem. Dolor officiis quo labore quam provident occaecati nesciunt qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1192, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1192, - "key": "e0ysvgs6u8tgjpk7gjaf4ns896u6qqsw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1193, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1192", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.78", - "balance": "3.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1208, - "quantity": 1, - "cost": 3.78, - "product_key": "voluptatibus", - "notes": "Nemo quae necessitatibus recusandae sunt quo omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1193, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1193, - "key": "pcxdxecbmdtnuckplrk7pf3npp2zlvaa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1194, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1193", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-08", - "last_sent_date": null, - "due_date": "2020-05-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.56", - "balance": "49.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1209, - "quantity": 6, - "cost": 8.26, - "product_key": "vel", - "notes": "Aut illum ducimus voluptatum a. Fuga amet eum fugit est nihil inventore. Id voluptatem placeat quia. Nisi beatae libero consequatur voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1194, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1194, - "key": "mczec1coz9xihp9dysma3tnedxgulgzq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1195, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1194", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-12", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.66", - "balance": "21.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1210, - "quantity": 6, - "cost": 3.61, - "product_key": "dignissimos", - "notes": "Consequatur et facere tenetur sapiente sint. Ad maxime commodi quo iste. Et perspiciatis hic distinctio illum. Aliquam deserunt est omnis reiciendis similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1195, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1195, - "key": "4d72d2eilfvyegwouvdttuxux9i8icyz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1196, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1195", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-21", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.55", - "balance": "40.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1211, - "quantity": 5, - "cost": 8.11, - "product_key": "et", - "notes": "Recusandae porro dolore sunt. Quae ut doloremque dolorem eum. Nihil dolorum esse fuga consequuntur aliquam. Sed in ducimus non ipsam fugit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1196, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1196, - "key": "x7q6hotca20yplyj5fwzxfoaq2xdqkjq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1197, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1196", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-26", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "87.60", - "balance": "87.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1212, - "quantity": 10, - "cost": 8.76, - "product_key": "et", - "notes": "Unde harum possimus cumque. Vero aperiam doloribus a tenetur autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1197, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1197, - "key": "ftyaztyycueovylciunywdvirxanodsw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1198, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1197", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.30", - "balance": "17.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1213, - "quantity": 10, - "cost": 1.73, - "product_key": "unde", - "notes": "Repellendus architecto a atque laborum earum quia et. Aliquam quaerat qui ut unde aut. Et voluptas odio aspernatur occaecati facilis corporis ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1198, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1198, - "key": "bgliaih5rrlnlcvfniaslbcvzij2aax2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1199, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1198", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.65", - "balance": "1.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1214, - "quantity": 1, - "cost": 1.65, - "product_key": "autem", - "notes": "Omnis praesentium neque nihil nemo. Repellat illo voluptatem veniam minus nulla fugiat. Eaque facilis necessitatibus facilis dolorem. Ullam ut aut quis aliquid.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1199, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1199, - "key": "qhrv79isszymacydsljhsrb6y8e3czk4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1200, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1199", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2019-12-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.30", - "balance": "59.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1215, - "quantity": 10, - "cost": 5.93, - "product_key": "nobis", - "notes": "Ex dolores vel aperiam deserunt. Vitae officiis odio distinctio. Error possimus recusandae sequi porro modi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1200, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1200, - "key": "tmop88trvim3zqrym6qxefxmdzlljtwx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1201, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1200", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-26", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.45", - "balance": "9.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1216, - "quantity": 7, - "cost": 1.35, - "product_key": "provident", - "notes": "Qui totam est aliquid. Repellendus illum et repudiandae debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1201, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1201, - "key": "pgobmwkhuqpmregwgdlfuowgfsltqapx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1202, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1201", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.05", - "balance": "46.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1217, - "quantity": 5, - "cost": 9.21, - "product_key": "error", - "notes": "Omnis aut alias aut amet dolorum fuga nostrum. At est et laboriosam voluptatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1202, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1202, - "key": "j4vp8hxuuh57jt0ezghytymevswq8az5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1203, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1202", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-01-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.80", - "balance": "12.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1218, - "quantity": 4, - "cost": 3.2, - "product_key": "maxime", - "notes": "Et aliquid eum omnis ut suscipit animi. Et ea libero est vero autem velit error. Officiis autem autem eos ea nihil laboriosam debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1203, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1203, - "key": "czkawkyd2b1jg8p5sk3h5vsjh0xo0plm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1204, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1203", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.58", - "balance": "5.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1219, - "quantity": 1, - "cost": 5.58, - "product_key": "provident", - "notes": "Dolorum voluptatem delectus error. Quis nostrum velit blanditiis et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1204, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1204, - "key": "84z2qmjj7fhmgc9pckhxdjn6up8qs8jk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:02", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1205, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1204", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2020-03-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.04", - "balance": "30.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1220, - "quantity": 4, - "cost": 7.51, - "product_key": "ipsa", - "notes": "Id possimus impedit molestiae est sit dolor. Quia soluta est distinctio reiciendis quos. Quis nostrum alias reprehenderit hic non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:02.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1205, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1205, - "key": "vw3mqouyj9w6rjx0f3dohsapsogjnxcu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1206, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1205", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-25", - "last_sent_date": null, - "due_date": "2019-12-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.33", - "balance": "9.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1221, - "quantity": 1, - "cost": 9.33, - "product_key": "ex", - "notes": "Non omnis nostrum quia nobis accusantium repudiandae assumenda. Sit rerum ut magnam id quam id qui. Enim corporis et esse optio. Rerum et quam vitae reprehenderit est debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1206, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1206, - "key": "4lcycy3xcyzncfrta94umen3yj3uldtt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1207, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1206", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-22", - "last_sent_date": null, - "due_date": "2020-03-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.96", - "balance": "34.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1222, - "quantity": 8, - "cost": 4.37, - "product_key": "et", - "notes": "Exercitationem sapiente error quas tempora quia a deleniti ullam. Nisi quaerat culpa eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1207, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1207, - "key": "wtqrrwq4midq0etk7szci5s260vzpuog", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1208, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1207", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.85", - "balance": "40.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1223, - "quantity": 5, - "cost": 8.17, - "product_key": "id", - "notes": "Omnis et architecto facilis eos placeat voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1208, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1208, - "key": "wrjqoi4budqxdagmsd7pcd0mqp8zzxwj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1209, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1208", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2020-05-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.30", - "balance": "20.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1224, - "quantity": 10, - "cost": 2.03, - "product_key": "ullam", - "notes": "Eveniet aut sed quidem ducimus. Ratione aspernatur aut quaerat quaerat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1209, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1209, - "key": "ilxybjh3tdy0bhdz3wegqgvj4nb9tczw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1210, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1209", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.65", - "balance": "23.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1225, - "quantity": 5, - "cost": 4.73, - "product_key": "ex", - "notes": "Repudiandae voluptatibus iusto quisquam repellat voluptatibus perferendis. Quidem et eos dolores minima. Eum facere beatae id occaecati quis ullam autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1210, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1210, - "key": "psvzofcuvnzd42jbc39jx5c4onqqv7mm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1211, - "client_id": 18, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1210", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.72", - "balance": "12.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1226, - "quantity": 3, - "cost": 4.24, - "product_key": "mollitia", - "notes": "Esse consequatur quasi inventore et. Et qui laboriosam et. Et dignissimos exercitationem sit eos autem expedita fugit. Omnis dicta aspernatur sed. Sit amet earum aut minus cumque vel. Laboriosam eligendi est nesciunt est natus dolorum voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:03.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1211, - "company_id": 1, - "user_id": 1, - "client_contact_id": 18, - "quote_id": 1211, - "key": "uog9ipqc4qequzu2d8pbjnjtqdu52ud4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:03", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1312, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1311", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2019-12-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.26", - "balance": "55.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1327, - "quantity": 6, - "cost": 9.21, - "product_key": "atque", - "notes": "Repellendus qui asperiores pariatur optio voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1312, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1312, - "key": "wyerbqwaaiqcqmgw2fxotjrsgkntasmk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1313, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1312", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.65", - "balance": "16.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1328, - "quantity": 3, - "cost": 5.55, - "product_key": "possimus", - "notes": "Consequatur perspiciatis iure qui aut. Ipsam quisquam debitis non. Rem sequi sunt omnis et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1313, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1313, - "key": "7vgtsd8ojdmqxrlrgze4amfdz3l4flzn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1314, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1313", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.12", - "balance": "9.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1329, - "quantity": 2, - "cost": 4.56, - "product_key": "velit", - "notes": "Autem iste fuga doloribus similique error quam. Temporibus ut necessitatibus velit soluta. Perspiciatis consequatur quia ut. Velit voluptatem sed autem atque fugiat ut eveniet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1314, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1314, - "key": "awq70fubab3lmnfjklgqpga5ihu3khoc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1315, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1314", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.40", - "balance": "14.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1330, - "quantity": 10, - "cost": 1.44, - "product_key": "laboriosam", - "notes": "Quam architecto quia eaque sit. Et occaecati qui ex odit aliquam et eos. Aut modi ut itaque similique.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1315, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1315, - "key": "webbuzso2lzbolzbljpjnl5k60yji0hk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1316, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1315", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": null, - "due_date": "2020-03-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.34", - "balance": "14.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1331, - "quantity": 6, - "cost": 2.39, - "product_key": "et", - "notes": "Qui nulla maiores earum quaerat et. Rerum quas maiores in sunt. Quam doloribus et ipsam temporibus. Placeat ab eaque quasi ut quia quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1316, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1316, - "key": "qadmz0130hurhtit3rgjthjxpid7jmrj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1317, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1316", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-06-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.21", - "balance": "9.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1332, - "quantity": 1, - "cost": 9.21, - "product_key": "aut", - "notes": "At debitis sit sed doloremque. Sint dignissimos est accusantium temporibus nisi. Qui illo quis est provident error deleniti officiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1317, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1317, - "key": "olrzxtxd6klbgr9epf1ru8rhi58ck1vk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1318, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1317", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.36", - "balance": "13.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1333, - "quantity": 8, - "cost": 1.67, - "product_key": "iure", - "notes": "Aspernatur voluptatem eum sit. Nihil qui non omnis at aperiam quo nobis. Animi reprehenderit voluptas hic libero alias recusandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1318, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1318, - "key": "ngae7cpeot4iocb6zcvpudvakvgp7bxz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1319, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1318", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.30", - "balance": "68.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1334, - "quantity": 10, - "cost": 6.83, - "product_key": "ut", - "notes": "Quaerat eos aperiam repudiandae blanditiis adipisci. Ex perferendis ut aut dolores. Cum sunt perspiciatis quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1319, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1319, - "key": "s6bvywysliceqeypr75gyktd45q7kxag", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1320, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1319", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-08", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.00", - "balance": "18.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1335, - "quantity": 6, - "cost": 3, - "product_key": "ut", - "notes": "Impedit voluptas quis molestiae enim architecto. Consequatur in qui neque dolor vero nam rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1320, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1320, - "key": "l2hsq0nz8ywxzyjastx8vdq7mzfp9v7o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1321, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1320", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.48", - "balance": "45.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1336, - "quantity": 6, - "cost": 7.58, - "product_key": "impedit", - "notes": "Earum aut omnis similique praesentium corrupti debitis ullam eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1321, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1321, - "key": "n811fdiprfdov7mtvzwschku3lkimcge", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1322, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1321", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-28", - "last_sent_date": null, - "due_date": "2020-04-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.20", - "balance": "43.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1337, - "quantity": 8, - "cost": 5.4, - "product_key": "deleniti", - "notes": "Qui deleniti qui et ipsum ut nesciunt placeat esse.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1322, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1322, - "key": "radbdl3lfnhjboi9q0w4jylmidyvp64l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1323, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1322", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.14", - "balance": "18.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1338, - "quantity": 2, - "cost": 9.07, - "product_key": "ut", - "notes": "Enim aut aut odit sit aperiam odio. Placeat nemo minus saepe quasi consectetur qui inventore. Animi earum id rerum. Id mollitia repudiandae incidunt ipsa. Provident aut et nesciunt vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1323, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1323, - "key": "fwntxm5mqk4aosvflfh36xvuubuhcz0j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1324, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1323", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.24", - "balance": "52.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1339, - "quantity": 8, - "cost": 6.53, - "product_key": "nesciunt", - "notes": "Accusantium alias saepe perspiciatis pariatur eveniet. Deleniti qui pariatur est non repellendus ratione amet. Aliquam est repudiandae est aperiam et porro voluptates.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1324, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1324, - "key": "odlpiub1vzs0gjeemo8shwg78uzp7ryt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1325, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1324", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.20", - "balance": "60.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1340, - "quantity": 10, - "cost": 6.02, - "product_key": "ad", - "notes": "Repellat autem autem officia sapiente. At ut qui voluptates ab quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1325, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1325, - "key": "afgo5ptypdsraffksujb6ywz843538m7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1326, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1325", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.62", - "balance": "25.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1341, - "quantity": 6, - "cost": 4.27, - "product_key": "nesciunt", - "notes": "Sint ea eveniet officia aspernatur. Dolores et eum sed sint. Dicta temporibus omnis porro ut. Ut inventore asperiores sunt aut quod voluptatem et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1326, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1326, - "key": "9jnqtii4grszvvjpcafyiuasr4zo0q6f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1327, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1326", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2019-12-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.04", - "balance": "16.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1342, - "quantity": 4, - "cost": 4.01, - "product_key": "magnam", - "notes": "Id quas sunt aliquid cumque eius expedita. Distinctio accusantium illo corporis repellat nam. Voluptatem quis nihil a consequatur eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1327, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1327, - "key": "qy4bzjyvnr5dbed5qznae9ussiz7p4ap", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1328, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1327", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.08", - "balance": "25.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1343, - "quantity": 4, - "cost": 6.27, - "product_key": "in", - "notes": "Voluptate corporis consequatur et et ex voluptatibus. Assumenda fugit ut pariatur maxime quas beatae. Maiores quis veritatis error labore corporis rerum officiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1328, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1328, - "key": "ctcae71h2lwemvq7uatpgpifkq7cuc8d", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1329, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1328", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-03", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.12", - "balance": "28.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1344, - "quantity": 4, - "cost": 7.03, - "product_key": "et", - "notes": "Vitae et similique sed sed. Neque tenetur eligendi sequi architecto. Ducimus hic non eius nulla voluptate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1329, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1329, - "key": "glconqpjwyjwpdveoyklipm8amrs83gh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1330, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1329", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.83", - "balance": "8.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1345, - "quantity": 1, - "cost": 8.83, - "product_key": "libero", - "notes": "Sequi voluptatem aut at expedita et molestias. Aut in sed eaque accusantium. Laborum maxime rem dolorum qui officiis placeat maxime. Facere temporibus tempore nihil reprehenderit perspiciatis facere placeat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1330, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1330, - "key": "baicuedkqq74vkvz5eje8htxmarynxpu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1331, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1330", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-18", - "last_sent_date": null, - "due_date": "2020-02-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.76", - "balance": "53.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1346, - "quantity": 7, - "cost": 7.68, - "product_key": "sequi", - "notes": "Culpa praesentium suscipit voluptas perferendis illum. Rem dolor reprehenderit magnam id optio. Quo ex quia rerum expedita velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1331, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1331, - "key": "6ilfc3qwpn2oxuq6pkibnislhn6gkhc7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1332, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1331", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.01", - "balance": "5.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1347, - "quantity": 1, - "cost": 5.01, - "product_key": "est", - "notes": "Animi ab ad aliquam id. Iure nobis ea officia corrupti perferendis sed. Est necessitatibus sunt aut harum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1332, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1332, - "key": "55gevuikubgbbhndydh17oqsov0uusvj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1333, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1332", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.92", - "balance": "25.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1348, - "quantity": 9, - "cost": 2.88, - "product_key": "sunt", - "notes": "Dignissimos earum possimus rerum voluptatem nemo molestiae accusantium. Eos est corporis quis voluptas. Vero pariatur inventore omnis ipsam quo quidem. Eum consequuntur iusto corrupti. Et quisquam dolor aliquam. Cumque voluptate omnis adipisci et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1333, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1333, - "key": "sjsudgs4pmhynqhousmz3sadluyt0xt2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1334, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1333", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.30", - "balance": "67.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1349, - "quantity": 10, - "cost": 6.73, - "product_key": "a", - "notes": "Voluptatum omnis ut nobis facere sit aliquid ut. Quisquam iusto molestias velit ullam aperiam nulla. Sed voluptas ex quia modi quasi tenetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1334, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1334, - "key": "9jba1viagsblhiodqi4paw7mne3qdfgj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1335, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1334", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "2020-04-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.10", - "balance": "1.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1350, - "quantity": 1, - "cost": 1.1, - "product_key": "voluptates", - "notes": "Nostrum deleniti enim amet natus sit possimus soluta. Reprehenderit omnis provident nemo. Aperiam debitis omnis quos voluptatem quo delectus maxime.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1335, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1335, - "key": "mqdkr1tlyy0ecwms7i2uyp9kqdpnolut", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1336, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1335", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.01", - "balance": "17.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1351, - "quantity": 3, - "cost": 5.67, - "product_key": "sunt", - "notes": "Veritatis iusto beatae et veritatis. Quis laudantium ratione placeat omnis. Officia optio similique eveniet aliquid fuga voluptas occaecati.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1336, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1336, - "key": "wrztryx74jdqtxphhv10niyakgwy9u2y", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1337, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1336", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.17", - "balance": "23.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1352, - "quantity": 7, - "cost": 3.31, - "product_key": "et", - "notes": "Voluptatum tempora maxime consectetur error possimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1337, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1337, - "key": "oi1y8twxbp2qcw1znizojdswkt9hqvbl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1338, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1337", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-29", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "77.60", - "balance": "77.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1353, - "quantity": 8, - "cost": 9.7, - "product_key": "in", - "notes": "Accusamus fugit quisquam quas officia assumenda. Voluptatem illo veritatis ea illo voluptatibus. Dolorem natus modi culpa voluptatem nulla eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1338, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1338, - "key": "3fsbt1r2pjwgbrawowf2mt2yvi4mjvo1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1339, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1338", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-06", - "last_sent_date": null, - "due_date": "2020-03-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "69.37", - "balance": "69.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1354, - "quantity": 7, - "cost": 9.91, - "product_key": "odit", - "notes": "Ut earum blanditiis temporibus fugiat. Eos aut temporibus qui maiores vel. Consequatur incidunt molestiae voluptatem illum aut quae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1339, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1339, - "key": "pxr14qwzvnfglmyfo9i38johoqfm5sll", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1340, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1339", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-27", - "last_sent_date": null, - "due_date": "2020-05-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.92", - "balance": "31.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1355, - "quantity": 7, - "cost": 4.56, - "product_key": "ullam", - "notes": "Laudantium minima omnis esse aliquam nam ea. Soluta blanditiis ipsa eos sit. Esse ut quo voluptas sint officiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1340, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1340, - "key": "dlo5nk3qfratnleqq1mi5fu3gzcw4zsg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1341, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1340", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2019-12-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "78.24", - "balance": "78.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1356, - "quantity": 8, - "cost": 9.78, - "product_key": "molestiae", - "notes": "Et tenetur nobis quo quibusdam quod nesciunt cum. Maxime nobis delectus architecto asperiores dicta voluptatem tenetur eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1341, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1341, - "key": "dmvzgrcnrm4fmnuqlfbzmoxouoqvbdva", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1342, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1341", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2020-06-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.42", - "balance": "30.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1357, - "quantity": 6, - "cost": 5.07, - "product_key": "quis", - "notes": "Eveniet iure sapiente et laborum nihil itaque. Nobis eum et sunt sed. Nisi in magnam id hic non eum. Pariatur saepe saepe praesentium quod quis omnis totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1342, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1342, - "key": "n1z0vt7klpajcwlhgd5y5wgpctdd4vhc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1343, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1342", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-30", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.95", - "balance": "28.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1358, - "quantity": 5, - "cost": 5.79, - "product_key": "accusantium", - "notes": "Voluptatem sed optio aut eum sunt quod quod. Ut qui aliquid numquam iure consequatur quo. Ea omnis sit minus nostrum autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1343, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1343, - "key": "unn9hevntbou7fglczr5bs9drdclh6sk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1344, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1343", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.03", - "balance": "15.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1359, - "quantity": 3, - "cost": 5.01, - "product_key": "delectus", - "notes": "Dolor sit aperiam aut autem illo facilis in. Et qui molestiae ut autem incidunt accusamus. Inventore consectetur maiores laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1344, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1344, - "key": "81nc1lx7lgughv7qzhpx0m3xp5im9vft", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1345, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1344", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.74", - "balance": "25.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1360, - "quantity": 9, - "cost": 2.86, - "product_key": "a", - "notes": "Temporibus sint quia nihil error sed. Nobis dolor officiis deserunt sed provident sapiente possimus. Magni ad vel quo natus quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1345, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1345, - "key": "n6jt2ueasnsepkledqc7oekxaoab56nf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1346, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1345", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.61", - "balance": "17.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1361, - "quantity": 3, - "cost": 5.87, - "product_key": "enim", - "notes": "Aperiam atque aut sit velit nihil. Est qui esse commodi minima repellendus et alias consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1346, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1346, - "key": "geiqhjyepbzkvqzfqegrqqrjwwellefu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1347, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1346", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.22", - "balance": "52.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1362, - "quantity": 7, - "cost": 7.46, - "product_key": "quaerat", - "notes": "Voluptatem delectus illum et voluptatibus enim rerum. Voluptatem quod ut sint sint quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1347, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1347, - "key": "voifyppi5sxfezr1v9ieqlstvg0pb1w3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1348, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1347", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-04-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.46", - "balance": "9.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1363, - "quantity": 1, - "cost": 9.46, - "product_key": "enim", - "notes": "Facilis aut quod consequatur aut. Pariatur tempora sint qui vel assumenda. Ut voluptatem atque id sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1348, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1348, - "key": "u8dhrqisafzvxkjn5sogkwgevekoeoob", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1349, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1348", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-20", - "last_sent_date": null, - "due_date": "2020-06-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.70", - "balance": "1.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1364, - "quantity": 1, - "cost": 1.7, - "product_key": "explicabo", - "notes": "Minima ipsam quia et et ducimus. Totam quo libero excepturi et aliquid ut. Esse ut omnis animi tempore ut. Consequatur laudantium labore laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1349, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1349, - "key": "sllozgy4bnywcpsqmukjvwk9soywjtmk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1350, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1349", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-16", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.00", - "balance": "20.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1365, - "quantity": 10, - "cost": 2, - "product_key": "amet", - "notes": "Numquam suscipit molestiae tempore dolor. Esse beatae excepturi eius libero. Neque quia distinctio deserunt. Ut iure iusto fugit hic iste voluptatem. Voluptates aut ratione sequi dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1350, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1350, - "key": "zcdoynnelchnstuiqdqd7vrn36nsl0s0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1351, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1350", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.12", - "balance": "51.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1366, - "quantity": 8, - "cost": 6.39, - "product_key": "est", - "notes": "Tenetur qui doloribus nostrum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1351, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1351, - "key": "enlv477ffckyegkte1zqehggxbe3eumw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1352, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1351", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-04-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.90", - "balance": "27.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1367, - "quantity": 3, - "cost": 9.3, - "product_key": "cumque", - "notes": "Quos dolor odio illum nihil. Aperiam sapiente voluptatem modi omnis accusamus neque beatae. Eligendi incidunt totam tenetur perspiciatis et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1352, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1352, - "key": "zhbxttveiafvshyexmnjyzty3swaxtu8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1353, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1352", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-03-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.77", - "balance": "22.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1368, - "quantity": 9, - "cost": 2.53, - "product_key": "id", - "notes": "Sunt reprehenderit nisi aliquid eligendi sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1353, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1353, - "key": "okwhznxlilbfhxjgkqqiux01pannfklc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1354, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1353", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.15", - "balance": "22.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1369, - "quantity": 5, - "cost": 4.43, - "product_key": "omnis", - "notes": "Saepe rerum porro voluptatem inventore asperiores et. Et quod aliquid pariatur tempora dolore. Voluptatibus iure enim ut qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:08.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1354, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1354, - "key": "awmcgdnef6psez1zlh0kzhilqbzaojh7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:08", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1355, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1354", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-27", - "last_sent_date": null, - "due_date": "2020-05-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "96.10", - "balance": "96.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1370, - "quantity": 10, - "cost": 9.61, - "product_key": "adipisci", - "notes": "Autem sequi rerum eos omnis natus et. In eos ea fugit. Eos ea quod iste vel est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1355, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1355, - "key": "rool0ajgkcnd6thgcdux6xg2dixznbzo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1356, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1355", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-22", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.92", - "balance": "53.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1371, - "quantity": 8, - "cost": 6.74, - "product_key": "praesentium", - "notes": "Suscipit officiis illo aut sequi. Non qui eligendi voluptate sed. Quas omnis cupiditate molestiae recusandae aut dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1356, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1356, - "key": "htjzhja2upgbb3tv0nqtqf3d1m1iephd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1357, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1356", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.25", - "balance": "6.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1372, - "quantity": 5, - "cost": 1.25, - "product_key": "et", - "notes": "Officia fuga sed ex officia mollitia praesentium nobis. Eligendi saepe quia ut porro quam magnam. Tempora aspernatur sapiente ipsum officia perferendis ex qui. Sint magni minima et atque inventore eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1357, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1357, - "key": "crx58ydk8azzjqfqz39uyfzegxdgg8vr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1358, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1357", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-12", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.84", - "balance": "13.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1373, - "quantity": 8, - "cost": 1.73, - "product_key": "minima", - "notes": "Consequatur tempore est in ipsam repudiandae sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1358, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1358, - "key": "ishwtysnpbgie0anxngzlpixlby1nggg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1359, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1358", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-03", - "last_sent_date": null, - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.00", - "balance": "28.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1374, - "quantity": 10, - "cost": 2.8, - "product_key": "ad", - "notes": "Adipisci molestiae dolore iste nihil quae qui delectus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1359, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1359, - "key": "ijn57r0ubmi27szsuzixpccbm8lng83v", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1360, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1359", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.74", - "balance": "25.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1375, - "quantity": 9, - "cost": 2.86, - "product_key": "at", - "notes": "Est nulla quo eveniet quos et atque soluta nihil. Maiores aliquam ducimus in consequatur. Voluptates et necessitatibus et ut repellendus ut rerum vero. Cum error quasi aut nihil aliquam cum natus. Quidem nobis delectus facere ab cumque. Sed quis sed laudantium aut dolorem qui dolorum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1360, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1360, - "key": "sxqqxgqqou5u3gg6gjvud0vtcz4czmzl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1361, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1360", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.70", - "balance": "18.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1376, - "quantity": 5, - "cost": 3.74, - "product_key": "quidem", - "notes": "Debitis quas aliquid nihil non aspernatur aut. Voluptas accusamus voluptas in minima. Expedita facere blanditiis in itaque inventore repudiandae sint. Tempore nobis quia perspiciatis ducimus qui dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1361, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1361, - "key": "wlnuoe1whm9sspz2zalrorzn3y4dhupz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1362, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1361", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.00", - "balance": "20.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1377, - "quantity": 8, - "cost": 2.5, - "product_key": "voluptate", - "notes": "Non voluptas rerum qui iste voluptatibus sit sit. Illo quae labore tempore impedit vitae ipsa. Ipsum ut non reiciendis quo qui. Mollitia velit error et distinctio sunt ut iusto amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1362, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1362, - "key": "vdoxwa7jckw9lznq3rs9qondlbsv0t3a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1363, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1362", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.70", - "balance": "32.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1378, - "quantity": 10, - "cost": 3.27, - "product_key": "repellendus", - "notes": "Quam eos nostrum porro. Aut voluptatibus reiciendis expedita dolores quia aut ratione et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1363, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1363, - "key": "p6gasnguiucusv1mz2jj1fe3fgcj3pjz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1364, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1363", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.04", - "balance": "2.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1379, - "quantity": 2, - "cost": 1.02, - "product_key": "impedit", - "notes": "Molestias reprehenderit et architecto minima animi. Voluptas quisquam vel molestias sint voluptas. Unde non dolore est nulla sint placeat consequatur omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1364, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1364, - "key": "ra3zqvm69qyt5p3humda7c7zqqy1bpov", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1365, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1364", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-12", - "last_sent_date": null, - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.89", - "balance": "50.89", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1380, - "quantity": 7, - "cost": 7.27, - "product_key": "molestias", - "notes": "Ea est in ut vel sit voluptate. Et est quae provident qui illum. Et ut ratione optio in. Ratione adipisci sed ab beatae dolorem. Fuga vitae eos ut fugit quidem ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1365, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1365, - "key": "o9lodlqhzs0aqvkykkjefzddsfmta72q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1366, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1365", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.32", - "balance": "39.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1381, - "quantity": 4, - "cost": 9.83, - "product_key": "aliquid", - "notes": "Omnis debitis recusandae quis quia deserunt incidunt. Similique sit a quis repudiandae reiciendis. Illo sit distinctio vel qui eveniet inventore voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1366, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1366, - "key": "jjwkvbcvcp2ke6myh7vvwho5bvf9mezx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1367, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1366", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "87.21", - "balance": "87.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1382, - "quantity": 9, - "cost": 9.69, - "product_key": "autem", - "notes": "Nihil magni architecto totam ex. Explicabo aut natus dolores aut dolores consequuntur ut. Fuga at architecto et ut. Quidem natus optio quo est dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1367, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1367, - "key": "tymcmgoifmvkz6w3jioje5svwrurwgwz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1368, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1367", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.06", - "balance": "51.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1383, - "quantity": 6, - "cost": 8.51, - "product_key": "ipsa", - "notes": "Consectetur assumenda facilis commodi ut sequi repudiandae minima. Aut eos error inventore sit. Quibusdam quis repellendus aut inventore ipsa. Vel alias corrupti incidunt suscipit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1368, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1368, - "key": "vd2ccvwyxaudgbxe8zv1mcjiqvnuvd22", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1369, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1368", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.63", - "balance": "14.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1384, - "quantity": 7, - "cost": 2.09, - "product_key": "commodi", - "notes": "Alias sapiente necessitatibus minus tempora consequatur omnis sunt. Accusantium itaque eum et quae voluptas suscipit voluptatum. Aut autem quos laboriosam aspernatur dicta nobis aut. Error ullam aut quam ratione.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1369, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1369, - "key": "heznlwzctdtmcnkr5nguhcbtgmekyehz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1370, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1369", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.77", - "balance": "13.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1385, - "quantity": 9, - "cost": 1.53, - "product_key": "non", - "notes": "Inventore asperiores facere possimus ex blanditiis. Eligendi ducimus modi qui magni. Omnis repellat laborum recusandae sunt ab nesciunt. Eligendi eos eius numquam sit in labore sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1370, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1370, - "key": "pn31hrvvw5pt6mru4q8zmjmhyujb8dxj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1371, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1370", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.72", - "balance": "22.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1386, - "quantity": 4, - "cost": 5.68, - "product_key": "est", - "notes": "Facere aliquam quos est occaecati enim a enim. Totam aut autem aliquam quis. Itaque magni officiis et nihil voluptas quis molestiae ratione.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1371, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1371, - "key": "m3gfdhe2uzw8fnjcfn4qix6smtkskstj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1372, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1371", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": null, - "due_date": "2020-03-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.61", - "balance": "47.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1387, - "quantity": 9, - "cost": 5.29, - "product_key": "natus", - "notes": "Quia eaque sed eos voluptatem. Voluptatem voluptas soluta minima. Sunt et et laboriosam ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1372, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1372, - "key": "vtkxkz3bnbsywop8skamglo4vb4yejot", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1373, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1372", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.28", - "balance": "17.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1388, - "quantity": 9, - "cost": 1.92, - "product_key": "eos", - "notes": "Modi maxime qui quis doloremque eius est in. Aut repudiandae laboriosam quidem dolor vel quis vero. Consequatur eos est dignissimos quas quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1373, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1373, - "key": "zdfyokzm3fpvtobdbnsnoegxwgoaxnqs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1374, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1373", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.59", - "balance": "9.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1389, - "quantity": 7, - "cost": 1.37, - "product_key": "odit", - "notes": "Corporis et aut voluptatibus laudantium optio id exercitationem necessitatibus. Libero quis enim labore qui debitis autem quam. Id sequi et laudantium magni aperiam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1374, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1374, - "key": "kspvpagvlwfdclkjpmlpggcifhcuvgui", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1375, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1374", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2019-12-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.13", - "balance": "23.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1390, - "quantity": 3, - "cost": 7.71, - "product_key": "esse", - "notes": "Beatae ut voluptates debitis architecto nostrum et. Ut maiores quam est ad dolore explicabo. Illo libero rerum cupiditate dolorem id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1375, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1375, - "key": "ypnacmiyoepjhboofukyelir2wlxrcv4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1376, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1375", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.59", - "balance": "9.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1391, - "quantity": 1, - "cost": 9.59, - "product_key": "enim", - "notes": "Dolores pariatur sed fugit eius. Voluptas ab culpa praesentium repudiandae. Et quibusdam numquam nam quidem quis. Minus quis minus in quia dolores totam. Culpa enim odio fugiat et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1376, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1376, - "key": "kcpyb5glzx6cuysfmej1xrlqgztngleh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1377, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1376", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-03-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.94", - "balance": "2.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1392, - "quantity": 2, - "cost": 1.47, - "product_key": "qui", - "notes": "Dolor repellendus non cumque ut. Nemo aut sunt iure laboriosam deleniti molestiae quisquam. Eos consectetur et quia quasi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1377, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1377, - "key": "qvbygzohsllwhkzjx5hjnduddj6rtxx1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1378, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1377", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-05", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.43", - "balance": "4.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1393, - "quantity": 1, - "cost": 4.43, - "product_key": "doloremque", - "notes": "Illum neque eligendi illum quos. Ea rerum perspiciatis qui odio dolor explicabo sed. Quis qui deserunt temporibus error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1378, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1378, - "key": "lwcytsnjjxgvhqtzpoaadyguabqsiugu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1379, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1378", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2020-02-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.96", - "balance": "66.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1394, - "quantity": 9, - "cost": 7.44, - "product_key": "temporibus", - "notes": "Aspernatur non praesentium quas dolor voluptatem et ea beatae. Error qui placeat id doloribus et ex. Accusamus et voluptas cum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1379, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1379, - "key": "mhypyzmmvwmhdel0bet3xec1jtu9ehzd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1380, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1379", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-30", - "last_sent_date": null, - "due_date": "2019-12-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.66", - "balance": "57.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1395, - "quantity": 6, - "cost": 9.61, - "product_key": "voluptas", - "notes": "Accusantium dolorem omnis cum sed at deleniti. Ipsum doloribus consequatur perferendis vitae. Sequi fuga debitis non est quod ut rerum. Facere voluptatem qui non nihil commodi consequuntur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1380, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1380, - "key": "jkljpt0yjkxak6wwu4uhmts04qzcrzbx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1381, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1380", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-28", - "last_sent_date": null, - "due_date": "2020-03-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.67", - "balance": "68.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1396, - "quantity": 9, - "cost": 7.63, - "product_key": "minus", - "notes": "Omnis animi ea consequatur omnis laudantium atque. Aut cupiditate nisi quo. Consequatur magnam atque omnis omnis. Ullam temporibus est qui quos. Vitae voluptatibus at placeat consequatur. Ex incidunt accusantium occaecati sed laborum molestias. Iste sed aut magni expedita corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1381, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1381, - "key": "nretabvbwjp6mahq48kehy1e3lqtvsow", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1382, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1381", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-14", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.52", - "balance": "17.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1397, - "quantity": 8, - "cost": 2.19, - "product_key": "sint", - "notes": "Officia qui et fugiat suscipit occaecati. Et dolor id est alias et qui dolore temporibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1382, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1382, - "key": "xuhuk8r9z53svvvghroaxid4hhslnycq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1383, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1382", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.92", - "balance": "19.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1398, - "quantity": 2, - "cost": 9.96, - "product_key": "aut", - "notes": "Rerum eveniet doloribus provident ab itaque debitis eaque blanditiis. Laborum dolorem nemo deserunt. Quo vel atque autem magni. Quas ratione blanditiis quod non accusantium culpa amet porro.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1383, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1383, - "key": "ujqagqhtmm3vksxtcbl3tdeejdcuihmj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1384, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1383", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-30", - "last_sent_date": null, - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.44", - "balance": "59.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1399, - "quantity": 8, - "cost": 7.43, - "product_key": "qui", - "notes": "Et quia quod exercitationem dolor rerum officiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1384, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1384, - "key": "blehdm7lacaxq09k6uehroqobhwpdtwq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1385, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1384", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.68", - "balance": "28.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1400, - "quantity": 3, - "cost": 9.56, - "product_key": "dolores", - "notes": "Ratione numquam vitae at ipsum exercitationem qui. Repellat incidunt eius ut consectetur. Perferendis magni sint odio quam vel vitae ut. Impedit natus dolore eos consequuntur sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1385, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1385, - "key": "knqsgzqssffmf2aei103ezdvqrhqiymz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1386, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1385", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.58", - "balance": "7.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1401, - "quantity": 1, - "cost": 7.58, - "product_key": "corporis", - "notes": "Dolores et voluptatem doloremque error amet ex. Possimus veritatis sed totam neque culpa. Dignissimos et nesciunt et eaque sit explicabo. Aut nemo incidunt quis illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1386, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1386, - "key": "0kkil0xsb9qy9mvjatyvlqgrzkcwanhe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1387, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1386", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-11", - "last_sent_date": null, - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.04", - "balance": "2.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1402, - "quantity": 1, - "cost": 2.04, - "product_key": "dolorum", - "notes": "Iure fugiat nisi iusto eligendi. Doloribus ut aspernatur atque corporis. Qui dolorem et suscipit voluptas. Autem impedit sunt vel nihil sequi aut. Qui ducimus corporis deserunt dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1387, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1387, - "key": "c3dafxsrd5i8quc0ggw06qatlipej1ke", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1388, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1387", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": null, - "due_date": "2020-03-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.55", - "balance": "53.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1403, - "quantity": 9, - "cost": 5.95, - "product_key": "rem", - "notes": "Quaerat quaerat tenetur quae voluptas dicta. Maxime est ab amet dolorum tempore expedita ut consectetur. Odio id rerum sed fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1388, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1388, - "key": "amajpym9s7nsnp1vyupn4mupvb7wcsxh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1389, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1388", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2019-12-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.00", - "balance": "22.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1404, - "quantity": 8, - "cost": 2.75, - "product_key": "nihil", - "notes": "Aut mollitia accusamus est laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1389, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1389, - "key": "ssx1vj21uvx3g586begasyxv5bnpmwaa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1390, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1389", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.40", - "balance": "11.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1405, - "quantity": 4, - "cost": 2.85, - "product_key": "voluptatem", - "notes": "Dolores libero non laudantium perspiciatis rerum ut. Nemo ex molestiae porro aliquid. Pariatur fuga autem ut est distinctio dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1390, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1390, - "key": "pfvxrt7yzklbeva4nwoofm9bp9sei5nu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1391, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1390", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-14", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.22", - "balance": "8.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1406, - "quantity": 6, - "cost": 1.37, - "product_key": "qui", - "notes": "Temporibus odit maiores quos. Qui impedit molestiae iste est molestiae. Ducimus qui corporis distinctio et. Aliquam dicta asperiores ut eligendi nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1391, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1391, - "key": "rlwlvdinwuwpds5g2lpozwkl5frncnkp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1392, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1391", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.90", - "balance": "36.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1407, - "quantity": 5, - "cost": 7.38, - "product_key": "voluptatem", - "notes": "Nisi dolor reiciendis quam est et fugit a error. Consequatur et iste vel reiciendis ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1392, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1392, - "key": "fontouqhlsgazkfwce1qn1ec6oy7cnlr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1393, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1392", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-03", - "last_sent_date": null, - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.08", - "balance": "27.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1408, - "quantity": 4, - "cost": 6.77, - "product_key": "consequatur", - "notes": "Minima accusamus eligendi nostrum autem. Eum accusantium provident sed a maiores. Ut eligendi autem placeat ex alias ut et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1393, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1393, - "key": "jg3viq2f327od9r3ney1wzpoey8fcgyr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1394, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1393", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.05", - "balance": "21.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1409, - "quantity": 5, - "cost": 4.21, - "product_key": "quod", - "notes": "Assumenda at quam reprehenderit sed a omnis. Animi facilis excepturi eaque doloribus. Nihil cumque repudiandae nihil non delectus qui delectus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1394, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1394, - "key": "uuvw9h6ubxopvpqxsn3pj66gpugrwxxp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1395, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1394", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.10", - "balance": "32.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1410, - "quantity": 5, - "cost": 6.42, - "product_key": "autem", - "notes": "Sed aperiam dolore perferendis. Quisquam est unde voluptas est qui. Quia veniam velit illo rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1395, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1395, - "key": "41pylqnz1xhaz9k4zdj2qkonyzpwihfy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1396, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1395", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-13", - "last_sent_date": null, - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.80", - "balance": "31.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1411, - "quantity": 5, - "cost": 6.36, - "product_key": "ad", - "notes": "Quo totam doloribus minus rerum similique rerum. Quas ea sit magni et quibusdam. Reiciendis facilis qui repellat fugit earum. Sed sint quam voluptas numquam. Cum provident sunt non quisquam possimus. Autem dolores aperiam voluptatem et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1396, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1396, - "key": "jog1zzsht5s2l1th8c8rbqefwh5cqe41", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1397, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1396", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-10", - "last_sent_date": null, - "due_date": "2019-12-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.94", - "balance": "9.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1412, - "quantity": 2, - "cost": 4.97, - "product_key": "natus", - "notes": "Accusamus pariatur quas optio architecto. Ullam corrupti magnam nisi delectus voluptate sequi aut. Eveniet magni itaque et ut. Et recusandae molestiae id saepe et ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1397, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1397, - "key": "slmao3wm9saw6pw9swfmj4gewbiy7fn8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1398, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1397", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-16", - "last_sent_date": null, - "due_date": "2020-05-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.32", - "balance": "6.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1413, - "quantity": 1, - "cost": 6.32, - "product_key": "provident", - "notes": "Aut qui voluptas quibusdam velit. Autem sed ipsa neque omnis vel ut. Nisi nostrum et assumenda officia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1398, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1398, - "key": "q7q1jo0zpcmvcsjeuwrjaqyzp43ad0de", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1399, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1398", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.28", - "balance": "36.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1414, - "quantity": 4, - "cost": 9.07, - "product_key": "ut", - "notes": "Quia voluptates qui ut enim quia dolorem. Dignissimos sint est dolores ad et optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1399, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1399, - "key": "j4crdhjfd3s1s9e4ulwql0chqsout978", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1400, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1399", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.32", - "balance": "8.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1415, - "quantity": 2, - "cost": 4.16, - "product_key": "quis", - "notes": "Dolores nulla consectetur eum corporis voluptatem. Quaerat eum aliquid sapiente ullam et soluta nihil cumque. Aut cupiditate recusandae est aliquid a perspiciatis eaque odio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1400, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1400, - "key": "ohgohvmwsgrluw3bpkwbdvgontg8lanu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1401, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1400", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-01-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.88", - "balance": "1.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1416, - "quantity": 1, - "cost": 1.88, - "product_key": "cum", - "notes": "Id inventore excepturi eos quia amet. Commodi sed alias aut ut saepe. Rerum optio ut voluptates.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:09.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1401, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1401, - "key": "ltav7k1khgaihuzxcgkjbklawqqmwfwe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:09", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1402, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1401", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.20", - "balance": "9.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1417, - "quantity": 5, - "cost": 1.84, - "product_key": "blanditiis", - "notes": "Sed ut doloremque aut sit tenetur dolorem. Ut quas accusantium tempore. Magnam officia quam quod et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1402, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1402, - "key": "y9nq4g6sznbolakud05ukox7yzflpssu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1403, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1402", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-04-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.00", - "balance": "46.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1418, - "quantity": 8, - "cost": 5.75, - "product_key": "non", - "notes": "Tenetur repudiandae consequatur quisquam et et. Ab odio sequi ea voluptatibus natus iure. Non saepe aliquid dolores. Asperiores eum esse est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1403, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1403, - "key": "qoo4yqdelvmjkgvwgqqxi7njnclrwndq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1404, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1403", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.57", - "balance": "9.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1419, - "quantity": 3, - "cost": 3.19, - "product_key": "facilis", - "notes": "Et et voluptatem aspernatur recusandae impedit repellat labore. Ipsa a officiis amet nostrum error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1404, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1404, - "key": "kq8i7qmd2chg82hegw641ag7trytyclb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1405, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1404", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.77", - "balance": "49.77", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1420, - "quantity": 7, - "cost": 7.11, - "product_key": "et", - "notes": "Sunt quia voluptatem laborum ducimus accusantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1405, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1405, - "key": "1olr9f2tget7t7hm2dhcc2fmyzpt7vty", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1406, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1405", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.05", - "balance": "29.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1421, - "quantity": 7, - "cost": 4.15, - "product_key": "et", - "notes": "Unde autem velit adipisci quis. In ut possimus officiis dolorem ut dolores. Labore reiciendis aut nihil porro nesciunt rerum sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1406, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1406, - "key": "fnmoa0mtgct0h6vfubyqyw7c0wariwwl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1407, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1406", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.89", - "balance": "64.89", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1422, - "quantity": 9, - "cost": 7.21, - "product_key": "velit", - "notes": "Nihil et sapiente quis. Repellendus tempora et nihil ut sequi itaque. Officia ut sequi fugiat sint commodi nesciunt. Eaque cumque minus molestiae dolorem est consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1407, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1407, - "key": "fe23vrqstbqblztzywoizn38zpytm4on", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1408, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1407", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-13", - "last_sent_date": null, - "due_date": "2020-06-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.45", - "balance": "24.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1423, - "quantity": 3, - "cost": 8.15, - "product_key": "ratione", - "notes": "Non ea temporibus tempora. Ut veritatis tempore vero consectetur molestias et quos esse. Eaque minus dolor et velit animi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1408, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1408, - "key": "vp9qwp9ofpqenoepjunyf7xf7fo78aq5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1409, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1408", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.66", - "balance": "9.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1424, - "quantity": 2, - "cost": 4.83, - "product_key": "corporis", - "notes": "Ea et et neque repellendus non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1409, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1409, - "key": "i6q2ehxgp5klxwhzd7kma9lxbe4kprrx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1410, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1409", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.84", - "balance": "35.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1425, - "quantity": 8, - "cost": 4.48, - "product_key": "possimus", - "notes": "Quidem architecto voluptates facilis blanditiis tempora.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1410, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1410, - "key": "ze8x3y70rpbhdom3eljxoafnrayah2wd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1411, - "client_id": 19, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1410", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.29", - "balance": "19.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1426, - "quantity": 3, - "cost": 6.43, - "product_key": "eum", - "notes": "Et iure reprehenderit corporis animi repudiandae doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:10.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1411, - "company_id": 1, - "user_id": 1, - "client_contact_id": 19, - "quote_id": 1411, - "key": "fsrdg7ea3vq9kmqtwgofpdkdzl6fumdk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:10", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1512, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1511", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-03-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.92", - "balance": "22.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1527, - "quantity": 4, - "cost": 5.73, - "product_key": "quibusdam", - "notes": "Est omnis explicabo odit ea hic facilis. Est libero consequatur hic illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1512, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1512, - "key": "p8oln9nmbntt27vdutjuvb4bjd41okon", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1513, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1512", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-13", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.52", - "balance": "7.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1528, - "quantity": 1, - "cost": 7.52, - "product_key": "corporis", - "notes": "Et et consectetur a eligendi autem. Ut velit sit qui qui non. Dignissimos in eum quia a.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1513, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1513, - "key": "gts8imify6qeek1mnq7vvrmz0dyjp0ck", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1514, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1513", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.95", - "balance": "45.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1529, - "quantity": 5, - "cost": 9.19, - "product_key": "molestiae", - "notes": "Non omnis facilis eligendi consectetur autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1514, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1514, - "key": "orubzczzgitr62xi3ywvibpzqufubwc0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1515, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1514", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-20", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.25", - "balance": "8.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1530, - "quantity": 1, - "cost": 8.25, - "product_key": "ea", - "notes": "Sit quia autem iure sint. Quidem delectus tempore sed sed odit esse aperiam. Itaque aut hic vel iure vitae repellendus libero quibusdam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1515, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1515, - "key": "d23zda4trobveyno0cw2cm489ccomyx5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1516, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1515", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-04-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "48.80", - "balance": "48.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1531, - "quantity": 10, - "cost": 4.88, - "product_key": "magni", - "notes": "Doloribus similique vel adipisci natus. Praesentium repellendus quidem quis. Odio necessitatibus incidunt tenetur porro necessitatibus. Iure consectetur ducimus ut fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1516, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1516, - "key": "o0vph60ltumkgcasprutjgatboz9xmdq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1517, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1516", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2019-12-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.60", - "balance": "34.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1532, - "quantity": 10, - "cost": 3.46, - "product_key": "cum", - "notes": "Non ad quam officia alias magni odit non. Inventore quo temporibus quia vel accusamus eos animi. Soluta officia velit aut et et laborum dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1517, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1517, - "key": "babxltikfosyga6zgroc0yb7l2cw3naz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1518, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1517", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.36", - "balance": "43.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1533, - "quantity": 8, - "cost": 5.42, - "product_key": "debitis", - "notes": "Natus esse officia excepturi dolorum eveniet dolorem. Quae ipsa dolor beatae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1518, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1518, - "key": "k5fyqswgw0uwipizm08yvh6m2xbwrst0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1519, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1518", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-10", - "last_sent_date": null, - "due_date": "2020-02-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.35", - "balance": "42.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1534, - "quantity": 7, - "cost": 6.05, - "product_key": "mollitia", - "notes": "Laudantium rerum maiores ut repellendus et et. Odio laboriosam aut voluptate unde vel. Nulla aliquam quia ut nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1519, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1519, - "key": "i8z7wwhbshnyo7oh1nesmdddsoxyfpqh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1520, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1519", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-25", - "last_sent_date": null, - "due_date": "2020-02-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.70", - "balance": "20.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1535, - "quantity": 10, - "cost": 2.07, - "product_key": "dolor", - "notes": "Consequatur qui necessitatibus accusantium omnis id. Et tempore et quia et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1520, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1520, - "key": "lbngqmz77inqjsc2oujkjvjq560nci3s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1521, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1520", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "88.10", - "balance": "88.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1536, - "quantity": 10, - "cost": 8.81, - "product_key": "dolor", - "notes": "Voluptatem quaerat optio occaecati exercitationem. Omnis maiores assumenda ipsa exercitationem velit quia. Error aut sunt aliquid eveniet et quia minus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1521, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1521, - "key": "pob0tuktq3fgu00alzhxiqul0kye3mp5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1522, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1521", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-05", - "last_sent_date": null, - "due_date": "2020-04-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.67", - "balance": "54.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1537, - "quantity": 7, - "cost": 7.81, - "product_key": "suscipit", - "notes": "Sint nihil consequatur eius facilis voluptatibus aliquid sint consequuntur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1522, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1522, - "key": "aehqpwt2hyrbwirwfmoyzvjzzatdocmh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1523, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1522", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.08", - "balance": "3.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1538, - "quantity": 2, - "cost": 1.54, - "product_key": "autem", - "notes": "Corrupti voluptatibus et quo rerum occaecati deserunt. Ipsum nulla nisi eos nemo. Autem quaerat sed eveniet recusandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1523, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1523, - "key": "lyrqkj4skrixikzloucgiqsx3p01fjke", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1524, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1523", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.81", - "balance": "61.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1539, - "quantity": 7, - "cost": 8.83, - "product_key": "quis", - "notes": "Tenetur assumenda id omnis sed atque vel. Qui odio optio fugit non corrupti aspernatur nihil. Totam modi aperiam neque repellat maiores quidem eum. Non voluptas tempore natus doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1524, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1524, - "key": "udjbmt4jwpshkiiwcopguoq8fgsrj5hy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1525, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1524", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2019-12-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.97", - "balance": "67.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1540, - "quantity": 7, - "cost": 9.71, - "product_key": "perferendis", - "notes": "Omnis atque saepe rerum quo. Voluptas perferendis iusto rerum ut et et consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1525, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1525, - "key": "5zfnqztjotrngoxglsc5vm20cfsoode5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1526, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1525", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.44", - "balance": "52.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1541, - "quantity": 6, - "cost": 8.74, - "product_key": "nihil", - "notes": "Perspiciatis sit quisquam aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1526, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1526, - "key": "jbgdnddedzgo0wqopdlk6vhv50a6fo5n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1527, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1526", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.52", - "balance": "9.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1542, - "quantity": 8, - "cost": 1.19, - "product_key": "quos", - "notes": "Totam dolor est officia incidunt commodi ipsam. Fuga voluptatem dolor eos et veniam ullam aperiam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1527, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1527, - "key": "w4v81wwrodbag3ts86uyyqz5o2hcygfz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1528, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1527", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "99.70", - "balance": "99.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1543, - "quantity": 10, - "cost": 9.97, - "product_key": "ducimus", - "notes": "Quod temporibus eveniet quaerat maiores pariatur dolor. Illo et doloremque modi voluptatem in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1528, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1528, - "key": "l1cw3xj908b6rsza58bsva9ecfehuggb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1529, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1528", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.48", - "balance": "18.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1544, - "quantity": 3, - "cost": 6.16, - "product_key": "est", - "notes": "Doloremque reprehenderit voluptatem sit eum. Quos facilis repellat amet sunt veritatis dolorem reiciendis dolore. Libero at quo beatae facilis totam incidunt qui architecto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1529, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1529, - "key": "ful8tqfqunm9xbgedueymyjoe8kwdt4m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1530, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1529", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-09", - "last_sent_date": null, - "due_date": "2020-01-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.64", - "balance": "16.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1545, - "quantity": 4, - "cost": 4.16, - "product_key": "placeat", - "notes": "Repellat at eos officiis sint nemo. Illum qui repellendus omnis. Est fuga ut vero aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1530, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1530, - "key": "ro8g4ufqgzwmjuvmclf7ku8xu8rjhi9n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1531, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1530", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-03", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.14", - "balance": "4.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1546, - "quantity": 1, - "cost": 4.14, - "product_key": "magni", - "notes": "Quam et consectetur dicta magnam totam. Sed pariatur nobis sint. Fuga et tempora voluptatem quod id animi et architecto. Illo et et omnis corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1531, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1531, - "key": "v7r9ppitrqegz9oqfhwiu8buyvbrzhwx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1532, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1531", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.20", - "balance": "10.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1547, - "quantity": 5, - "cost": 2.04, - "product_key": "harum", - "notes": "Totam perferendis voluptatum voluptatem aut exercitationem. Enim provident enim suscipit. Quam cum nihil odit qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1532, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1532, - "key": "gdblqbyi56f4qitfdtdtnf55t0pzfmke", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1533, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1532", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.76", - "balance": "11.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1548, - "quantity": 2, - "cost": 5.88, - "product_key": "modi", - "notes": "Deserunt repellat sunt et voluptatem occaecati et. Cumque qui est error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1533, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1533, - "key": "vskdsc2tvrz0yyqntdetqeav6n55dpnj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1534, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1533", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-12", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "81.40", - "balance": "81.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1549, - "quantity": 10, - "cost": 8.14, - "product_key": "delectus", - "notes": "Et repellendus a molestiae nostrum. Quia corrupti nihil voluptates voluptatem doloremque. Perferendis nam sunt aut quae est consequuntur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1534, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1534, - "key": "ffdrfd1b06j3zbd2palgguhenzzrg0js", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1535, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1534", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-18", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.60", - "balance": "12.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1550, - "quantity": 4, - "cost": 3.15, - "product_key": "distinctio", - "notes": "Eos ad id ut qui. Architecto repudiandae et inventore iure. Architecto amet vitae dicta sit quis voluptas. Aut ullam sint nihil distinctio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1535, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1535, - "key": "grwnytz7e4pontvcyr7dbzzgzb64zx22", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1536, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1535", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.88", - "balance": "12.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1551, - "quantity": 2, - "cost": 6.44, - "product_key": "natus", - "notes": "Sed reprehenderit officia quis. Enim deserunt perspiciatis voluptas quia provident aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1536, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1536, - "key": "rlfymfxy5liloht1hudqumyhmd0qmapd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1537, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1536", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.50", - "balance": "8.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1552, - "quantity": 1, - "cost": 8.5, - "product_key": "harum", - "notes": "Et omnis ut totam. Deleniti impedit enim architecto veniam eveniet est. Dolorum sint autem quia sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1537, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1537, - "key": "nskz7pbdvq9je0uymngu58nnjmhzahnb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1538, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1537", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-12", - "last_sent_date": null, - "due_date": "2020-06-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.83", - "balance": "1.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1553, - "quantity": 1, - "cost": 1.83, - "product_key": "iusto", - "notes": "Quia vel rem optio unde voluptatem velit. Et nulla distinctio sunt. Enim quibusdam non dolore vel voluptatem inventore. Dolores in eum dignissimos omnis quae vel repellendus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1538, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1538, - "key": "gho626y0pv2foxee9bveco0lkeoza9ij", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1539, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1538", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2019-12-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.61", - "balance": "17.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1554, - "quantity": 3, - "cost": 5.87, - "product_key": "ut", - "notes": "Velit rerum voluptatem cum doloremque. Voluptas possimus placeat eligendi excepturi cupiditate. Consequuntur quia eum non veniam eos perspiciatis. Consectetur repellendus quibusdam illum voluptatibus iusto dolor alias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1539, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1539, - "key": "stcnfdmijakjmjmmnfawcghrvkldcpt8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1540, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1539", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-09", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.94", - "balance": "8.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1555, - "quantity": 3, - "cost": 2.98, - "product_key": "iste", - "notes": "Non est totam magnam qui. In qui at aliquid et dolorem dolor. Pariatur quidem tenetur sunt laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1540, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1540, - "key": "itxkhy9goeqy9yw9ihzroiqyd2q0lbe8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1541, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1540", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.35", - "balance": "7.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1556, - "quantity": 3, - "cost": 2.45, - "product_key": "placeat", - "notes": "Totam debitis quos autem necessitatibus omnis. Eligendi asperiores et sunt omnis quae inventore. Eius quo consectetur expedita vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1541, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1541, - "key": "l0tkpkhxb14i6vcebpwhepusgf4xeug5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1542, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1541", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2020-04-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "56.46", - "balance": "56.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1557, - "quantity": 6, - "cost": 9.41, - "product_key": "rerum", - "notes": "Voluptatem quia quidem dolores ab. Dolorum beatae deserunt dolorum qui et iure. In voluptatibus accusantium est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1542, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1542, - "key": "iiusnx2atailtbajoszugexmiqxqwe9g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1543, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1542", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": null, - "due_date": "2020-06-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.08", - "balance": "46.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1558, - "quantity": 6, - "cost": 7.68, - "product_key": "et", - "notes": "Vel blanditiis quo neque velit perferendis. Aliquam officiis nostrum nisi necessitatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1543, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1543, - "key": "tjrb7muvf0pozhfi38ihlunoksnghmue", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1544, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1543", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-10", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.19", - "balance": "14.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1559, - "quantity": 3, - "cost": 4.73, - "product_key": "quia", - "notes": "Accusantium aut assumenda laudantium vel facilis odio. Et sunt non at et iste nostrum. Illum exercitationem qui ea aut. Atque magni ut asperiores deleniti corporis repellat quam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1544, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1544, - "key": "o4yn5hszm6dozcsg8gvwutb8cqbc2nyv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1545, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1544", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.25", - "balance": "44.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1560, - "quantity": 5, - "cost": 8.85, - "product_key": "adipisci", - "notes": "Commodi omnis velit corrupti omnis. Voluptatem eos distinctio maxime tempora. Provident odit quis pariatur earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1545, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1545, - "key": "k6mayzowg4vidjxt42sveuy956iehymx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1546, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1545", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-03-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.88", - "balance": "47.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1561, - "quantity": 9, - "cost": 5.32, - "product_key": "repudiandae", - "notes": "Rerum nulla natus quia veritatis eos provident ut aut. Ipsum id porro esse dolore totam accusamus architecto. In facilis voluptatem minus qui labore illum necessitatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1546, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1546, - "key": "3xsiu9sqkwdaof2mwukygd6u61rz1x7x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1547, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1546", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2019-12-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.71", - "balance": "31.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1562, - "quantity": 7, - "cost": 4.53, - "product_key": "quis", - "notes": "Voluptas dolores reprehenderit atque atque debitis. Illo eum velit saepe. Minima laboriosam autem id modi quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1547, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1547, - "key": "vlpn1bdc5arydpmnlseo4uggvmx4ykz7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1548, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1547", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-26", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "86.10", - "balance": "86.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1563, - "quantity": 10, - "cost": 8.61, - "product_key": "voluptatibus", - "notes": "Culpa deserunt nihil quo ad ratione. Quos enim neque corporis numquam. Aut ipsam in explicabo alias et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1548, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1548, - "key": "4vd4h2rwqtz6see1b4t4c0bqxsig1nnv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:15", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1549, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1548", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.25", - "balance": "33.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1564, - "quantity": 7, - "cost": 4.75, - "product_key": "repudiandae", - "notes": "Quia ullam est sed itaque voluptas qui ab. Et illum culpa repellendus dolores quia in ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:15.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1549, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1549, - "key": "jepltdcomij2glaeoijpjwielwan5czk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1550, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1549", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-17", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.26", - "balance": "15.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1565, - "quantity": 7, - "cost": 2.18, - "product_key": "facere", - "notes": "Est velit explicabo corrupti at et dolorum. Perspiciatis occaecati voluptas error sit. Dolores et amet harum odit enim sint neque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1550, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1550, - "key": "lpbz07oprwn2uakw5w1hzydu9cvytsew", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1551, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1550", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-13", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.60", - "balance": "42.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1566, - "quantity": 5, - "cost": 8.52, - "product_key": "quia", - "notes": "Ab qui placeat illo eius. Vel aperiam et nemo. Porro reiciendis et sed. Dolores debitis atque est et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1551, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1551, - "key": "2tuoshgf6nfq9kdqmia1rhphfh8uegjz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1552, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1551", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.20", - "balance": "57.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1567, - "quantity": 8, - "cost": 7.15, - "product_key": "sunt", - "notes": "Quidem quis sit soluta autem dignissimos earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1552, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1552, - "key": "b5esoknzl996idpbxnuiypbf66yhzojw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1553, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1552", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.49", - "balance": "59.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1568, - "quantity": 9, - "cost": 6.61, - "product_key": "sunt", - "notes": "Enim vitae tempore eaque nostrum. Et quasi ipsa quasi voluptas et nobis aut qui. Laudantium quia nam delectus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1553, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1553, - "key": "pkod5jdrxifurlh9znpv0xhgapdwn5wh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1554, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1553", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.75", - "balance": "42.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1569, - "quantity": 9, - "cost": 4.75, - "product_key": "cum", - "notes": "Voluptatem aliquid est sit aspernatur dolor sed eos ipsam. Facilis dolorem voluptatem nesciunt. Velit culpa et doloribus dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1554, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1554, - "key": "pw4ugkdrvjzinc72srg5gaxcgefmuaso", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1555, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1554", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.21", - "balance": "27.21", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1570, - "quantity": 3, - "cost": 9.07, - "product_key": "sunt", - "notes": "Ratione et in reiciendis vel. Aperiam rerum est dolores labore sint. Temporibus non hic voluptatem eveniet et sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1555, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1555, - "key": "0jiaothaulbl0t7mbj8dlrpp2zpxihqx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1556, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1555", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "58.95", - "balance": "58.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1571, - "quantity": 9, - "cost": 6.55, - "product_key": "iste", - "notes": "Corrupti ut deleniti unde labore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1556, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1556, - "key": "i38fgvfgmv1vntlyfbqcqblfljr7iqzr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1557, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1556", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-22", - "last_sent_date": null, - "due_date": "2020-04-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.95", - "balance": "1.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1572, - "quantity": 1, - "cost": 1.95, - "product_key": "sed", - "notes": "Recusandae unde provident itaque. Aut facere repellendus dolorem odio sapiente quisquam. Natus qui voluptate pariatur sed tenetur explicabo. Sunt commodi porro sed totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1557, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1557, - "key": "5g6crumxtkhbcmcz2ilpzlxegnay2g2v", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1558, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1557", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-03-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.22", - "balance": "26.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1573, - "quantity": 6, - "cost": 4.37, - "product_key": "est", - "notes": "Amet eius repudiandae et nihil. Magnam quod accusamus nemo. At laboriosam qui non qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1558, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1558, - "key": "ik4flvuydpcxgts88zymqj2zfgpyfkcm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1559, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1558", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-31", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.10", - "balance": "23.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1574, - "quantity": 5, - "cost": 4.62, - "product_key": "perspiciatis", - "notes": "Suscipit nihil beatae et et qui repudiandae. Doloribus sunt consequatur tempora voluptatem. Recusandae saepe quod vel id consectetur. Nemo doloremque minus sint soluta alias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1559, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1559, - "key": "pa2yz1cvfwqsgq9vye4hisvfu9znlkne", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1560, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1559", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "86.50", - "balance": "86.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1575, - "quantity": 10, - "cost": 8.65, - "product_key": "est", - "notes": "In temporibus dignissimos alias ratione. Dolor quidem officiis est aut odit. Illum consequuntur modi voluptatem quia qui explicabo. Nihil eum magnam rerum quia molestiae. Exercitationem harum et quia ut ea. Sed et autem blanditiis non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1560, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1560, - "key": "cpohwrle0kmuoycnh22qadyzxyykxpab", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1561, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1560", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-08", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.12", - "balance": "31.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1576, - "quantity": 8, - "cost": 3.89, - "product_key": "itaque", - "notes": "Facilis sed ipsum dolorem consequatur fugiat. Doloremque consequatur dolore animi maiores. Nostrum dolor corrupti dolor temporibus quasi deleniti. Aliquid deleniti magni libero et soluta corrupti sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1561, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1561, - "key": "oqwcvfluzk5t5gire3ftzpdt9j7dannc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1562, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1561", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2019-12-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.80", - "balance": "23.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1577, - "quantity": 5, - "cost": 4.76, - "product_key": "veniam", - "notes": "Illo illo ut atque non. Voluptatem nihil aperiam aut nihil animi. Totam accusamus consectetur maxime eum. Sint quo facere quibusdam est laudantium quos velit. Pariatur quae molestias eligendi aut in odio sint. Quo modi a quis laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1562, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1562, - "key": "606zkfobjk6ijpghj0v0q2kblofnufuk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1563, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1562", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-05-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.82", - "balance": "36.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1578, - "quantity": 7, - "cost": 5.26, - "product_key": "nostrum", - "notes": "Est tempora voluptatem vitae nemo incidunt id magnam. Rerum vero modi aut est laboriosam. Quia aspernatur sed aliquam ut ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1563, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1563, - "key": "oxlghmzujktcdzevy8lk3ep2j1ymmz9t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1564, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1563", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.06", - "balance": "2.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1579, - "quantity": 1, - "cost": 2.06, - "product_key": "corporis", - "notes": "Assumenda fugiat facere eveniet voluptas ut. Officia aut provident rem eos. Et deleniti officia exercitationem ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1564, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1564, - "key": "eutcfekvncfigq3xmhejkdhpfdrrpxcj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1565, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1564", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-19", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.01", - "balance": "44.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1580, - "quantity": 9, - "cost": 4.89, - "product_key": "dolorum", - "notes": "Voluptas rerum eum ex cupiditate inventore soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1565, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1565, - "key": "plndnfsrblab4xjzcivdj3pxlc8rek1e", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1566, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1565", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "97.10", - "balance": "97.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1581, - "quantity": 10, - "cost": 9.71, - "product_key": "quis", - "notes": "Adipisci doloremque placeat et nihil error porro. Sit ut inventore perferendis iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1566, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1566, - "key": "b3jros02wwttpvyw5h5ekf1twhup2j3w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1567, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1566", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.94", - "balance": "3.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1582, - "quantity": 2, - "cost": 1.97, - "product_key": "unde", - "notes": "Et iste eaque doloribus ut rerum soluta. Enim et enim voluptatem et non. Maiores nihil quia beatae voluptas et ut. Voluptas voluptatem consequatur non quidem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1567, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1567, - "key": "nt4vq9ciokocudkscy7ih22s4cxoqzjl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1568, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1567", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.10", - "balance": "28.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1583, - "quantity": 10, - "cost": 2.81, - "product_key": "ut", - "notes": "Omnis porro sint et. Explicabo occaecati quia eum ut exercitationem excepturi. Nostrum dolores ex ut molestiae quo non sed. Deserunt delectus sapiente aliquid reprehenderit ut id numquam. Consequatur voluptate id voluptatem. Ut non iure tempore facere voluptate qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1568, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1568, - "key": "mn464vxisupwsgbx2hhdqowtnfm3amvv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1569, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1568", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.49", - "balance": "14.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1584, - "quantity": 9, - "cost": 1.61, - "product_key": "est", - "notes": "Fugit magni rerum et accusamus neque maxime. Commodi non aut aut omnis autem totam quia. Iste quia voluptatibus deserunt sint illum molestiae. Eveniet aut in quas ut. Ut natus ut cumque cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1569, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1569, - "key": "1gzafhoxegkmfzlla0hhusdm5oounvdp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1570, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1569", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-05-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.60", - "balance": "52.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1585, - "quantity": 10, - "cost": 5.26, - "product_key": "nesciunt", - "notes": "Sint quia expedita autem occaecati voluptates aut. Quis est velit quis harum quod numquam aspernatur. Nesciunt distinctio aspernatur ea laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1570, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1570, - "key": "6e6ltecaswllmijdhdm1bspphrptl7qh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1571, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1570", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2020-03-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "69.10", - "balance": "69.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1586, - "quantity": 10, - "cost": 6.91, - "product_key": "quam", - "notes": "Quia non quia rem quisquam. Ipsa suscipit quia vero velit minus. Quas rerum et omnis. Voluptates eligendi autem voluptatem voluptatem in. Omnis minus perferendis magnam explicabo vero dolor dolores nam. Et deleniti possimus eos et doloremque ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1571, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1571, - "key": "bmlc2qj96ww5n7gttff8mxrpxwhkfb2r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1572, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1571", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "86.67", - "balance": "86.67", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1587, - "quantity": 9, - "cost": 9.63, - "product_key": "corporis", - "notes": "Aut fugiat reprehenderit sit voluptas dolor. Incidunt et necessitatibus quaerat saepe rem id facilis. Voluptates sint repudiandae aut sunt id. Dolorem pariatur autem dolores aperiam dolor aut est nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1572, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1572, - "key": "5uhtbug6qar4twal6jolnjw0lpuj4bw9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1573, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1572", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-06-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.76", - "balance": "10.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1588, - "quantity": 4, - "cost": 2.69, - "product_key": "dolorum", - "notes": "Tempore doloribus quae nihil nihil. Sequi ducimus aut assumenda maiores illum quis delectus quam. Est pariatur recusandae sint perferendis. Nam rem beatae et debitis maxime qui perspiciatis occaecati. Et aut id illo tempora.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1573, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1573, - "key": "k5glxxfbuq5an2ctyzexfpt5vhyn9dyt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1574, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1573", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.19", - "balance": "22.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1589, - "quantity": 7, - "cost": 3.17, - "product_key": "consequatur", - "notes": "Recusandae eligendi eaque omnis ea maiores eum. Aut natus maxime facere voluptas inventore ab. Non sequi quidem veniam quidem dolor eos qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1574, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1574, - "key": "rqszhp5ygnfp0zcqwnbnfhkydnatpted", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1575, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1574", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-03", - "last_sent_date": null, - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.84", - "balance": "9.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1590, - "quantity": 3, - "cost": 3.28, - "product_key": "quos", - "notes": "Totam consequatur incidunt est est optio reprehenderit. Repellat voluptas pariatur unde non sed sunt. Eum itaque totam et quam asperiores quos iure consectetur. Accusantium perferendis qui nisi fugiat assumenda esse.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1575, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1575, - "key": "s79ptmzgunfvaebe4ahpkjpf0d0jtyze", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1576, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1575", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.30", - "balance": "39.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1591, - "quantity": 5, - "cost": 7.86, - "product_key": "dignissimos", - "notes": "Dolor rem saepe nam tempore maiores aut. Alias nihil nesciunt qui alias quidem. Optio inventore repudiandae impedit nostrum perspiciatis. Sed nemo saepe velit cumque quia molestiae cupiditate id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1576, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1576, - "key": "rms0pzugs7q3nw3wopxfquuohrrzumqb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1577, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1576", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2020-05-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.52", - "balance": "8.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1592, - "quantity": 4, - "cost": 2.13, - "product_key": "pariatur", - "notes": "Facere sint deserunt aliquid eveniet. Sequi perferendis ullam non natus tenetur. Aperiam tempora sapiente fuga at ut. Quia culpa quo ea accusantium est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1577, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1577, - "key": "gjirfsio2zfasy5rdq6aldamettffoft", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1578, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1577", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-03-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.92", - "balance": "14.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1593, - "quantity": 4, - "cost": 3.73, - "product_key": "rerum", - "notes": "Qui iusto porro officiis distinctio est quisquam nihil veniam. Harum aut est sit nesciunt autem. Soluta nihil aspernatur voluptatem consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1578, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1578, - "key": "hdexa0titebc6cqlxcvjcdrywtaiiq9h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1579, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1578", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.44", - "balance": "25.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1594, - "quantity": 6, - "cost": 4.24, - "product_key": "eos", - "notes": "Vel modi maiores impedit sint. Repellendus sed expedita ullam est. Labore corrupti aperiam qui sint. Aut hic molestias quia suscipit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1579, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1579, - "key": "qz58quvxfchwk63nfo5x6vfkwmiqixzw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1580, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1579", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-11", - "last_sent_date": null, - "due_date": "2020-03-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.60", - "balance": "38.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1595, - "quantity": 4, - "cost": 9.65, - "product_key": "et", - "notes": "Fugiat fugit beatae sunt. Id dicta vel laudantium et quis sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1580, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1580, - "key": "wx7bt8j6ne1544sczls1pdyidsl4rgsn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1581, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1580", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2019-12-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.16", - "balance": "29.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1596, - "quantity": 3, - "cost": 9.72, - "product_key": "libero", - "notes": "Sed ullam qui impedit vel ducimus molestiae ratione. Dolore nulla nobis quod dolorem accusamus et. Aut dolores sunt in ducimus debitis qui aut omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1581, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1581, - "key": "dwn2yewltlnm1akj39bsiccxsatfp9rt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1582, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1581", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-05-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "82.80", - "balance": "82.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1597, - "quantity": 10, - "cost": 8.28, - "product_key": "autem", - "notes": "Aliquam dolores sunt est corporis voluptatem est et. A debitis corporis placeat cum. Voluptas hic doloribus dolorem officia delectus sit. Ducimus laudantium nulla voluptatum doloribus ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1582, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1582, - "key": "ju7zq3juyuulw13f9gfnzkcnelrb2rbx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1583, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1582", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-18", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.26", - "balance": "50.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1598, - "quantity": 7, - "cost": 7.18, - "product_key": "quo", - "notes": "Voluptatem placeat aspernatur dicta corrupti quibusdam iure. Debitis vitae ut ea sit aut consequuntur consequuntur consectetur. Qui aut nesciunt repudiandae atque eos ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1583, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1583, - "key": "lyg1mljsq988r0kyzlxsikkllz6uenac", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1584, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1583", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": null, - "due_date": "2019-12-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.40", - "balance": "49.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1599, - "quantity": 10, - "cost": 4.94, - "product_key": "qui", - "notes": "Ut vero quia modi eligendi eligendi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1584, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1584, - "key": "97pze1qbgfmwhclhyzyoc9gi8mpa4dnj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1585, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1584", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-04", - "last_sent_date": null, - "due_date": "2020-02-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.04", - "balance": "2.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1600, - "quantity": 2, - "cost": 1.02, - "product_key": "dolorem", - "notes": "Harum accusamus eius sed veniam reiciendis. Rerum qui quis quo nostrum dolores exercitationem dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1585, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1585, - "key": "6zjpd9zquq1txzj33xsoglmy6tofzkp4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1586, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1585", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.04", - "balance": "39.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1601, - "quantity": 4, - "cost": 9.76, - "product_key": "repellendus", - "notes": "Aliquam at enim culpa odio blanditiis repudiandae. Libero dolor illum unde fugiat quis consequuntur. Rerum vitae assumenda corrupti tenetur. Porro ratione cum impedit alias esse.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1586, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1586, - "key": "rqsialtl4ujslsw5uezhkrdjth1y1tsb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1587, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1586", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.81", - "balance": "2.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1602, - "quantity": 1, - "cost": 2.81, - "product_key": "aliquid", - "notes": "Consequatur necessitatibus enim modi asperiores reiciendis laborum minus quis. Qui dolor iste ut et cumque atque. Nisi maxime et impedit totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1587, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1587, - "key": "mqdlwucdnhzjk95xa8hlhalgcsgevdpe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1588, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1587", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-24", - "last_sent_date": null, - "due_date": "2020-04-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "58.98", - "balance": "58.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1603, - "quantity": 6, - "cost": 9.83, - "product_key": "cupiditate", - "notes": "Est ea ea nulla dicta quam rem eligendi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1588, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1588, - "key": "pu3fmq9zirsv0anr7cmn2yi2wl5exxj2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1589, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1588", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.52", - "balance": "35.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1604, - "quantity": 6, - "cost": 5.92, - "product_key": "earum", - "notes": "Rerum fuga ea aut dolore ad sapiente possimus. Minima suscipit consequuntur et dicta. Id itaque vel neque et et quaerat modi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1589, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1589, - "key": "ft8ndb8socuovnatqtws77st8pyuqwl7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1590, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1589", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.25", - "balance": "17.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1605, - "quantity": 3, - "cost": 5.75, - "product_key": "ut", - "notes": "Praesentium sequi ut ut doloribus odio dolor cum. Ut sed ex fuga quis. Qui culpa soluta nesciunt incidunt autem nulla aut. Esse accusantium est vero voluptatem. Est veniam sint et voluptates. Tenetur dolorem magnam voluptate vel ullam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1590, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1590, - "key": "6vpioqoonj3g5y2nrwbwdeuepznvdovs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1591, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1590", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.34", - "balance": "4.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1606, - "quantity": 2, - "cost": 2.17, - "product_key": "voluptates", - "notes": "Accusantium ab ut minima. Illo velit vitae reiciendis voluptas eum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1591, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1591, - "key": "dqqetp01bjjw7mkhs4yrtui6nnvtkdp4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1592, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1591", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2020-01-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.60", - "balance": "45.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1607, - "quantity": 10, - "cost": 4.56, - "product_key": "eaque", - "notes": "Odit et et voluptas impedit eaque quaerat vitae. Aut occaecati repellat sunt voluptates.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1592, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1592, - "key": "5ywg4nmbcw438aju4m6doytpyzxugjpy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1593, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1592", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-16", - "last_sent_date": null, - "due_date": "2020-06-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "82.80", - "balance": "82.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1608, - "quantity": 9, - "cost": 9.2, - "product_key": "alias", - "notes": "Et quibusdam qui et qui aliquam a. Sint aperiam veniam praesentium aliquid. Odit incidunt et beatae eveniet rerum et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1593, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1593, - "key": "uygezaljyyrnctuo2ibei5cft2ynpgpv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1594, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1593", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-26", - "last_sent_date": null, - "due_date": "2020-01-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.04", - "balance": "14.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1609, - "quantity": 4, - "cost": 3.51, - "product_key": "aliquam", - "notes": "Voluptates necessitatibus accusamus cupiditate suscipit. Fuga asperiores dolor aut eveniet dolorum aspernatur. Ratione velit dolorem veniam ut id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1594, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1594, - "key": "nfi6kklk4zfg4ddszmnwkdhdn4zkrron", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1595, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1594", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-26", - "last_sent_date": null, - "due_date": "2019-12-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "85.23", - "balance": "85.23", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1610, - "quantity": 9, - "cost": 9.47, - "product_key": "beatae", - "notes": "Ut necessitatibus ratione ut consequatur qui quibusdam. Error qui voluptatem officia autem aut fugit voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:16.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1595, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1595, - "key": "ewofx0sfgwjt3cmk864zop2ucoaopocg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:16", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1596, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1595", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.56", - "balance": "34.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1611, - "quantity": 8, - "cost": 4.32, - "product_key": "quod", - "notes": "Quasi et laborum magni perspiciatis soluta ut. Dolorem et eius sunt optio laboriosam rem tempora explicabo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1596, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1596, - "key": "frlrmttz3k1ul0l9rizlbqjlxcvuvmuw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1597, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1596", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-26", - "last_sent_date": null, - "due_date": "2020-04-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "72.16", - "balance": "72.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1612, - "quantity": 8, - "cost": 9.02, - "product_key": "quia", - "notes": "Pariatur totam nihil eius et magni. Enim consequatur neque nisi expedita neque quo hic repudiandae. Ducimus molestiae non adipisci consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1597, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1597, - "key": "j4hds4z8lxlf8sxlhujamnj7huf0n3er", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1598, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1597", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.48", - "balance": "67.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1613, - "quantity": 7, - "cost": 9.64, - "product_key": "molestias", - "notes": "Vero id non dolor et. Quam et quibusdam quidem qui ut. Sunt debitis magni soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1598, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1598, - "key": "c05amkd8vdo2bpxij7pqriigxco4onr0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1599, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1598", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2019-12-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.68", - "balance": "4.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1614, - "quantity": 3, - "cost": 1.56, - "product_key": "natus", - "notes": "Consequatur cum temporibus enim harum. Quia voluptatum temporibus sint odit enim vero. Nam amet nobis nulla earum dolores. Ut vero dolor qui eum. Eos qui totam et rem quasi iure dolorem non. Et fugiat dolores repellendus et qui placeat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1599, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1599, - "key": "pwan4vsqufehwvhsnhw8ith7f64wq17y", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1600, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1599", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-16", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.62", - "balance": "67.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1615, - "quantity": 7, - "cost": 9.66, - "product_key": "nisi", - "notes": "Explicabo reiciendis ea sunt sit at sunt qui. Reprehenderit dolorum quia et deleniti in aut. Error non reprehenderit beatae qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1600, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1600, - "key": "oegclsjomj9eyvkze4jdohfshhurg2ie", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1601, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1600", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.99", - "balance": "9.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1616, - "quantity": 9, - "cost": 1.11, - "product_key": "neque", - "notes": "Consequatur odit facilis quia aut sit sapiente quibusdam. Vero voluptas eveniet ipsam porro odit. Laudantium non maiores praesentium adipisci similique fugit repudiandae. Vitae maiores quae consequatur sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1601, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1601, - "key": "pruexzj6ypba4oaeybspwajlwqleyfmp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1602, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1601", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-20", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.37", - "balance": "3.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1617, - "quantity": 1, - "cost": 3.37, - "product_key": "officiis", - "notes": "Consequatur est rem non vero non praesentium odit. Eum eveniet autem voluptatem rem minus cumque reprehenderit. Ab velit dolor et suscipit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1602, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1602, - "key": "e21zk0nxj74yfnfnmx4rom9mlrvbwye7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1603, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1602", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-21", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.62", - "balance": "64.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1618, - "quantity": 9, - "cost": 7.18, - "product_key": "inventore", - "notes": "Ut quia et et rem et ea voluptatem. Aut consectetur nihil ipsam quam quia voluptatem ut veniam. Culpa nulla numquam eaque est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1603, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1603, - "key": "xsaxozfeoat6jlgoeliwi5k8upatfsux", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1604, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1603", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2020-06-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.56", - "balance": "37.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1619, - "quantity": 6, - "cost": 6.26, - "product_key": "quisquam", - "notes": "Aperiam pariatur placeat aut autem. Ratione eveniet est molestias culpa ratione fugiat cum nemo. Aut neque non sapiente ducimus aut quis omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1604, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1604, - "key": "bjvt9w71yqebo3jnlixy6nmlx34zm443", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1605, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1604", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-05-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.36", - "balance": "66.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1620, - "quantity": 7, - "cost": 9.48, - "product_key": "quasi", - "notes": "Dignissimos aut rerum doloremque commodi. Velit vitae repellendus autem quia aut ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1605, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1605, - "key": "lybf8ikg2gszflijhefzwij0qt0gwcff", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1606, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1605", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-18", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.59", - "balance": "51.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1621, - "quantity": 7, - "cost": 7.37, - "product_key": "quas", - "notes": "Dolore non adipisci assumenda commodi id aliquid. Culpa quaerat impedit suscipit. Ducimus ut et quasi velit. Accusantium natus amet in ipsam consequuntur dolor et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1606, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1606, - "key": "fddneomntjhtx7dt0flvqh9dimhsnln7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1607, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1606", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.69", - "balance": "24.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1622, - "quantity": 3, - "cost": 8.23, - "product_key": "sed", - "notes": "Omnis fugit repellat facilis itaque et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1607, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1607, - "key": "tlfgeyftlzgmvli62mpq8usz7xhnkvp9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1608, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1607", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "56.43", - "balance": "56.43", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1623, - "quantity": 9, - "cost": 6.27, - "product_key": "dolor", - "notes": "Id sint deserunt sapiente in sunt. Aspernatur asperiores aliquam ut dolore maxime. Sed quia fugit non nam. Eius qui a placeat eaque est illum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1608, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1608, - "key": "ghyvxkl0rzo5pqo8tuudkfxued9utxyw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1609, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1608", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.86", - "balance": "20.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1624, - "quantity": 7, - "cost": 2.98, - "product_key": "adipisci", - "notes": "Esse in numquam nihil. Quia nobis ipsa fugiat quia non excepturi aut. Maiores autem illo accusamus totam. Repellendus saepe non eos non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1609, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1609, - "key": "9nyvpkdhhcau9vy4zpnitejdkffcm8dn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1610, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1609", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.57", - "balance": "66.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1625, - "quantity": 7, - "cost": 9.51, - "product_key": "vel", - "notes": "Modi laborum nihil illum sunt veritatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1610, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1610, - "key": "othencevgfnd4btmczpm99dgyic4mcmz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1611, - "client_id": 20, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1610", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.10", - "balance": "44.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1626, - "quantity": 9, - "cost": 4.9, - "product_key": "eum", - "notes": "Ut ut voluptas sed perferendis est laboriosam. Quod illo dolor harum autem inventore quo quia veritatis. Incidunt sapiente alias laborum voluptatibus error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:17.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1611, - "company_id": 1, - "user_id": 1, - "client_contact_id": 20, - "quote_id": 1611, - "key": "cookncxjd1anypa2cp5zyqaru5fle32i", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:17", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1712, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1711", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-26", - "last_sent_date": null, - "due_date": "2019-12-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.86", - "balance": "27.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1727, - "quantity": 7, - "cost": 3.98, - "product_key": "voluptatum", - "notes": "Sint quis aliquid iusto voluptatem voluptatem atque magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1712, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1712, - "key": "wvc3pbbjp0ywdlfkvurgz6anmsgbdotr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1713, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1712", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-06-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.35", - "balance": "10.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1728, - "quantity": 3, - "cost": 3.45, - "product_key": "laboriosam", - "notes": "Voluptatem beatae quis id id. Enim veniam ipsam nihil. Porro in odit fugit omnis in. Et aut est dolor modi. Qui at quos veniam est sapiente quas. Facilis maxime quasi accusantium magnam. Aliquam et sit illum. Aut et sed ut commodi officiis aut velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1713, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1713, - "key": "6jpizcznzid4ctuagqf4nk4d6uvsxuu2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1714, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1713", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-27", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.80", - "balance": "23.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1729, - "quantity": 4, - "cost": 5.95, - "product_key": "unde", - "notes": "Rem eveniet et adipisci facilis. Et suscipit aut qui aut. Nisi molestiae aut asperiores dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1714, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1714, - "key": "ojuyawdeyvh7capdx2y5wyckxjilg4fy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1715, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1714", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-31", - "last_sent_date": null, - "due_date": "2020-06-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.92", - "balance": "61.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1730, - "quantity": 8, - "cost": 7.74, - "product_key": "impedit", - "notes": "Quae ipsam ea facere sed et voluptas distinctio assumenda. Mollitia autem rerum ex atque nemo iste et harum. Quia blanditiis reprehenderit culpa fugiat consequatur nihil mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1715, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1715, - "key": "v3r1hrmc9n4vhc3pqflwf4oazxnwf8tq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1716, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1715", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-08", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.75", - "balance": "11.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1731, - "quantity": 5, - "cost": 2.35, - "product_key": "quasi", - "notes": "Sed odit odio pariatur et aut molestiae. Sit voluptas adipisci iusto enim sint ut fuga.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1716, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1716, - "key": "tyhmttw4jpgi6uuhosbt8vrpbr3hunwh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1717, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1716", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.00", - "balance": "15.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1732, - "quantity": 3, - "cost": 5, - "product_key": "libero", - "notes": "Adipisci non quis asperiores mollitia quibusdam sunt iure. Corrupti impedit minus id. Qui est molestiae qui officia nihil sunt accusamus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1717, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1717, - "key": "yhzfm27bcanzodqefvvu2zpxn8ootwh1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1718, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1717", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-04-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "73.70", - "balance": "73.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1733, - "quantity": 10, - "cost": 7.37, - "product_key": "in", - "notes": "Est repellendus possimus unde omnis iusto. Sunt asperiores doloremque dolore fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1718, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1718, - "key": "0hkjdwglkjjl9ahrskxkp3vz1gx3qb47", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1719, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1718", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-16", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.49", - "balance": "41.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1734, - "quantity": 9, - "cost": 4.61, - "product_key": "eum", - "notes": "Autem laudantium ipsum est odio fugiat. Quasi fugiat unde sint. Enim officia fugit et odit dolorem. Suscipit ipsa iste voluptas doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1719, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1719, - "key": "tjqhm1tuclxy7r09nwkcno9acdnxl9u2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1720, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1719", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-16", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.37", - "balance": "53.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1735, - "quantity": 9, - "cost": 5.93, - "product_key": "iusto", - "notes": "Voluptate in et quaerat est consequatur rerum. Corporis fuga quia illo voluptatem hic dolorum cum. Voluptatem sit fuga accusantium et tempore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1720, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1720, - "key": "iu0amceccvudppmbifrmohnex9evzfeu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1721, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1720", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-01", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.58", - "balance": "20.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1736, - "quantity": 7, - "cost": 2.94, - "product_key": "officia", - "notes": "Placeat veniam qui laudantium consequatur nobis dolorum quaerat. Totam nihil sed hic impedit quo. Ex molestiae voluptates soluta saepe. Rerum molestiae eos sit repellat repellendus ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1721, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1721, - "key": "4ah81khpdm5xti9pgg0t5se9s6ay4orx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1722, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1721", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-31", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.75", - "balance": "36.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1737, - "quantity": 7, - "cost": 5.25, - "product_key": "possimus", - "notes": "Possimus eveniet consectetur sed nulla esse sunt dolores. Illo quae similique natus repellat maiores ut quidem. Velit blanditiis reprehenderit voluptatem. Provident ut accusantium eos et. Vitae asperiores dolore perferendis dignissimos doloremque enim.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1722, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1722, - "key": "cj0ofi9srovwxi69hfpc338aa1ax2mmd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1723, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1722", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.90", - "balance": "61.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1738, - "quantity": 10, - "cost": 6.19, - "product_key": "dolorum", - "notes": "Sunt ea omnis et distinctio beatae amet blanditiis. Voluptas a et ab consequatur eos. Autem neque commodi vero nostrum ut omnis ipsum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1723, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1723, - "key": "s2702jh4umk7ljaqdkof6snxbyksibmn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1724, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1723", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.40", - "balance": "59.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1739, - "quantity": 10, - "cost": 5.94, - "product_key": "atque", - "notes": "Corporis molestiae qui sequi voluptate autem enim ipsam. Laborum aliquam in ut. Eos dicta fugiat cupiditate architecto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1724, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1724, - "key": "ctvmiyacbqva5gmotvxisj3xwsyh5bs9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1725, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1724", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.15", - "balance": "44.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1740, - "quantity": 5, - "cost": 8.83, - "product_key": "praesentium", - "notes": "Qui qui sequi fugiat vel eum sapiente. Quia non voluptatem iste consequatur dolorum totam. Nulla quia iusto ab saepe ipsam ut. Distinctio hic labore molestiae asperiores non incidunt quia. Rerum nulla beatae et reprehenderit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1725, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1725, - "key": "lr3gco1j0notwqtzoatqgrik783hx006", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1726, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1725", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.08", - "balance": "70.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1741, - "quantity": 8, - "cost": 8.76, - "product_key": "eum", - "notes": "Perferendis sint quo dolores vitae voluptas. Officiis omnis modi inventore sed. Dolorem non incidunt molestias iste.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1726, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1726, - "key": "ikchnxbwchxazgf0zsfoslqhvhqw3uo7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1727, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1726", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2020-04-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.80", - "balance": "22.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1742, - "quantity": 8, - "cost": 2.85, - "product_key": "quia", - "notes": "Voluptatem illo voluptas perspiciatis accusantium iusto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1727, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1727, - "key": "pit1pdbkdiqfwae7ex9oplq0gdtyhjn4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1728, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1727", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.72", - "balance": "24.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1743, - "quantity": 4, - "cost": 6.18, - "product_key": "et", - "notes": "Eos deleniti ipsam sunt debitis iusto. Placeat velit minus cumque esse quos. Maxime odio illum modi enim ut ipsa perspiciatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1728, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1728, - "key": "javzsxq5c1gbaf86wdk88z8kf9axhe4x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1729, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1728", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.36", - "balance": "31.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1744, - "quantity": 4, - "cost": 7.84, - "product_key": "aspernatur", - "notes": "Aut repellendus quasi et incidunt rerum sequi doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1729, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1729, - "key": "zrcd2rdxkdobxpx95zru9sxsymygbr9x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1730, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1729", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.73", - "balance": "16.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1745, - "quantity": 7, - "cost": 2.39, - "product_key": "magni", - "notes": "Eum pariatur dolor qui eaque a.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1730, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1730, - "key": "ho0pkfibiyhgymntwgnmp63encmvjo4f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1731, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1730", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2019-12-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "75.10", - "balance": "75.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1746, - "quantity": 10, - "cost": 7.51, - "product_key": "occaecati", - "notes": "Aperiam aut est sed amet. Architecto numquam eveniet enim. Commodi et et laboriosam rerum. Aperiam odio dolorum aliquam minima. Nobis et consequatur consequuntur est odit molestias consequuntur reiciendis. Labore iste voluptates modi molestias. Consequatur omnis quam et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1731, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1731, - "key": "zfe2vvo4ssjk079hufh3tqm0rawqafti", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1732, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1731", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.40", - "balance": "26.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1747, - "quantity": 4, - "cost": 6.6, - "product_key": "ut", - "notes": "Aperiam animi fugit voluptate eum deserunt autem corporis. Nesciunt sed dignissimos impedit corrupti explicabo itaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1732, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1732, - "key": "gdbxtkbe7uxezu19nsftxgdzcwusnyq2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1733, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1732", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-16", - "last_sent_date": null, - "due_date": "2020-02-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.52", - "balance": "15.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1748, - "quantity": 8, - "cost": 1.94, - "product_key": "voluptates", - "notes": "Nihil voluptatibus consequatur molestias accusamus et. Ad dolorum ex ut voluptatem. Consequatur veritatis sed saepe. Velit nesciunt quia voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1733, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1733, - "key": "pkcid165bjufrbdymcouiy37fepzoslw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1734, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1733", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-30", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.02", - "balance": "15.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1749, - "quantity": 2, - "cost": 7.51, - "product_key": "neque", - "notes": "Voluptas commodi maxime culpa voluptatum fugit modi alias. Et quam autem harum voluptatem ad dolores vel. Eius praesentium nesciunt voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1734, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1734, - "key": "9vvnbzmbrqwcx0sipjlkkxdpiy6q2i3f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1735, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1734", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-21", - "last_sent_date": null, - "due_date": "2020-04-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.25", - "balance": "8.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1750, - "quantity": 3, - "cost": 2.75, - "product_key": "architecto", - "notes": "Dolorem iure ut velit nihil. Consequatur asperiores iste aperiam sunt consequuntur. Est aliquid in saepe omnis et hic corrupti. Reiciendis animi reiciendis deleniti omnis nulla voluptatum. Qui illo blanditiis ut et. Labore qui qui ipsa quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1735, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1735, - "key": "qouwxcysyxoxtab3tsjfq3e5ykwc30mm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1736, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1735", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-03", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.62", - "balance": "22.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1751, - "quantity": 6, - "cost": 3.77, - "product_key": "asperiores", - "notes": "Sit dicta provident ratione voluptas tenetur. Quo iste aut labore blanditiis autem. Adipisci labore fugit necessitatibus ut dolor odit non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1736, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1736, - "key": "s1irlk6fbosfzcvxgobxfainhj1z90oy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1737, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1736", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-05-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "70.90", - "balance": "70.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1752, - "quantity": 10, - "cost": 7.09, - "product_key": "enim", - "notes": "Animi molestiae et eos alias provident consequuntur et ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1737, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1737, - "key": "jfaal03twcjh2jxz2a2ymnkl8xlkgdwf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1738, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1737", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2020-02-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.33", - "balance": "64.33", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1753, - "quantity": 7, - "cost": 9.19, - "product_key": "assumenda", - "notes": "Id odit eveniet in et. Dolores accusantium veniam fuga nostrum. Harum alias aliquid unde illo est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1738, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1738, - "key": "rd5gp62anaydcs1tb4lmjzfkjdgtct38", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1739, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1738", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-04-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.26", - "balance": "40.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1754, - "quantity": 6, - "cost": 6.71, - "product_key": "vel", - "notes": "Nam sunt debitis libero quisquam ab est qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1739, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1739, - "key": "mv17dn2oosbzhojsussrmsbrjaaoippr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1740, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1739", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-30", - "last_sent_date": null, - "due_date": "2020-04-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "73.44", - "balance": "73.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1755, - "quantity": 8, - "cost": 9.18, - "product_key": "exercitationem", - "notes": "Odio et iste vitae ab totam sint. Deleniti quia quis repudiandae facere magni. Deserunt totam vel vel magnam qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1740, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1740, - "key": "radn1jxkzwegzxiqws2rpts8ulnilqhz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1741, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1740", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-01", - "last_sent_date": null, - "due_date": "2020-02-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.80", - "balance": "4.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1756, - "quantity": 1, - "cost": 4.8, - "product_key": "perferendis", - "notes": "Fugit quae repudiandae qui. Quia qui nihil quo libero at praesentium maiores. Suscipit quibusdam alias suscipit pariatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1741, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1741, - "key": "lidhuyt49w3g4eblcxgcc6lailpda9bm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1742, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1741", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-28", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.10", - "balance": "35.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1757, - "quantity": 5, - "cost": 7.02, - "product_key": "rem", - "notes": "Et libero nobis consequatur rem omnis ut laborum quidem. Dolorem tenetur quidem molestiae. Ut aperiam ut qui ea ut temporibus. A quae quas eius aperiam aspernatur ut eveniet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1742, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1742, - "key": "kasrhzzzjyrq4ycqqb0xlgdx1gboplts", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1743, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1742", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.44", - "balance": "25.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1758, - "quantity": 4, - "cost": 6.36, - "product_key": "ipsa", - "notes": "Sequi nobis ea quae. Minima dolores corrupti et dolor. Qui ipsum quod labore hic.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1743, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1743, - "key": "muw0jo6puusnrhjcthobzmvcldu0pzdo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1744, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1743", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.80", - "balance": "19.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1759, - "quantity": 2, - "cost": 9.9, - "product_key": "enim", - "notes": "Cum nihil est rerum quia totam non odit sunt. Sint quae dolor quae quis et incidunt. Eos vero voluptatem temporibus eos minus consectetur ea. Non molestias est qui in incidunt laborum eius. Quis facere odio et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1744, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1744, - "key": "kwcddj3xzbzee9aow6mex51dwcxwwmv5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1745, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1744", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-29", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.36", - "balance": "38.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1760, - "quantity": 4, - "cost": 9.59, - "product_key": "rerum", - "notes": "Veniam necessitatibus ex veniam corrupti. Itaque sapiente dolorum facere quia quidem eaque assumenda.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:22.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1745, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1745, - "key": "ouxylhooxmqruxnyppuh4ncfyvjflhy5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:22", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1746, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1745", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.50", - "balance": "45.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1761, - "quantity": 10, - "cost": 4.55, - "product_key": "sit", - "notes": "Ea architecto esse soluta iure nostrum. Eos odio error alias facere.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1746, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1746, - "key": "rhckefpaahunytdy4t9hrfnytbniolxs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1747, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1746", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.70", - "balance": "47.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1762, - "quantity": 9, - "cost": 5.3, - "product_key": "beatae", - "notes": "Tenetur nesciunt veniam est. Repellendus alias voluptatem adipisci et laudantium. Et aut et unde sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1747, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1747, - "key": "jv0qshccjinm9gvwvgystq0llxufvkiz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1748, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1747", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-01-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.64", - "balance": "26.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1763, - "quantity": 8, - "cost": 3.33, - "product_key": "autem", - "notes": "Non reiciendis consequatur et assumenda ipsa sequi labore. Mollitia animi sit eligendi. Unde et sunt tempore et adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1748, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1748, - "key": "dckdjuid7fsklgmmplyu1szgqwafbsbj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1749, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1748", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.56", - "balance": "14.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1764, - "quantity": 8, - "cost": 1.82, - "product_key": "ullam", - "notes": "Eveniet inventore qui sunt consectetur est ea deleniti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1749, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1749, - "key": "bzd72aupptucipx2vnb0bimalv0xbmzx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1750, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1749", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-20", - "last_sent_date": null, - "due_date": "2020-02-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.80", - "balance": "5.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1765, - "quantity": 5, - "cost": 1.16, - "product_key": "perferendis", - "notes": "In animi et expedita ad omnis laboriosam. Fuga aut ea eum sapiente dignissimos dicta quod accusamus. Neque odio asperiores ratione debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1750, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1750, - "key": "gnxcxjgfxglzr13zv7m7z1jxat4i95bc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1751, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1750", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.61", - "balance": "1.61", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1766, - "quantity": 1, - "cost": 1.61, - "product_key": "cupiditate", - "notes": "Ut aut recusandae aut fugit quia. Possimus ipsa velit sed rerum optio veniam. Molestiae excepturi quisquam aut quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1751, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1751, - "key": "tjoneqknhav5mtbsxrfy1omb8hkkm3af", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1752, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1751", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.55", - "balance": "7.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1767, - "quantity": 1, - "cost": 7.55, - "product_key": "odit", - "notes": "Tenetur voluptas mollitia quas voluptatem cum repellat voluptas. At velit omnis rerum placeat. Accusantium dicta aut architecto quis aspernatur cum cum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1752, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1752, - "key": "xnou7qmbckrybzgt9xua2io1idxwdsuw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1753, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1752", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.16", - "balance": "36.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1768, - "quantity": 4, - "cost": 9.04, - "product_key": "facere", - "notes": "Debitis nobis voluptatem atque quasi rerum aut. Recusandae rerum quas pariatur nihil velit. Repudiandae voluptates nihil quo sint eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1753, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1753, - "key": "zdtepbxko4vf3106nvca2gsmysulpkqn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1754, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1753", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.39", - "balance": "5.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1769, - "quantity": 1, - "cost": 5.39, - "product_key": "repellat", - "notes": "Porro accusantium et dolor quia harum velit cum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1754, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1754, - "key": "husodkuykyfsl4kttqjiaxcxsdnesqex", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1755, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1754", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.44", - "balance": "37.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1770, - "quantity": 8, - "cost": 4.68, - "product_key": "dolorem", - "notes": "Nemo iure totam iste aut. Ea reiciendis ipsum magni explicabo. Asperiores et dolor praesentium ratione omnis ut porro.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1755, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1755, - "key": "giydedjefbvj485akaphymkrnvavnvt6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1756, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1755", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-09", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "65.04", - "balance": "65.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1771, - "quantity": 8, - "cost": 8.13, - "product_key": "rerum", - "notes": "Aperiam dolores at accusantium occaecati accusamus quia. Voluptas dolor sit sint repudiandae aut nisi. Enim labore sit velit eveniet. Pariatur modi dolor ut temporibus aut quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1756, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1756, - "key": "na8gnyd6ewdbwzs0ntf8xebr3e3x855u", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1757, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1756", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-11", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.72", - "balance": "24.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1772, - "quantity": 4, - "cost": 6.18, - "product_key": "laborum", - "notes": "Quis tempora id dolorem quaerat excepturi. Nesciunt quibusdam corporis sit. Suscipit adipisci officia accusamus earum doloremque perferendis atque. Sequi explicabo et consequatur dolore qui voluptates.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1757, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1757, - "key": "6wgfv2yqtwv09twxfk2kysufokwoxch7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1758, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1757", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-18", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.70", - "balance": "32.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1773, - "quantity": 6, - "cost": 5.45, - "product_key": "est", - "notes": "Omnis debitis et pariatur laboriosam. Aut libero velit quasi dolores doloribus sed. Ducimus voluptatum totam sed vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1758, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1758, - "key": "tfhxldfeophrykqiag7xp7nmaupe2kem", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1759, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1758", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-06", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.08", - "balance": "15.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1774, - "quantity": 4, - "cost": 3.77, - "product_key": "similique", - "notes": "Explicabo soluta impedit non deserunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1759, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1759, - "key": "k8ofy5k8ttyncgu5bewkpwebxp8nejf9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1760, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1759", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.39", - "balance": "40.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1775, - "quantity": 7, - "cost": 5.77, - "product_key": "quia", - "notes": "Optio deleniti quia voluptates dignissimos et sequi voluptatibus nisi. Voluptatem deleniti delectus ipsum rem impedit in. Fugiat ut beatae exercitationem omnis ex amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1760, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1760, - "key": "6zxytrtibphjqyxqo8tigjg4fzo4odhz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1761, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1760", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2020-04-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.48", - "balance": "20.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1776, - "quantity": 8, - "cost": 2.56, - "product_key": "at", - "notes": "Sit ut ea voluptatem eos qui sit laborum. Doloribus rerum cupiditate non. A quod vel eos repellat at consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1761, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1761, - "key": "xker6nso1o3hgmmulwq6qxvx8w7mlh6g", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1762, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1761", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-01-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.90", - "balance": "12.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1777, - "quantity": 3, - "cost": 4.3, - "product_key": "veniam", - "notes": "Vel adipisci id qui deleniti pariatur. Et eius architecto odit. Totam velit dignissimos qui nulla sit illum quia. Blanditiis qui quo animi. Facilis minima qui dolorem est autem adipisci.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1762, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1762, - "key": "knxzzxxtjordyanojejtd6nzq5iu4v0n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1763, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1762", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2020-06-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.72", - "balance": "14.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1778, - "quantity": 2, - "cost": 7.36, - "product_key": "aut", - "notes": "Dicta odio ea ea et sunt quo sint. Quas repellat pariatur quis reiciendis molestias explicabo. Ut aut beatae autem alias totam saepe.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1763, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1763, - "key": "adfjffhefgigungdtpztlmhvokomeu06", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1764, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1763", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.05", - "balance": "9.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1779, - "quantity": 1, - "cost": 9.05, - "product_key": "enim", - "notes": "Culpa debitis repellendus qui odio qui laudantium voluptatem nostrum. Itaque culpa qui nisi dolores. Aspernatur quae eaque quae repellendus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1764, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1764, - "key": "lofaasvs8e34m5agw32qgtfrdyqlva7j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1765, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1764", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2019-12-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.69", - "balance": "3.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1780, - "quantity": 1, - "cost": 3.69, - "product_key": "deserunt", - "notes": "Quos quasi ut cumque nemo inventore. Vero eos veniam ab quia vero facere reprehenderit maiores. Rem vero aut est. Illum qui ea eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1765, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1765, - "key": "ubpycltvyjztmeawnvlek4qzq4hnpwyb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1766, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1765", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-19", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.55", - "balance": "8.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1781, - "quantity": 1, - "cost": 8.55, - "product_key": "veritatis", - "notes": "Excepturi et facilis tenetur qui quo ut qui. Facilis tempora dolorem quod. Soluta et et sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1766, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1766, - "key": "gvs2glz5ixydfqikqkps38dr9xmjfqgd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1767, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1766", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-25", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.32", - "balance": "22.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1782, - "quantity": 9, - "cost": 2.48, - "product_key": "veritatis", - "notes": "Voluptas aut fugiat eius non. Ut impedit totam qui et perspiciatis. Quia in corporis similique architecto impedit quis sit ea. Quisquam eius a vitae inventore sequi facere.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1767, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1767, - "key": "cxwwe19ac7zesk0ahblsrjbymvhk5rd4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1768, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1767", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.09", - "balance": "27.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1783, - "quantity": 9, - "cost": 3.01, - "product_key": "expedita", - "notes": "Autem veritatis a repellendus voluptatum. Beatae commodi sit necessitatibus animi omnis. Rerum aut commodi totam voluptatem. Et deleniti dolores sed voluptatem a accusamus. Labore est fugiat eum dolores voluptas hic. Est similique sit sed maiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1768, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1768, - "key": "ld80wesdk3npf8gdng0bt2j3rgqsffon", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1769, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1768", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-03", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.20", - "balance": "10.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1784, - "quantity": 3, - "cost": 3.4, - "product_key": "numquam", - "notes": "Doloribus nobis enim dolorem pariatur id. Voluptas rerum optio ullam quia assumenda minima iusto asperiores. Perspiciatis minus qui quae ipsam dolores dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1769, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1769, - "key": "5pokfizwdg33v6hsvtsjk6wb4uvqnbqf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1770, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1769", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2020-03-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.84", - "balance": "5.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1785, - "quantity": 2, - "cost": 2.92, - "product_key": "laborum", - "notes": "Nostrum ad aspernatur ut aliquam sunt. Facere omnis harum nisi porro.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1770, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1770, - "key": "x9rwmuowc1eqsrjdgrgdee8g44690kp2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1771, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1770", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-16", - "last_sent_date": null, - "due_date": "2019-12-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.45", - "balance": "16.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1786, - "quantity": 5, - "cost": 3.29, - "product_key": "adipisci", - "notes": "Vel ut nisi blanditiis temporibus dicta vel. Ratione corporis mollitia aut tempora et ut. Beatae magnam eveniet voluptas et eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1771, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1771, - "key": "a8s9q5fitvmx0efreq1n7axxxj6bffyu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1772, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1771", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-05-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.08", - "balance": "10.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1787, - "quantity": 4, - "cost": 2.52, - "product_key": "impedit", - "notes": "At qui recusandae commodi voluptatem. Ut eum ut alias molestias earum ut ratione modi. Et aperiam libero aut dolores saepe et. Cum et dignissimos illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1772, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1772, - "key": "ixpfmagd8gmrgefq9gvc1hdatonhoxy3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1773, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1772", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-09", - "last_sent_date": null, - "due_date": "2019-12-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.87", - "balance": "39.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1788, - "quantity": 9, - "cost": 4.43, - "product_key": "corrupti", - "notes": "Ratione doloremque autem ipsa quisquam amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1773, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1773, - "key": "22rkansrdu3e8mjrmtanqvsiccjsw0tq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1774, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1773", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.34", - "balance": "41.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1789, - "quantity": 6, - "cost": 6.89, - "product_key": "veniam", - "notes": "Et nemo non soluta laboriosam eius. Hic et maiores aut pariatur dolor. Velit reiciendis unde magni.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1774, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1774, - "key": "5wlv36bnyq5qbdskpdeg6gixc7ufzkst", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1775, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1774", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-12", - "last_sent_date": null, - "due_date": "2020-02-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.68", - "balance": "26.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1790, - "quantity": 4, - "cost": 6.67, - "product_key": "ad", - "notes": "Deserunt expedita earum cum. Ut est numquam earum in excepturi quisquam amet pariatur. Eligendi quam quas odit quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1775, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1775, - "key": "2hrwj0b8qbsmegbkc6rj25gd2nj1i8mj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1776, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1775", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-01-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.71", - "balance": "5.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1791, - "quantity": 1, - "cost": 5.71, - "product_key": "veritatis", - "notes": "Omnis cumque totam fugit eos itaque. Et nemo porro velit eum repudiandae odio. Maiores quo nisi fuga et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1776, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1776, - "key": "htt8ftsevwejajhcilwuuft9boufysj6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1777, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1776", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-11", - "last_sent_date": null, - "due_date": "2020-03-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.70", - "balance": "29.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1792, - "quantity": 3, - "cost": 9.9, - "product_key": "nemo", - "notes": "Explicabo deserunt est maxime nihil. Nulla suscipit accusamus voluptatem in repellendus odit. Minima enim aspernatur consectetur blanditiis quae debitis. Ipsum iste dolor excepturi ullam. Eveniet sunt harum ex qui. Voluptatem iusto voluptatem nisi rerum praesentium facere quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1777, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1777, - "key": "fbelpp9ulyyx8zvulkzcltaofnwb0b4n", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1778, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1777", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.32", - "balance": "30.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1793, - "quantity": 8, - "cost": 3.79, - "product_key": "veritatis", - "notes": "Nam illo in recusandae sit eum. Minima architecto repellat qui eos a aut. Autem quo voluptatibus molestias. Eius nesciunt voluptatem temporibus nemo at ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1778, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1778, - "key": "b07aea7mttr2k4hqokypoku0ssmxqe5a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1779, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1778", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-21", - "last_sent_date": null, - "due_date": "2020-05-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "56.10", - "balance": "56.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1794, - "quantity": 10, - "cost": 5.61, - "product_key": "asperiores", - "notes": "Possimus ut ut rerum sequi minus. Temporibus neque nam repellendus aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1779, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1779, - "key": "41co8elk8lwpri5uxqypuvspceijp5sr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1780, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1779", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2020-02-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.72", - "balance": "9.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1795, - "quantity": 6, - "cost": 1.62, - "product_key": "hic", - "notes": "Temporibus quod possimus molestiae. Quae excepturi veritatis labore laborum quasi consequatur ea. Quia ipsa voluptatem commodi sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1780, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1780, - "key": "v871rykudk5vthluky01yeuntnreedvg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1781, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1780", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.63", - "balance": "9.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1796, - "quantity": 9, - "cost": 1.07, - "product_key": "repellendus", - "notes": "Odio rem recusandae similique nam et nisi autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1781, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1781, - "key": "awjzninavcpd9zgx6xmh6p0z2gl5rwcg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1782, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1781", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-09", - "last_sent_date": null, - "due_date": "2019-12-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.54", - "balance": "3.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1797, - "quantity": 1, - "cost": 3.54, - "product_key": "laudantium", - "notes": "Sunt qui aut aut voluptas est. Hic minima magnam quos labore. Quasi vel voluptatibus corporis tempora.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1782, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1782, - "key": "xavqkot7cwakflwyvyw4owk1phayvk2h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1783, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1782", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-23", - "last_sent_date": null, - "due_date": "2020-04-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.60", - "balance": "6.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1798, - "quantity": 5, - "cost": 1.32, - "product_key": "non", - "notes": "Quod debitis ut animi non natus. Ratione veniam laudantium iusto similique consectetur molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1783, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1783, - "key": "0p9m3m8vb7gpfyz0yaufohuqfvtcytux", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1784, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1783", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-30", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.25", - "balance": "30.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1799, - "quantity": 5, - "cost": 6.05, - "product_key": "vel", - "notes": "Qui id commodi animi occaecati. Totam cumque iusto ex. Voluptas et dolores qui. Illo reprehenderit est dolorem facilis dolores optio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1784, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1784, - "key": "ihwntcwsx3dqlokrxvpcypa84juxl2ns", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1785, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1784", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-27", - "last_sent_date": null, - "due_date": "2019-12-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.87", - "balance": "3.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1800, - "quantity": 3, - "cost": 1.29, - "product_key": "dolore", - "notes": "Qui molestias optio doloremque velit consequuntur sit. Impedit atque veniam rerum. Dignissimos earum et est quam doloribus quos ex.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1785, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1785, - "key": "0ouasdopumelcxbqsnztggovuamvu9lc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1786, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1785", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-14", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.64", - "balance": "35.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1801, - "quantity": 4, - "cost": 8.91, - "product_key": "odit", - "notes": "Est nemo doloribus aspernatur sint. Recusandae aliquid quo qui voluptates. Modi blanditiis vero qui. Officiis accusantium quod aut dolorem. Corporis veniam sed explicabo ut sapiente. Ut consectetur neque ratione nesciunt molestias quidem ad. Ex illo at dolore praesentium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1786, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1786, - "key": "aeu1mjljur8glfxffzr6pl2dbx6avt75", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1787, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1786", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.94", - "balance": "68.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1802, - "quantity": 9, - "cost": 7.66, - "product_key": "reiciendis", - "notes": "Velit omnis dolor totam architecto. Esse veritatis ea incidunt delectus tenetur aut. Nobis nisi voluptas ad maiores est corrupti laudantium. Et odio officiis non qui vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1787, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1787, - "key": "wput5oxshg93lm7drdlduhy87xuzo2yk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1788, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1787", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2019-12-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.27", - "balance": "7.27", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1803, - "quantity": 1, - "cost": 7.27, - "product_key": "quod", - "notes": "Explicabo error odio autem fuga voluptas soluta facilis vel. Id voluptas adipisci officia illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1788, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1788, - "key": "qqxojvcnxym9x5ws1jwvr6sd6rmhhyfr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1789, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1788", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-31", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.65", - "balance": "27.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1804, - "quantity": 7, - "cost": 3.95, - "product_key": "repudiandae", - "notes": "Hic sed ea error maxime voluptatem consequatur. Sed minus in veritatis adipisci porro. Illo quae eos inventore illo reiciendis qui quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1789, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1789, - "key": "tdmbzkl3y0rmanatwsmqdvx2vzl7d6bk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1790, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1789", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2019-12-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.65", - "balance": "6.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1805, - "quantity": 5, - "cost": 1.33, - "product_key": "beatae", - "notes": "Debitis quod hic aut reprehenderit molestiae beatae. Tenetur qui fugit sit esse necessitatibus. Necessitatibus blanditiis velit hic fugiat voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1790, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1790, - "key": "io1cws3wxcc1fuyu05by9m8he3dsanu8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1791, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1790", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.24", - "balance": "45.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1806, - "quantity": 6, - "cost": 7.54, - "product_key": "et", - "notes": "Provident veritatis qui omnis. Quaerat perferendis quasi occaecati nostrum porro sequi odit. Vel fugiat dolores saepe voluptates doloremque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1791, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1791, - "key": "iywty8hfl6agvw2ghotama4kofcp7bvl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1792, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1791", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-06", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.48", - "balance": "18.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1807, - "quantity": 7, - "cost": 2.64, - "product_key": "quis", - "notes": "Libero quaerat velit a amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:23.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1792, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1792, - "key": "qv6eorzwy2pxlptqzpoksqtwdgt9qcfj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:23", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1793, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1792", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2019-12-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.90", - "balance": "21.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1808, - "quantity": 5, - "cost": 4.38, - "product_key": "et", - "notes": "Ullam dolore et hic vitae ut similique voluptate. Nihil quo adipisci eaque sequi itaque recusandae. Quo libero eveniet incidunt dolor quia ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1793, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1793, - "key": "14t52ztmygvbvokbnqzxyf96mojlrrju", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1794, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1793", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2020-02-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.85", - "balance": "23.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1809, - "quantity": 9, - "cost": 2.65, - "product_key": "similique", - "notes": "Velit magnam in corrupti voluptatem nam et omnis. Quisquam in quo quisquam consequatur perspiciatis repudiandae in enim. Omnis porro sunt optio eum. Quos quia voluptas assumenda.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1794, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1794, - "key": "wp8i2jd8hx1p7ly5wlrscn8hkmnmrnvr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1795, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1794", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-10", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.56", - "balance": "28.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1810, - "quantity": 4, - "cost": 7.14, - "product_key": "rerum", - "notes": "Deleniti velit quae molestiae odio dolor. Rerum ipsum sed non occaecati eum. Porro est numquam repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1795, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1795, - "key": "4ttb2flwnvjwxu0dhaasctpdlxjdmswr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1796, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1795", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2020-05-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.02", - "balance": "55.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1811, - "quantity": 7, - "cost": 7.86, - "product_key": "sit", - "notes": "Quia dolor est at architecto. Qui odit ratione repudiandae consequatur tenetur. Qui animi autem nihil nihil quia reiciendis facere iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1796, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1796, - "key": "ceq4spkvi6szhub3zasdfvqwgi0lzlgx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1797, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1796", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": null, - "due_date": "2020-02-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.30", - "balance": "34.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1812, - "quantity": 7, - "cost": 4.9, - "product_key": "et", - "notes": "Voluptas dolor consectetur harum exercitationem. Sapiente molestiae ut rem qui. Vel laborum qui sunt voluptatem laudantium. Alias eum totam deserunt voluptatibus autem est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1797, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1797, - "key": "bmkgxl5u2vwbmwmryr2ddhroxnburp62", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1798, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1797", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-05-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.96", - "balance": "44.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1813, - "quantity": 8, - "cost": 5.62, - "product_key": "impedit", - "notes": "Eaque quod sunt et quisquam. Error aut aperiam quis tenetur numquam cum accusamus. Consequatur et possimus at voluptatem nostrum qui. Rerum modi ab et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1798, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1798, - "key": "ovdyhmibl5asvbrldy3yvdqxryhuyp91", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1799, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1798", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-06-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.60", - "balance": "16.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1814, - "quantity": 5, - "cost": 3.32, - "product_key": "aut", - "notes": "Repellat est illum saepe necessitatibus. Architecto nulla est sapiente porro fugiat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1799, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1799, - "key": "jvg8anpg6pph0samwjty7fxndbkrtxkz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1800, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1799", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.56", - "balance": "7.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1815, - "quantity": 4, - "cost": 1.89, - "product_key": "voluptate", - "notes": "Quia odio inventore et distinctio. Sit et totam rerum quia id quisquam. Et enim facilis officiis voluptatem iusto delectus ea. Dolores consectetur dicta eligendi magnam odit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1800, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1800, - "key": "gfz0nbnrwnebt3gwdor54jz8vo7ja9fj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1801, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1800", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-02-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.59", - "balance": "9.59", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1816, - "quantity": 1, - "cost": 9.59, - "product_key": "dignissimos", - "notes": "Consequatur dolor eaque porro nemo. Impedit laudantium ipsa ea porro recusandae id. Quibusdam doloremque rerum sed. Doloremque praesentium non error dolore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1801, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1801, - "key": "crdndkhnsg19rqh1ejjvehrhyxfesf2w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1802, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1801", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-09", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "80.01", - "balance": "80.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1817, - "quantity": 9, - "cost": 8.89, - "product_key": "consequuntur", - "notes": "Quae a voluptates eligendi expedita voluptatibus excepturi. Debitis quaerat et nam aspernatur sequi id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1802, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1802, - "key": "hn0sx3eanjpymgfnkcvbp6wmdrmhfs7m", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1803, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1802", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.24", - "balance": "51.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1818, - "quantity": 7, - "cost": 7.32, - "product_key": "molestiae", - "notes": "Ex quod ut unde. Quo nostrum sed fuga unde quibusdam quia aperiam aliquid. Aliquid accusantium provident rerum atque ut vel. Enim perspiciatis officia vitae eos ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1803, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1803, - "key": "2ohkf7rngo5i3yf7usf8t9mwhsfsieki", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1804, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1803", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-11", - "last_sent_date": null, - "due_date": "2020-06-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.00", - "balance": "22.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1819, - "quantity": 5, - "cost": 4.4, - "product_key": "quia", - "notes": "Exercitationem repudiandae dicta dolorem in ut cum. Nulla perspiciatis atque dolores dolor non saepe rem. Voluptatem non vel sit consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1804, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1804, - "key": "f9i8p6axlh5gtxut9lpf4t4jtebnhf3y", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1805, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1804", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.81", - "balance": "2.81", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1820, - "quantity": 1, - "cost": 2.81, - "product_key": "qui", - "notes": "Qui vel voluptate sunt. Facilis alias iusto nihil dolorem sint natus vero tempora. Aut consequatur sunt deserunt id architecto assumenda in. Veritatis iste quaerat nemo autem sapiente. Et labore veniam dicta cupiditate sequi nam labore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1805, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1805, - "key": "nhlsaolht18a9b8m1rp8gghnm64cbuou", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1806, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1805", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.20", - "balance": "41.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1821, - "quantity": 5, - "cost": 8.24, - "product_key": "est", - "notes": "Rerum occaecati provident ratione quam ad sint. Recusandae quia totam nisi. Sapiente impedit iure sit molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1806, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1806, - "key": "9c6o58lduvrhuthcllwlkwxvuh0gzs66", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1807, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1806", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-27", - "last_sent_date": null, - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.36", - "balance": "35.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1822, - "quantity": 4, - "cost": 8.84, - "product_key": "sed", - "notes": "Nam neque exercitationem quia iusto molestiae facilis ipsum magni.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1807, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1807, - "key": "l0uqz7ddwfb38mymjnpfve8bgclpls99", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1808, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1807", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.95", - "balance": "33.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1823, - "quantity": 5, - "cost": 6.79, - "product_key": "quis", - "notes": "Molestias ut reiciendis aut magnam et. Ipsam natus facilis in porro dolores. Totam excepturi cumque ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1808, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1808, - "key": "hcvdtcslenogjwxh3nr1jkwzck0luver", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1809, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1808", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-13", - "last_sent_date": null, - "due_date": "2020-03-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.48", - "balance": "10.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1824, - "quantity": 2, - "cost": 5.24, - "product_key": "quia", - "notes": "Quibusdam non ea et. Mollitia qui nulla sed. Dicta voluptate voluptatem corrupti ex libero possimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1809, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1809, - "key": "biuos6lcoxbrfl2bnriavxvg2vb6dtxr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1810, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1809", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.30", - "balance": "17.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1825, - "quantity": 2, - "cost": 8.65, - "product_key": "qui", - "notes": "Ut necessitatibus nulla quia voluptates aut ut dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1810, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1810, - "key": "neb3vlhgajyajgjipz4h5klsgqofqdln", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1811, - "client_id": 21, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1810", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-05", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.20", - "balance": "31.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1826, - "quantity": 5, - "cost": 6.24, - "product_key": "et", - "notes": "Velit aliquid et nam maiores voluptas enim dolorem. Dolorem debitis fugit et soluta ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:24.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1811, - "company_id": 1, - "user_id": 1, - "client_contact_id": 21, - "quote_id": 1811, - "key": "zmakxnnaml7czcisbvd7nhbwkyy5im6a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:24", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1912, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1911", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.88", - "balance": "44.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1927, - "quantity": 8, - "cost": 5.61, - "product_key": "laboriosam", - "notes": "Dignissimos quia sunt est ratione voluptate. Nostrum necessitatibus itaque minima eveniet commodi architecto distinctio. Et saepe provident harum autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1912, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1912, - "key": "wcvjok4rqfwpbi3b2pjfywukwebija2b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1913, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1912", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.80", - "balance": "37.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1928, - "quantity": 5, - "cost": 7.56, - "product_key": "incidunt", - "notes": "Qui culpa minus at deserunt et voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1913, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1913, - "key": "dotz9o3l1ja61wruftrt2oxe5m8cls2t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1914, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1913", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.84", - "balance": "31.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1929, - "quantity": 8, - "cost": 3.98, - "product_key": "quo", - "notes": "Quis ullam et non rerum eligendi ex commodi. Quia rerum vel sunt modi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1914, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1914, - "key": "xhtozykx5ifgnvtxjrhhhbnjsv7m6not", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1915, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1914", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2020-02-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.46", - "balance": "12.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1930, - "quantity": 7, - "cost": 1.78, - "product_key": "qui", - "notes": "Est iste vero sit nam quos voluptas ut. Quo et omnis nobis omnis molestias. Mollitia laboriosam dolores quae harum. Quia qui et sint et et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1915, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1915, - "key": "44eykl55oqfokhhb47wbx1e8dgluvgr8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1916, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1915", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-09", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "62.96", - "balance": "62.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1931, - "quantity": 8, - "cost": 7.87, - "product_key": "vero", - "notes": "Dolores aut dicta quos. Ut placeat maxime quam ea. Dolores cum saepe rerum sint. Beatae ea quia perspiciatis laborum omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1916, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1916, - "key": "g7sthrm8lkobskbjmog9wvcyokbawzr2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1917, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1916", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2020-05-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.05", - "balance": "44.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1932, - "quantity": 5, - "cost": 8.81, - "product_key": "quam", - "notes": "Sunt non quos animi minima at omnis accusantium. Dolor rerum sit corrupti ut blanditiis molestias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1917, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1917, - "key": "rrvrmerz22q9nd6jhx3kezpyxijimpoc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1918, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1917", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-22", - "last_sent_date": null, - "due_date": "2020-02-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.69", - "balance": "32.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1933, - "quantity": 7, - "cost": 4.67, - "product_key": "et", - "notes": "Nostrum laboriosam sed rerum quia magni. Minus ad fuga ut. Est aliquid atque rerum est. Eum natus eaque quod non et totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1918, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1918, - "key": "l2vmgc8yearr5wylmpkjvtvldvse2jwg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1919, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1918", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-16", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.88", - "balance": "21.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1934, - "quantity": 4, - "cost": 5.47, - "product_key": "asperiores", - "notes": "Architecto qui quia unde culpa enim sed. Dolor pariatur voluptatum consequatur tempora ratione.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1919, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1919, - "key": "ftof7hfgh2yny9h60uw7le8uokeaq5it", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1920, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1919", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.74", - "balance": "22.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1935, - "quantity": 3, - "cost": 7.58, - "product_key": "sunt", - "notes": "Doloribus nemo dignissimos ea. Accusantium ut iure omnis sit. Rerum culpa velit velit. Dolor molestiae ut sed accusantium doloribus quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1920, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1920, - "key": "vyrf1trukooxgnr0xaogubxfet0yzqw8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1921, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1920", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-06", - "last_sent_date": null, - "due_date": "2020-04-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.50", - "balance": "17.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1936, - "quantity": 7, - "cost": 2.5, - "product_key": "quaerat", - "notes": "Totam aut voluptatibus soluta non quia blanditiis. Soluta libero qui et quidem et et illo quas. Aliquam voluptatibus provident quos distinctio. Atque quisquam minima consequuntur aut sequi. Animi eos officiis aut dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1921, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1921, - "key": "1yj6brtrdthhcv8s8n56bdfyayrqpmlv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1922, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1921", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-20", - "last_sent_date": null, - "due_date": "2020-04-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.28", - "balance": "17.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1937, - "quantity": 8, - "cost": 2.16, - "product_key": "ut", - "notes": "Sequi voluptatem soluta fugit quae rem tempore. Ab assumenda consequatur cum sapiente rerum. Autem odit odit voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1922, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1922, - "key": "dsto6sxzymiuv0tk3yj66sep7kl0wvtl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1923, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1922", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-18", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.19", - "balance": "2.19", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1938, - "quantity": 1, - "cost": 2.19, - "product_key": "aut", - "notes": "Nam fugiat dolorem magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1923, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1923, - "key": "5aicwvcs5tzatthtxkrxbtemuvmtkpyx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1924, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1923", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-23", - "last_sent_date": null, - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.97", - "balance": "46.97", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1939, - "quantity": 7, - "cost": 6.71, - "product_key": "et", - "notes": "Et quia minus laboriosam aut qui error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1924, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1924, - "key": "zz8nxi6i2mazmitlepshawewb1bsatse", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1925, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1924", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.70", - "balance": "36.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1940, - "quantity": 10, - "cost": 3.67, - "product_key": "nisi", - "notes": "Modi corrupti impedit nam non odio dolorum. Doloribus quam in quis quia odit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1925, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1925, - "key": "cz73h67zqc1nxcv3djurvfc8zjnhcjdj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1926, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1925", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-27", - "last_sent_date": null, - "due_date": "2020-01-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.36", - "balance": "16.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1941, - "quantity": 2, - "cost": 8.18, - "product_key": "non", - "notes": "Beatae nesciunt vel fugit. Et earum et deleniti totam nobis placeat. Et officia et animi soluta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1926, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1926, - "key": "lkcovtavq5on2n8fqegkeunaelgkfop0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1927, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1926", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-04-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "79.74", - "balance": "79.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1942, - "quantity": 9, - "cost": 8.86, - "product_key": "a", - "notes": "Magni tempora quaerat animi quaerat ut explicabo. Est enim aut in quidem hic. Alias consequatur enim minima sunt doloremque eaque aut. Corrupti voluptates quia est dolores ratione occaecati officia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1927, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1927, - "key": "nv3oqcvfxebwwdv1p3tqauygvrd2je6p", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1928, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1927", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.04", - "balance": "15.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1943, - "quantity": 2, - "cost": 7.52, - "product_key": "illo", - "notes": "Dolore sed dolore unde ratione porro sint saepe commodi. Illo aliquid neque quidem aliquam totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1928, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1928, - "key": "yi52ulu2l93cjmctcmp9ccxam9llvhdk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1929, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1928", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "54.00", - "balance": "54.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1944, - "quantity": 10, - "cost": 5.4, - "product_key": "quos", - "notes": "Tempora dignissimos vel nihil non voluptatibus magni rerum. Nam aut eligendi vel temporibus. Occaecati qui aspernatur sit quos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1929, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1929, - "key": "gwffab0tawkdlrcvaxcakr2h2ufe0xjy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1930, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1929", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-12", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.50", - "balance": "28.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1945, - "quantity": 5, - "cost": 5.7, - "product_key": "aperiam", - "notes": "Natus iste illum velit temporibus ut asperiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1930, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1930, - "key": "vmlxe6mpl9yukbu6z25p0f8yswcjxlic", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1931, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1930", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.35", - "balance": "27.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1946, - "quantity": 5, - "cost": 5.47, - "product_key": "tempore", - "notes": "Optio quis reiciendis ad nulla. Consequatur corporis sapiente dolorem qui. Harum quibusdam expedita exercitationem quas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1931, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1931, - "key": "ncadbtuftgdyra5agwp4g2ydp4rwicz4", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1932, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1931", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.52", - "balance": "37.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1947, - "quantity": 7, - "cost": 5.36, - "product_key": "est", - "notes": "Qui officia totam dolore pariatur et. Voluptatem consectetur sint officia perspiciatis qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1932, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1932, - "key": "bgit3n4mis834ziygpmb0izhxgmvvcoj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1933, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1932", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.70", - "balance": "7.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1948, - "quantity": 2, - "cost": 3.85, - "product_key": "ut", - "notes": "Dolore consequuntur aut accusamus qui sint voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1933, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1933, - "key": "njkvhuac2yyukephc9wm1yp7pd4hxlvc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1934, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1933", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-05-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.86", - "balance": "16.86", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1949, - "quantity": 2, - "cost": 8.43, - "product_key": "enim", - "notes": "In dolorum dolore in aliquam omnis. Numquam eius nesciunt aut omnis minus rerum. Rerum in distinctio laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1934, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1934, - "key": "84toroctpklm2pzanfqtyqukcvbjr4ec", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1935, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1934", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-26", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.48", - "balance": "9.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1950, - "quantity": 3, - "cost": 3.16, - "product_key": "magni", - "notes": "Eos harum optio molestias officia. Incidunt eligendi eaque qui ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1935, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1935, - "key": "ctatmehp3xft69pyhhym5fmoz9xi7ad9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1936, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1935", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.65", - "balance": "9.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1951, - "quantity": 1, - "cost": 9.65, - "product_key": "repudiandae", - "notes": "Nisi quas magni fugiat velit. Et consequuntur aut voluptatem deserunt quis sunt. Mollitia nobis veritatis voluptate voluptas velit in. Fugiat aut et non eos perspiciatis nulla.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1936, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1936, - "key": "z6bspaiboyoxbnexm0gbl4q28reppqbg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1937, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1936", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-22", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.06", - "balance": "39.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1952, - "quantity": 7, - "cost": 5.58, - "product_key": "voluptatem", - "notes": "Asperiores maiores fugit nisi est et. Illum cumque temporibus delectus amet aperiam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1937, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1937, - "key": "qmzmc8czvabjp1vwzxkl9bzo34b57ryp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1938, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1937", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2020-03-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.82", - "balance": "9.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1953, - "quantity": 1, - "cost": 9.82, - "product_key": "est", - "notes": "Architecto illum atque quos explicabo quia. Vel amet eveniet quia illo quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:29.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1938, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1938, - "key": "gif9uh3k716hdq05wj70gjv6wdmwwzyb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:29", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1939, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1938", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-13", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.10", - "balance": "17.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1954, - "quantity": 2, - "cost": 8.55, - "product_key": "beatae", - "notes": "Quaerat ex soluta temporibus repudiandae voluptatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1939, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1939, - "key": "sbv8iy9mntlb1i9piiljrj8zljfjzjmn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1940, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1939", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-22", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "76.41", - "balance": "76.41", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1955, - "quantity": 9, - "cost": 8.49, - "product_key": "officia", - "notes": "Accusamus reprehenderit illum aliquam culpa velit delectus. Omnis expedita quae est autem ut molestiae. Ex nisi dicta et ut est dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1940, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1940, - "key": "civ21zxmvgqgk9nndscd4ncnhsgrwjuy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1941, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1940", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-12", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.94", - "balance": "6.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1956, - "quantity": 2, - "cost": 3.47, - "product_key": "quia", - "notes": "Et voluptatem aspernatur odit eaque maxime soluta et. Culpa porro ullam explicabo libero quis dolores. Ut expedita cumque voluptas sint. Beatae molestiae aut incidunt a inventore voluptates et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1941, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1941, - "key": "3lpe4t4sohi8xvflbijjqxyvyu74jy1j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1942, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1941", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-20", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.70", - "balance": "5.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1957, - "quantity": 1, - "cost": 5.7, - "product_key": "dolorem", - "notes": "Blanditiis adipisci architecto sed autem. Ut non quia consequuntur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1942, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1942, - "key": "essqunb2f8je8nnvcwxpoochzqvpcssd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1943, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1942", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-13", - "last_sent_date": null, - "due_date": "2020-03-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.22", - "balance": "17.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1958, - "quantity": 2, - "cost": 8.61, - "product_key": "fugit", - "notes": "Aperiam consequatur exercitationem excepturi odio. Voluptas natus aut eligendi ipsa dolorem sunt alias quaerat. Delectus modi qui nam et qui culpa. Est tenetur amet omnis necessitatibus modi praesentium quisquam dolore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1943, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1943, - "key": "oa3e0epumxuhja0pdlgdlrcvdq9yjrbr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1944, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1943", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-05", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.18", - "balance": "27.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1959, - "quantity": 3, - "cost": 9.06, - "product_key": "nesciunt", - "notes": "Similique quos ea quo perferendis doloribus et delectus. Quidem rerum et rerum quia explicabo ut voluptates veniam. Perspiciatis illum laborum ullam nobis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1944, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1944, - "key": "59oodbuncxuwzbgaz4fvvwcr0z8htbol", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1945, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1944", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.76", - "balance": "53.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1960, - "quantity": 6, - "cost": 8.96, - "product_key": "ea", - "notes": "Dolores ut quo qui odio et assumenda. Necessitatibus qui a qui asperiores et cum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1945, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1945, - "key": "vxgaonxgr6bl90ocphnm8fldou8ysnna", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1946, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1945", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.96", - "balance": "33.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1961, - "quantity": 6, - "cost": 5.66, - "product_key": "ducimus", - "notes": "Sunt placeat qui vel illum tenetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1946, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1946, - "key": "wfrc8eljcgtovmc3pxkem0bl22odlhfw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1947, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1946", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-15", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "58.08", - "balance": "58.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1962, - "quantity": 8, - "cost": 7.26, - "product_key": "mollitia", - "notes": "Eum ut minus asperiores omnis debitis. Est ullam praesentium illo quibusdam qui est nihil. Dolores est quisquam molestiae aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1947, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1947, - "key": "rxvtspazhlc5wx0ojzvowfpn41ocoxum", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1948, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1947", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-26", - "last_sent_date": null, - "due_date": "2019-12-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.76", - "balance": "27.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1963, - "quantity": 4, - "cost": 6.94, - "product_key": "corrupti", - "notes": "Illum quisquam earum alias incidunt quae eum. Temporibus rem quia delectus a in rem. Accusamus porro corrupti exercitationem aut sed dolore aliquid. Error maiores quia dolorem voluptatem cum cupiditate illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1948, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1948, - "key": "51uo9ud5iscvqhgazxpedzislte41gna", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1949, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1948", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-11", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.72", - "balance": "21.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1964, - "quantity": 6, - "cost": 3.62, - "product_key": "omnis", - "notes": "A quidem et quis et. Ut deleniti voluptatem quasi fugiat molestias natus voluptatibus. Inventore dignissimos esse nobis nisi odit veniam natus. Incidunt ea reiciendis eaque in ipsa. Vero id ea eum illum ad quidem voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1949, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1949, - "key": "apmt4hca1ozg4mw20lzct5fekakkiapo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1950, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1949", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2020-05-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.28", - "balance": "13.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1965, - "quantity": 2, - "cost": 6.64, - "product_key": "sed", - "notes": "Sit magnam autem unde culpa. Deserunt aut nostrum quos eius. Provident non accusantium ad id consequuntur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1950, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1950, - "key": "fatlkogpnkcwj16ba4n0a7v7iyn307pb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1951, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1950", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.80", - "balance": "44.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1966, - "quantity": 8, - "cost": 5.6, - "product_key": "voluptas", - "notes": "Aspernatur in omnis voluptas. Mollitia sit minima non et et. Deserunt tempora consectetur aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1951, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1951, - "key": "zkii5wm1qyvkf0sqkel7cnhyfazmbehf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1952, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1951", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-12", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.63", - "balance": "8.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1967, - "quantity": 1, - "cost": 8.63, - "product_key": "assumenda", - "notes": "Esse ad voluptate blanditiis rerum dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1952, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1952, - "key": "lgwaurez3uwzepcllwaah6mwsxyxxzsf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1953, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1952", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.80", - "balance": "12.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1968, - "quantity": 10, - "cost": 1.28, - "product_key": "at", - "notes": "Velit saepe temporibus delectus corporis inventore. Quidem assumenda aut accusantium delectus dolores. Voluptate iusto delectus quod iste. Vero aspernatur rerum quia quas aut eaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1953, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1953, - "key": "mfi5i6yq5veh8llzdo1ylmfo9keqiokx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1954, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1953", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-02", - "last_sent_date": null, - "due_date": "2019-12-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.55", - "balance": "25.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1969, - "quantity": 7, - "cost": 3.65, - "product_key": "ab", - "notes": "Accusantium repellendus explicabo perferendis aut veniam saepe ipsum. Cum qui quam qui ut eius veniam debitis. Et velit ducimus et velit maxime. Ea molestiae commodi neque consequatur sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1954, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1954, - "key": "oinhwcpl2ybgeyv8gvzxvvunnmig6rrm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1955, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1954", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.01", - "balance": "29.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1970, - "quantity": 3, - "cost": 9.67, - "product_key": "incidunt", - "notes": "Odio earum repellat molestias voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1955, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1955, - "key": "bgz6fxq9uxwtz5ggwld4gbd1hsisokpf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1956, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1955", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-18", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.44", - "balance": "29.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1971, - "quantity": 4, - "cost": 7.36, - "product_key": "rerum", - "notes": "Mollitia voluptatem laborum fugit totam temporibus soluta nam. Asperiores nam dolore aliquam tempora aut cum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1956, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1956, - "key": "vxk0cricudbhqku4tyyrakvissyhs4s7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1957, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1956", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.57", - "balance": "5.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1972, - "quantity": 1, - "cost": 5.57, - "product_key": "numquam", - "notes": "Deleniti ad eos est ut. Unde at praesentium et aut excepturi beatae. Quia omnis quam et possimus adipisci officia. Quis qui tempora aspernatur. Maiores dolores consequuntur odit architecto. Illum nesciunt ut officia quia totam sapiente. Soluta non cupiditate molestiae quo aut aut voluptate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1957, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1957, - "key": "or0kxrrgpntolpfwfuwupshhhugahw5r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1958, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1957", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-20", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.06", - "balance": "8.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1973, - "quantity": 1, - "cost": 8.06, - "product_key": "veniam", - "notes": "Dignissimos enim commodi est amet consequatur. Ut adipisci labore et corrupti accusantium autem praesentium. Amet officia repellat non quam asperiores molestias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1958, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1958, - "key": "aeo96gggdk4evuv6itjrmfdweiv9we3d", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1959, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1958", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.05", - "balance": "17.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1974, - "quantity": 5, - "cost": 3.41, - "product_key": "autem", - "notes": "Natus ducimus aperiam repellendus similique praesentium et sed quidem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1959, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1959, - "key": "bbrzpe51ru1yv1awvmyxk2xq1w5vyigr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1960, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1959", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.40", - "balance": "59.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1975, - "quantity": 9, - "cost": 6.6, - "product_key": "deleniti", - "notes": "Dolores at commodi corporis iure eos occaecati.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1960, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1960, - "key": "nmjvg36gmcw9srpprgcryw9ctcbazrl7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1961, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1960", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-01-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.10", - "balance": "34.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1976, - "quantity": 5, - "cost": 6.82, - "product_key": "et", - "notes": "Doloribus omnis similique libero sit. Molestiae expedita deserunt dolor ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1961, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1961, - "key": "fwcgrw1itermfol0vgmeyyerbw6xynde", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1962, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1961", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.36", - "balance": "57.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1977, - "quantity": 6, - "cost": 9.56, - "product_key": "id", - "notes": "Et sed quia in in autem. Sint molestiae ex saepe et dolore voluptas quod et. Quas est incidunt nisi sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1962, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1962, - "key": "cok3nobowulnbwhfpxspt47vyogpb0it", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1963, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1962", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.52", - "balance": "17.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1978, - "quantity": 6, - "cost": 2.92, - "product_key": "nulla", - "notes": "Et consequatur dignissimos ut velit debitis repellat voluptas. Qui inventore eligendi eos omnis. Sunt velit ut accusamus minima quasi et aliquid.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1963, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1963, - "key": "qnpgluzx9wvo9e8h6pqf7zcfeim9ydlj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1964, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1963", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-05-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "37.53", - "balance": "37.53", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1979, - "quantity": 9, - "cost": 4.17, - "product_key": "quia", - "notes": "Impedit quae et dolor praesentium iusto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1964, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1964, - "key": "bmhrcalndj3cejocutx09jjsveijwel8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1965, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1964", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-03", - "last_sent_date": null, - "due_date": "2020-05-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.29", - "balance": "28.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1980, - "quantity": 3, - "cost": 9.43, - "product_key": "qui", - "notes": "Aliquam fugiat dolorem autem officia assumenda. Suscipit quasi voluptas in optio aut. Ut exercitationem officia et odit sit quos ipsam. Sint repellat aut qui. Dolorum nulla quod sed accusamus doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1965, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1965, - "key": "fe8sg0zlmh2f3251uv8wplkuolrbtsjx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1966, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1965", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-22", - "last_sent_date": null, - "due_date": "2020-05-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "88.83", - "balance": "88.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1981, - "quantity": 9, - "cost": 9.87, - "product_key": "est", - "notes": "Rerum pariatur quo cupiditate labore esse tenetur libero. Necessitatibus animi eum deleniti ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1966, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1966, - "key": "kqu1yayvacuvbaqp0rpvce7xmnlgwkps", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1967, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1966", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-21", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.90", - "balance": "63.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1982, - "quantity": 10, - "cost": 6.39, - "product_key": "dolore", - "notes": "Deleniti voluptatem tempore saepe rerum quibusdam. Laborum minima sed quibusdam omnis in. Culpa neque deleniti atque quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1967, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1967, - "key": "zjx6or7e9fagdkd0rwl6ni5d24spzn34", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1968, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1967", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2019-12-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.24", - "balance": "35.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1983, - "quantity": 4, - "cost": 8.81, - "product_key": "aliquam", - "notes": "Consequatur voluptatibus minus adipisci qui. Similique et corporis est et reiciendis id similique recusandae. Omnis suscipit maxime eum esse. Sed consectetur nemo recusandae earum eum vel ex voluptas. Molestiae sed non unde repudiandae alias perspiciatis ea.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1968, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1968, - "key": "i0vvrnbnadt4i0wlv8djszsfuorrt8xs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1969, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1968", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-22", - "last_sent_date": null, - "due_date": "2020-04-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.90", - "balance": "66.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1984, - "quantity": 10, - "cost": 6.69, - "product_key": "ut", - "notes": "Ad nostrum itaque voluptatum accusamus minus quis. Quidem culpa et aliquid. Officiis magnam eaque et eligendi libero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1969, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1969, - "key": "dfe6oe2bwpt1ujnz2t6c7javler58lvg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1970, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1969", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-27", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "57.26", - "balance": "57.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1985, - "quantity": 7, - "cost": 8.18, - "product_key": "dolorum", - "notes": "Cumque qui saepe ut quo modi natus sed. Aut qui aut et deserunt. Beatae qui quod sit voluptas quam cupiditate natus. Itaque quam natus sunt corrupti et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1970, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1970, - "key": "1py9eaaemljzfptkztpvkseqxbkeocvc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1971, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1970", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-11", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.95", - "balance": "39.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1986, - "quantity": 5, - "cost": 7.99, - "product_key": "id", - "notes": "Voluptas amet et recusandae minima. Aliquam repellat commodi consequuntur quaerat earum quae. Magni iste autem eius nihil rem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1971, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1971, - "key": "tcwjxmegke3lbij9ib0qnudfxp5yjqxj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1972, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1971", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-05", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "61.60", - "balance": "61.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1987, - "quantity": 7, - "cost": 8.8, - "product_key": "sed", - "notes": "Rem et id quae quisquam. Quidem repellendus repellat dolor ut aliquam. Tempora a qui qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1972, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1972, - "key": "6by0u9bxlweghs8cz7qn8phqdsmdnzjs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1973, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1972", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-06", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.22", - "balance": "18.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1988, - "quantity": 2, - "cost": 9.11, - "product_key": "eos", - "notes": "Consequatur odio nisi aut et non. Ea id nemo omnis perspiciatis qui. Aut praesentium aliquam eaque sequi repellendus iure magnam aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1973, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1973, - "key": "wngfu0y1puffcugl7ykyedpzcelfulmf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1974, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1973", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2020-03-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "75.92", - "balance": "75.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1989, - "quantity": 8, - "cost": 9.49, - "product_key": "cupiditate", - "notes": "Et deleniti eos voluptatem aut nostrum consequatur. Nesciunt et doloremque et sequi voluptas atque. Non ex enim perferendis nemo. Est in sunt itaque beatae sed earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1974, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1974, - "key": "roku8wrc6i3yc6y20lk0fxoxswbiuxrl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1975, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1974", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.50", - "balance": "49.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1990, - "quantity": 9, - "cost": 5.5, - "product_key": "ut", - "notes": "Officia vero mollitia repellendus dolores. Quae a totam consequuntur reiciendis quo iste et. Possimus quisquam maxime quidem aut sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1975, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1975, - "key": "xpyrcpthsgcwmfxvbntak5z1cbeulf2b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1976, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1975", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-30", - "last_sent_date": null, - "due_date": "2019-12-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.46", - "balance": "9.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1991, - "quantity": 2, - "cost": 4.73, - "product_key": "id", - "notes": "Consequatur voluptates dolores officiis sint ut eius eum. Quia eaque beatae autem debitis ut est optio. Voluptatibus asperiores sapiente expedita a dignissimos qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1976, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1976, - "key": "w19v43xnvzwuejs3tgojigqosy0mm1rp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1977, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1976", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2020-03-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.20", - "balance": "9.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1992, - "quantity": 8, - "cost": 1.15, - "product_key": "dolor", - "notes": "Quos et exercitationem accusamus quisquam nisi atque exercitationem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1977, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1977, - "key": "uzl4e1nwwi6euqtyse8luzpyx3kncc5h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1978, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1977", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-17", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.29", - "balance": "66.29", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1993, - "quantity": 7, - "cost": 9.47, - "product_key": "omnis", - "notes": "Corrupti asperiores neque et omnis illo libero doloribus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1978, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1978, - "key": "czwrgtt55mvmmjdoqpbdqojdjghtx1eu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1979, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1978", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.15", - "balance": "24.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1994, - "quantity": 3, - "cost": 8.05, - "product_key": "numquam", - "notes": "Iure in eius sint dolorem a. Doloribus officia omnis molestiae. Consectetur consequatur eius odit qui. Iusto quia itaque amet iste nobis ratione libero laboriosam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1979, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1979, - "key": "vzjwybmtgx9rencu6ybv6cvylcwz9f7c", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1980, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1979", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2020-01-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.14", - "balance": "10.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1995, - "quantity": 2, - "cost": 5.07, - "product_key": "vel", - "notes": "Architecto molestiae praesentium ad et dolores voluptate. Doloribus dolor alias alias dolores asperiores fuga officiis eum. Fugit est in enim. Ipsam eum enim cupiditate voluptatum dolor et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1980, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1980, - "key": "pmjm4dt8kifcr0kd1lzjxdttfa6xreyt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1981, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1980", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.78", - "balance": "12.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1996, - "quantity": 9, - "cost": 1.42, - "product_key": "in", - "notes": "Error sed rerum saepe ipsum et ducimus ipsam molestiae. Sit eos beatae quae adipisci. Quia et non corporis. Similique nam et quasi debitis vel. Non impedit quo nisi dolor voluptas sit. Aut voluptatibus porro temporibus voluptatem. Sit quos fugiat dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1981, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1981, - "key": "c805sibvlub6fjv7bbmii3seeqlygcx5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1982, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1981", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-25", - "last_sent_date": null, - "due_date": "2020-01-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.25", - "balance": "3.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1997, - "quantity": 1, - "cost": 3.25, - "product_key": "provident", - "notes": "Quaerat repellat laboriosam sit accusamus esse.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1982, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1982, - "key": "rd4hnxaaedqsa7ihm1pyd1kf5k5cjuud", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1983, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1982", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-01", - "last_sent_date": null, - "due_date": "2020-02-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.42", - "balance": "8.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1998, - "quantity": 1, - "cost": 8.42, - "product_key": "et", - "notes": "Nesciunt dicta exercitationem minus consequatur ut aut enim et. Ipsam ipsa accusantium ullam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1983, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1983, - "key": "k163jwgytesycr6m0qro7xey3aulaffo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1984, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1983", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-31", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.30", - "balance": "25.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 1999, - "quantity": 10, - "cost": 2.53, - "product_key": "dolores", - "notes": "Et quos et expedita explicabo quidem. Voluptatem qui fugit numquam dignissimos et rerum a. Molestias pariatur odio aliquid sit dolore error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1984, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1984, - "key": "lykigcaftxrchg8bt21slozswx3opjyy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1985, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1984", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.70", - "balance": "20.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2000, - "quantity": 5, - "cost": 4.14, - "product_key": "sequi", - "notes": "Saepe nam non temporibus. Eligendi doloribus enim nulla qui occaecati. Beatae impedit aspernatur expedita maxime possimus odio. Quam voluptate earum ut cupiditate ex nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1985, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1985, - "key": "u6dstumtxra8zsimru09qmvvztpegeij", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1986, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1985", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.34", - "balance": "59.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2001, - "quantity": 6, - "cost": 9.89, - "product_key": "iure", - "notes": "Ipsam quaerat autem excepturi. Minus ut ipsam maxime.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1986, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1986, - "key": "yr0shi1wnot5hscjfurvk2s2i3bjwmlu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:30", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1987, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1986", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.52", - "balance": "59.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2002, - "quantity": 8, - "cost": 7.44, - "product_key": "est", - "notes": "Sint quis in aliquam cum tempore quasi. Voluptates eaque et magni repudiandae blanditiis. Quidem voluptates culpa et non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:30.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1987, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1987, - "key": "wt8ea1dcmoyesakajon1rus8dmvmvxlv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1988, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1987", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-29", - "last_sent_date": null, - "due_date": "2020-04-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.96", - "balance": "45.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2003, - "quantity": 6, - "cost": 7.66, - "product_key": "nihil", - "notes": "Qui sed magni perspiciatis explicabo omnis odio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1988, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1988, - "key": "taqm0qgerxhrr5bnlgjb3glqcbgiiarc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1989, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1988", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-25", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.03", - "balance": "30.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2004, - "quantity": 7, - "cost": 4.29, - "product_key": "et", - "notes": "Beatae veniam unde natus soluta sit. Doloremque soluta laboriosam magnam. Corporis modi aut sint vitae omnis sint reprehenderit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1989, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1989, - "key": "klafblxoipss9ctaz3fxyzl7ez9lm63t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1990, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1989", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-03", - "last_sent_date": null, - "due_date": "2020-05-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.62", - "balance": "55.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2005, - "quantity": 9, - "cost": 6.18, - "product_key": "ullam", - "notes": "Nobis repellendus est facere magni molestiae deleniti quia. Quaerat aliquid et soluta. Autem eligendi dolorem cumque sint harum culpa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1990, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1990, - "key": "vx0d5qw1lnau124hjajvmgpwqs0u56r2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1991, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1990", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.82", - "balance": "10.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2006, - "quantity": 2, - "cost": 5.41, - "product_key": "excepturi", - "notes": "Dolor eos possimus dolor totam omnis fuga earum. Pariatur nesciunt quas sunt aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1991, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1991, - "key": "lfpyrgan8tyqlr3nib5xtfizzeidenab", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1992, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1991", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-17", - "last_sent_date": null, - "due_date": "2020-01-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.88", - "balance": "13.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2007, - "quantity": 4, - "cost": 3.47, - "product_key": "quam", - "notes": "Esse reiciendis accusamus sed tenetur. Reiciendis officiis ab porro quidem esse voluptatem magni. Cum dolores voluptatem omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1992, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1992, - "key": "4ij7w11z9l8tlzgeakfvpn5eaut3cmgu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1993, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1992", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-29", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "83.10", - "balance": "83.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2008, - "quantity": 10, - "cost": 8.31, - "product_key": "voluptates", - "notes": "Sapiente nisi rerum nisi officiis id. Eligendi sit illo nemo. Aliquam et cumque ut quia veritatis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1993, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1993, - "key": "csatc7htavut1ws2teewzjcldvccwq0x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1994, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1993", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.34", - "balance": "18.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2009, - "quantity": 2, - "cost": 9.17, - "product_key": "cum", - "notes": "Et possimus ea aut hic quis. Maiores doloribus sed eum exercitationem molestias. Inventore magnam porro autem mollitia repellat tenetur sed numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1994, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1994, - "key": "j0nccfoiiagmgwanpkht2qdpjt0cmvyf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1995, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1994", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "78.32", - "balance": "78.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2010, - "quantity": 8, - "cost": 9.79, - "product_key": "sint", - "notes": "Asperiores distinctio doloremque reiciendis odio consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1995, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1995, - "key": "y6hj0mkprbbn1jal1zfoplts2ngd5mw8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1996, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1995", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.00", - "balance": "10.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2011, - "quantity": 1, - "cost": 10, - "product_key": "rem", - "notes": "Voluptatem omnis facilis ut ratione veritatis. Accusamus est magnam est quam veniam officia fugit non. Dignissimos voluptatibus consequatur perspiciatis non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1996, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1996, - "key": "o1vqvgeezfddm6vnlt5dqcv8vxrmcp6a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1997, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1996", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-07", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.96", - "balance": "34.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2012, - "quantity": 8, - "cost": 4.37, - "product_key": "fuga", - "notes": "Quo quis dolor veritatis consectetur pariatur. Praesentium dolores rerum qui odio.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1997, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1997, - "key": "1yv27jllsowar4fzioz10simu0qoi608", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1998, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1997", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2020-04-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.35", - "balance": "27.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2013, - "quantity": 5, - "cost": 5.47, - "product_key": "ipsum", - "notes": "Totam atque recusandae autem enim. Qui sunt voluptas modi consequuntur. Sed et dolore fuga nostrum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1998, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1998, - "key": "nzdvceeqnjyinip6dwxdl3jc22zvvymk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 1999, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1998", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.52", - "balance": "25.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2014, - "quantity": 4, - "cost": 6.38, - "product_key": "tempora", - "notes": "Id magnam quia cupiditate et. Quia ab architecto voluptates quas. Libero exercitationem at placeat reiciendis. Sunt pariatur animi aut alias voluptatem voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 1999, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 1999, - "key": "qg70f2yipr84k5a99jcfrsklgilbp9pu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2000, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "1999", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-18", - "last_sent_date": null, - "due_date": "2019-12-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.44", - "balance": "25.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2015, - "quantity": 3, - "cost": 8.48, - "product_key": "molestiae", - "notes": "Unde corrupti temporibus totam quidem quisquam in. Quod praesentium voluptatem consequuntur tempora quidem cumque doloremque. Voluptatem sed id blanditiis. Tempore magnam tempore earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2000, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2000, - "key": "teimmkxkv9g1yimzfphw0fmrsguzzpbm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2001, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2000", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-05", - "last_sent_date": null, - "due_date": "2020-02-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.39", - "balance": "19.39", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2016, - "quantity": 7, - "cost": 2.77, - "product_key": "dolores", - "notes": "Aut velit sit ut vel at provident autem. Autem est ratione et impedit tempora eius. Ut nisi ea autem et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2001, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2001, - "key": "dbd9fxbwktrzo2jgx4ko2zy9k1zyl1yi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2002, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2001", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.44", - "balance": "20.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2017, - "quantity": 7, - "cost": 2.92, - "product_key": "velit", - "notes": "Dolorem et maiores nemo ut laudantium ipsam atque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2002, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2002, - "key": "fpnts325ozyafvzrex0nassx8s6b2hr8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2003, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2002", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.60", - "balance": "40.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2018, - "quantity": 5, - "cost": 8.12, - "product_key": "recusandae", - "notes": "Cupiditate blanditiis rerum ipsa sed nisi labore placeat. Quibusdam magnam natus sed aut eum aperiam. Optio maiores non sint fugiat quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2003, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2003, - "key": "opbptwpboipsenuxes30zrf0ogrcdpsp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2004, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2003", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.31", - "balance": "29.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2019, - "quantity": 3, - "cost": 9.77, - "product_key": "minima", - "notes": "Distinctio ea molestiae sunt suscipit iste vitae cum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2004, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2004, - "key": "bknzyynz6d4yxjtljyldfigaoa25hhof", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2005, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2004", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-09", - "last_sent_date": null, - "due_date": "2020-02-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.92", - "balance": "34.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2020, - "quantity": 6, - "cost": 5.82, - "product_key": "sit", - "notes": "Quas molestiae ex et voluptatem earum. Fuga et illum dolorem quae. Enim nihil accusamus est voluptates nesciunt rem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2005, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2005, - "key": "aae3iricrqk8ryrrazejamaeilvirl5r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2006, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2005", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-03", - "last_sent_date": null, - "due_date": "2020-03-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.99", - "balance": "3.99", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2021, - "quantity": 1, - "cost": 3.99, - "product_key": "ut", - "notes": "Id maxime optio qui est. Tempore quam optio et quia reiciendis nihil sed. Est praesentium vel officia iste. Porro beatae et non eveniet commodi quibusdam quisquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2006, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2006, - "key": "5fzlxwbzxlczvzkpfco1t3wi8vjhdgvj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2007, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2006", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-30", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.69", - "balance": "15.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2022, - "quantity": 3, - "cost": 5.23, - "product_key": "dicta", - "notes": "Ab qui nostrum quos animi tempore et recusandae quia. Quo culpa odio voluptatem aut. Dolorum eos suscipit ea tenetur sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2007, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2007, - "key": "pgm0ig2oua87v124m9ddpsa4rqqqspnv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2008, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2007", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-14", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.08", - "balance": "8.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2023, - "quantity": 2, - "cost": 4.04, - "product_key": "enim", - "notes": "Enim facere in et quisquam deleniti itaque. Modi corrupti laboriosam et vero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2008, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2008, - "key": "fnvykgcribwzfoxzwwtshahtj7urrfpb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2009, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2008", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2020-01-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.47", - "balance": "5.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2024, - "quantity": 1, - "cost": 5.47, - "product_key": "dignissimos", - "notes": "Est esse repellat doloremque temporibus ex voluptatibus. Eum velit repudiandae sequi quia et sunt et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2009, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2009, - "key": "ezwuhuvedff8fa0ug9yyp04jehoxwyqe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2010, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2009", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-20", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.58", - "balance": "11.58", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2025, - "quantity": 3, - "cost": 3.86, - "product_key": "excepturi", - "notes": "Sit molestiae est eaque ea. Itaque ipsa officiis assumenda sit corporis ipsa ad. Nemo autem provident quia at placeat a.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2010, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2010, - "key": "sxnki8i2aplzzbpmzztbmsj4sjrvxkti", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2011, - "client_id": 22, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2010", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-02-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.72", - "balance": "13.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2026, - "quantity": 4, - "cost": 3.43, - "product_key": "voluptatem", - "notes": "Error rerum ut aut provident repudiandae. Ut voluptatibus ex qui rem et. Qui ut aut quam molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:31.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2011, - "company_id": 1, - "user_id": 1, - "client_contact_id": 22, - "quote_id": 2011, - "key": "mguzkhx2u3ledbgystbp7yjqvejmmera", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:31", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2112, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2111", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-05", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.31", - "balance": "11.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2127, - "quantity": 3, - "cost": 3.77, - "product_key": "occaecati", - "notes": "Voluptatem vitae reprehenderit repellat ut sit nihil est. Nihil sit iste est voluptatem. Ad eos ab nihil fugit ipsam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2112, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2112, - "key": "p1guuzgvvxhibrmzsc2razig443fwyzb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2113, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2112", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-09", - "last_sent_date": null, - "due_date": "2020-06-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "33.95", - "balance": "33.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2128, - "quantity": 5, - "cost": 6.79, - "product_key": "iste", - "notes": "Consequatur quod repellendus voluptate reiciendis. Voluptatem omnis qui molestiae error iste ut saepe. Voluptate doloremque atque dicta.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2113, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2113, - "key": "aajpflziw2fb7w3cathnlbhtag8inedl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2114, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2113", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-17", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.76", - "balance": "8.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2129, - "quantity": 6, - "cost": 1.46, - "product_key": "in", - "notes": "Amet omnis odio inventore similique tenetur aut. Quasi ullam explicabo alias veniam. Repellat pariatur dignissimos animi doloribus quo quae enim et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2114, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2114, - "key": "yjgdcz3kdipapansrfunpehaizcvjpce", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2115, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2114", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-01", - "last_sent_date": null, - "due_date": "2020-01-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.18", - "balance": "9.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2130, - "quantity": 9, - "cost": 1.02, - "product_key": "numquam", - "notes": "Minus laborum blanditiis exercitationem et est maxime sint quis. Porro consequatur molestiae blanditiis fuga. Eaque aut et maxime distinctio non eligendi et. Dolorem laborum est qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2115, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2115, - "key": "vdzti0bvdnfmxvi722bqkcobzhj9dpmm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2116, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2115", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-17", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.72", - "balance": "60.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2131, - "quantity": 8, - "cost": 7.59, - "product_key": "corrupti", - "notes": "Eius sit omnis totam totam. Beatae consequatur aut tempora.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2116, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2116, - "key": "07q3hwsdogkij2lywzlcoepmnisk8bsp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2117, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2116", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2020-03-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "29.88", - "balance": "29.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2132, - "quantity": 3, - "cost": 9.96, - "product_key": "quia", - "notes": "Incidunt rerum iure voluptatem officiis non et labore. Vel rerum fuga quis sint. Maiores qui facere quia est voluptatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2117, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2117, - "key": "osxpeeh9x2nzdepgovwdjtxfzy68cajb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2118, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2117", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-04-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.40", - "balance": "1.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2133, - "quantity": 1, - "cost": 1.4, - "product_key": "quasi", - "notes": "Autem quis et soluta magnam dolores blanditiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2118, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2118, - "key": "8r9h2wbmalepiwjsljqpapiyrrojfahj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2119, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2118", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-15", - "last_sent_date": null, - "due_date": "2020-04-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.80", - "balance": "10.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2134, - "quantity": 8, - "cost": 1.35, - "product_key": "non", - "notes": "Et voluptatem magni cumque sed aliquid. Culpa accusamus explicabo eius et excepturi. Est odit qui laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2119, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2119, - "key": "auebajrlmeiczbedfwj0bexseotaxnod", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2120, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2119", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "74.70", - "balance": "74.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2135, - "quantity": 10, - "cost": 7.47, - "product_key": "aspernatur", - "notes": "Eum necessitatibus non aut aut quod dolores. Consequatur doloremque consectetur sint dolorem ut. Dolor vel possimus sed et incidunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2120, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2120, - "key": "fxtlxx4bamlyhass5szxky2ebdnhqtzb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2121, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2120", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-03-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.79", - "balance": "5.79", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2136, - "quantity": 3, - "cost": 1.93, - "product_key": "laborum", - "notes": "Illum cupiditate possimus et sunt et. Dolor aut molestiae aut cum nihil ex. Quia consectetur ducimus ut facere. Ea dignissimos nisi ea eos est explicabo. Illum in perferendis facere totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2121, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2121, - "key": "yltfio0e8k2g0ijzedaqkfkrgft1p8vu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2122, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2121", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-25", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.94", - "balance": "6.94", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2137, - "quantity": 2, - "cost": 3.47, - "product_key": "aspernatur", - "notes": "In ipsum animi officiis voluptatem. Unde quas culpa veniam dolore neque voluptatibus rerum. Et molestiae rerum rerum labore aspernatur est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2122, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2122, - "key": "ga2eskow2gjxwlti6mx7r7awhhl9royv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2123, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2122", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-07", - "last_sent_date": null, - "due_date": "2020-04-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.68", - "balance": "25.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2138, - "quantity": 6, - "cost": 4.28, - "product_key": "dolor", - "notes": "Porro laudantium rerum nostrum non quas. Consequatur inventore natus qui occaecati. Quisquam asperiores in non aperiam. Occaecati incidunt ab quia in rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2123, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2123, - "key": "s2bbmgly0eoa81liwl5oafvnajgiscen", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2124, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2123", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-04-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.30", - "balance": "15.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2139, - "quantity": 2, - "cost": 7.65, - "product_key": "natus", - "notes": "Aut temporibus porro rerum assumenda. Fugit inventore accusamus natus exercitationem doloribus non. Doloremque quisquam quas quaerat et consectetur soluta. Nulla numquam expedita expedita rem ipsum nostrum officiis et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2124, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2124, - "key": "x8gkbimm6g3c7wpv5vvyoah0k8khbx26", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2125, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2124", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2019-12-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.60", - "balance": "2.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2140, - "quantity": 2, - "cost": 1.3, - "product_key": "cum", - "notes": "Ut non at aut excepturi et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2125, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2125, - "key": "ohgnavlqluadlwrdzwozhky6s1cqnpiv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2126, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2125", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-06", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.12", - "balance": "50.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2141, - "quantity": 7, - "cost": 7.16, - "product_key": "reiciendis", - "notes": "Ipsa dignissimos labore vitae harum ad. Eaque et dignissimos molestiae sit assumenda. Eius porro quia tenetur vero.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:36.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2126, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2126, - "key": "8efwutpcqft5q35ldxlnyempymujcb0f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:36", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2127, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2126", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.28", - "balance": "8.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2142, - "quantity": 4, - "cost": 2.07, - "product_key": "quo", - "notes": "Corporis veniam est eos ea rem placeat molestias. Doloremque impedit nostrum dolore dolorum et est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2127, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2127, - "key": "vxf1p2qen0psuqthyie1tqnzj9fd3wpj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2128, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2127", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-10", - "last_sent_date": null, - "due_date": "2020-06-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.16", - "balance": "11.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2143, - "quantity": 6, - "cost": 1.86, - "product_key": "quibusdam", - "notes": "Labore veniam ipsa perferendis eos molestiae aut. Non enim occaecati magni in modi quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2128, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2128, - "key": "pddqkzcx8olluali23szgff0y0pr29ab", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2129, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2128", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-05-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.32", - "balance": "16.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2144, - "quantity": 8, - "cost": 2.04, - "product_key": "dolor", - "notes": "Quas soluta corrupti ullam soluta deserunt. Quia placeat unde sed iste libero nisi totam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2129, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2129, - "key": "ou3edkrrkfazydieytmlnj3jcg8hykcx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2130, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2129", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "59.52", - "balance": "59.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2145, - "quantity": 6, - "cost": 9.92, - "product_key": "ut", - "notes": "Quibusdam amet qui sequi qui. Voluptatem accusantium expedita quam sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2130, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2130, - "key": "orsgwivsjnqktofrtxewuhobv2dpxgwd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2131, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2130", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-25", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.63", - "balance": "36.63", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2146, - "quantity": 9, - "cost": 4.07, - "product_key": "veritatis", - "notes": "Minus officia voluptatem corporis qui. Enim eligendi sunt sequi necessitatibus laudantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2131, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2131, - "key": "frd2u1yyjzuilkgkpmgruequse0savha", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2132, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2131", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-04-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.44", - "balance": "15.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2147, - "quantity": 8, - "cost": 1.93, - "product_key": "sequi", - "notes": "Atque voluptatum nemo non at. Tempore delectus vero ut itaque et qui. Est quod eaque et fugit consequatur autem. Ut sunt numquam sed quod.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2132, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2132, - "key": "d5xeyest1nm7itfi4mjudkv9hzhsljxt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2133, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2132", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-10", - "last_sent_date": null, - "due_date": "2020-06-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "72.00", - "balance": "72.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2148, - "quantity": 8, - "cost": 9, - "product_key": "officiis", - "notes": "Cupiditate reprehenderit blanditiis ullam reprehenderit sequi et et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2133, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2133, - "key": "ilnt7uawmcgssllq2xwcckr75jfyqzyl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2134, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2133", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.69", - "balance": "6.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2149, - "quantity": 1, - "cost": 6.69, - "product_key": "eos", - "notes": "Officiis blanditiis ea praesentium et incidunt. Tempora eius officia suscipit deserunt est voluptate. Repellat ab asperiores quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2134, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2134, - "key": "blda7p9kfbwpeojg8l5jqqr1nhk1knvi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2135, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2134", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-04", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.95", - "balance": "2.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2150, - "quantity": 1, - "cost": 2.95, - "product_key": "iste", - "notes": "Excepturi commodi suscipit quam. Nulla doloribus temporibus distinctio tenetur et ut provident.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2135, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2135, - "key": "oejpzbg408lshadwzb4a1zuxbcytgy83", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2136, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2135", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-05", - "last_sent_date": null, - "due_date": "2019-12-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.80", - "balance": "15.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2151, - "quantity": 4, - "cost": 3.95, - "product_key": "possimus", - "notes": "Molestiae ut animi vero voluptas. Minus est laudantium ratione ullam voluptatum ut tenetur non. Corporis non ut dolorem voluptate laudantium quia in laudantium.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2136, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2136, - "key": "xcloodteiltclouhps0fxovpi8mssxa9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2137, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2136", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2020-04-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.51", - "balance": "4.51", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2152, - "quantity": 1, - "cost": 4.51, - "product_key": "commodi", - "notes": "Et quis in quia sunt. Nemo eveniet culpa asperiores quasi esse sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2137, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2137, - "key": "znvv4amg5o401cxz1wbszk1zlr1la12e", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2138, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2137", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-04", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.66", - "balance": "15.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2153, - "quantity": 6, - "cost": 2.61, - "product_key": "voluptatibus", - "notes": "Facere voluptate corporis molestiae iste dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2138, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2138, - "key": "lon1zkt3kseeadxxxqbawbf4gyaumpag", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2139, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2138", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-08", - "last_sent_date": null, - "due_date": "2020-04-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.68", - "balance": "2.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2154, - "quantity": 1, - "cost": 2.68, - "product_key": "pariatur", - "notes": "Debitis quas dolorem cum. Incidunt error velit consequatur temporibus voluptatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2139, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2139, - "key": "nbotrfredcxbfks67tviphi0xpaij3kk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2140, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2139", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2019-12-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.80", - "balance": "67.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2155, - "quantity": 10, - "cost": 6.78, - "product_key": "unde", - "notes": "Sed earum libero porro est. Ut molestiae doloremque ut cumque quo. Voluptatum recusandae modi quidem ab voluptatum rerum quidem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2140, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2140, - "key": "3hgrt53e9cvobr5soz8po8tfwsflh6gr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2141, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2140", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-06", - "last_sent_date": null, - "due_date": "2020-05-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.40", - "balance": "52.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2156, - "quantity": 10, - "cost": 5.24, - "product_key": "nobis", - "notes": "Tenetur temporibus deleniti commodi quo. Qui autem exercitationem fugit aut. Ipsam repudiandae quo voluptate omnis aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2141, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2141, - "key": "domiq1lfrakw0y6zagbijq7aa3iff8ay", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2142, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2141", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-21", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.00", - "balance": "19.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2157, - "quantity": 5, - "cost": 3.8, - "product_key": "velit", - "notes": "Dolores doloremque quis repellendus aut debitis dolores totam. Illum molestiae quis aliquam dolore voluptatibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2142, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2142, - "key": "cni4prekxcs9rdtgizxyvebdciuxupyu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2143, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2142", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-06", - "last_sent_date": null, - "due_date": "2019-12-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.12", - "balance": "17.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2158, - "quantity": 8, - "cost": 2.14, - "product_key": "labore", - "notes": "Et omnis earum quod asperiores temporibus laudantium magnam. Molestiae consequatur nemo dolorem. Provident quo et odit. Veritatis officiis aut ut aperiam consectetur nulla ut nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2143, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2143, - "key": "qetajyt6fqeblj3omcrjtnyriznu2baw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2144, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2143", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-12", - "last_sent_date": null, - "due_date": "2020-04-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.60", - "balance": "51.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2159, - "quantity": 6, - "cost": 8.6, - "product_key": "quod", - "notes": "Consequatur velit corporis minima officiis in quis. Et vitae voluptas sed ea. Aut consectetur eligendi alias repellendus. Et mollitia provident rerum nostrum voluptatem sunt voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2144, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2144, - "key": "hura8xgyztnxwj9aj1kg8q49vjblsar6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2145, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2144", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.36", - "balance": "34.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2160, - "quantity": 4, - "cost": 8.59, - "product_key": "recusandae", - "notes": "Itaque quaerat provident est sunt. Explicabo fugit aspernatur aut perspiciatis consequatur quibusdam. Soluta voluptas dicta quae qui quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2145, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2145, - "key": "2hbvyaekkzok0jrpgsenysij80zcikes", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2146, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2145", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-15", - "last_sent_date": null, - "due_date": "2020-04-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.16", - "balance": "16.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2161, - "quantity": 2, - "cost": 8.08, - "product_key": "reiciendis", - "notes": "Harum molestiae quia ut similique. Impedit qui labore laborum voluptatem debitis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2146, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2146, - "key": "8u12biytqm162rnxrt2bu6trvbgk1cro", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2147, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2146", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-30", - "last_sent_date": null, - "due_date": "2020-01-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "75.36", - "balance": "75.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2162, - "quantity": 8, - "cost": 9.42, - "product_key": "nam", - "notes": "Autem sint possimus tenetur possimus consectetur. Et autem corporis cupiditate facere velit porro. Autem totam eligendi et similique nihil. In veritatis assumenda ab odit ab earum consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2147, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2147, - "key": "apketjvoclr7omt8a2msfx1noxbe6w0l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2148, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2147", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-02", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.35", - "balance": "16.35", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2163, - "quantity": 5, - "cost": 3.27, - "product_key": "asperiores", - "notes": "Sequi voluptas in impedit quisquam nihil ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2148, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2148, - "key": "sq68s1f4pgtzk9mxnueto8hn4fcck31d", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2149, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2148", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-03-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.64", - "balance": "35.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2164, - "quantity": 6, - "cost": 5.94, - "product_key": "qui", - "notes": "Eveniet assumenda distinctio amet ad tempora. Voluptatum dignissimos molestiae iste eaque consequatur et. Culpa magni delectus eum ex.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2149, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2149, - "key": "mavn2fqoyuxwid5gl25tnwodkdtby7eu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2150, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2149", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-11", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.60", - "balance": "49.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2165, - "quantity": 8, - "cost": 6.2, - "product_key": "ut", - "notes": "Eum ut et consequatur labore atque exercitationem et. Odio ab dolorum iure quas inventore consequatur illo. Ex tempore fuga numquam quibusdam omnis est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2150, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2150, - "key": "xnuphsic59xk4xi11s0pktknosgxggn6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2151, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2150", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-02", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.95", - "balance": "2.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2166, - "quantity": 1, - "cost": 2.95, - "product_key": "maiores", - "notes": "Non quia porro placeat qui tempore aliquid. Deserunt ex sed totam velit. Sit dolores culpa voluptas id sunt. Eius qui et quas neque amet est iusto ex. Reprehenderit nesciunt ut quibusdam. Minus placeat omnis omnis. Eos aut esse fuga occaecati odit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2151, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2151, - "key": "wt4mmqsttgeaat7pbma0jherkudtllxx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2152, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2151", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-04-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.30", - "balance": "44.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2167, - "quantity": 10, - "cost": 4.43, - "product_key": "nemo", - "notes": "Veniam in doloribus vel eius. Voluptas quasi odit enim distinctio exercitationem dolorem. Aut eos repellendus unde doloremque libero rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2152, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2152, - "key": "qfwn8lo2m7ntjduo2jayxvgishseoycu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2153, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2152", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.92", - "balance": "28.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2168, - "quantity": 3, - "cost": 9.64, - "product_key": "nulla", - "notes": "Qui libero iste reiciendis repellendus sed architecto. Quis eligendi est ipsa qui. Consequatur magni aut rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2153, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2153, - "key": "uqozoqkjiskeryzoayrasu0oelzfxngj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2154, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2153", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-24", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.96", - "balance": "27.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2169, - "quantity": 6, - "cost": 4.66, - "product_key": "veniam", - "notes": "Odit sint omnis qui sint. Accusamus quos cum et neque expedita quis eos. Eligendi eum assumenda non blanditiis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2154, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2154, - "key": "v10rjxtyyeqozm6vdboz9afwb08vswsw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2155, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2154", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-25", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.57", - "balance": "8.57", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2170, - "quantity": 1, - "cost": 8.57, - "product_key": "voluptates", - "notes": "Aut tenetur aut et aut consequatur blanditiis laboriosam. Voluptatem tempora illum sit et amet deserunt sapiente.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2155, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2155, - "key": "2gxakv1dcscherxkxjpmxbnipaxyggqd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2156, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2155", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.28", - "balance": "26.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2171, - "quantity": 6, - "cost": 4.38, - "product_key": "amet", - "notes": "Voluptatem rerum ut nostrum et impedit. Ut et voluptas numquam adipisci. Sit aperiam molestiae consequuntur exercitationem voluptatem quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2156, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2156, - "key": "oxnjnaqetessw5b1ihmvuumhflkxawti", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2157, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2156", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-30", - "last_sent_date": null, - "due_date": "2020-05-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "88.11", - "balance": "88.11", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2172, - "quantity": 9, - "cost": 9.79, - "product_key": "perferendis", - "notes": "Ut eum ab doloribus recusandae qui et aut. Est est illo in aut ipsum vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2157, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2157, - "key": "axqik6ohjv5ljs4aa6y0zzkocz1e4n4k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2158, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2157", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.12", - "balance": "28.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2173, - "quantity": 4, - "cost": 7.03, - "product_key": "omnis", - "notes": "Incidunt et repellat dolor ducimus. Et ratione cum recusandae sapiente asperiores quidem. Sit qui quidem porro aut sit sunt. Sequi quod ipsa amet dicta. Et et magni exercitationem culpa veritatis amet. Iste voluptas voluptate cum modi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2158, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2158, - "key": "1lwdypfljczaz3xdkqtq08sniu6q7ehv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2159, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2158", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-07", - "last_sent_date": null, - "due_date": "2020-05-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "26.49", - "balance": "26.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2174, - "quantity": 3, - "cost": 8.83, - "product_key": "modi", - "notes": "Nisi commodi nobis consequatur odio. Ut dolores quasi animi ipsa voluptas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2159, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2159, - "key": "djfr7fmlhw48n6wp6ttakb70oxp0orit", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2160, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2159", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-05", - "last_sent_date": null, - "due_date": "2020-01-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.60", - "balance": "34.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2175, - "quantity": 4, - "cost": 8.65, - "product_key": "deleniti", - "notes": "Consequatur quod eos vel. Ut eveniet omnis ab velit. Voluptas quis qui quia enim et id ut est. Autem harum explicabo dicta qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2160, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2160, - "key": "bn5clnzesa7ppr23f1sfrfxas2fevk0k", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2161, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2160", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-25", - "last_sent_date": null, - "due_date": "2020-05-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.24", - "balance": "19.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2176, - "quantity": 4, - "cost": 4.81, - "product_key": "ipsam", - "notes": "In est est quae illum eos debitis. Non eaque repudiandae voluptas omnis vitae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2161, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2161, - "key": "nptwsqiaxoebanne9mdnwezolgsjuybj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2162, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2161", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "73.98", - "balance": "73.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2177, - "quantity": 9, - "cost": 8.22, - "product_key": "voluptates", - "notes": "Minima et modi fuga ducimus. Aut maiores odio iusto.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2162, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2162, - "key": "9yp5ctw2fojh02gkiilvuwu04h9wd0of", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2163, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2162", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-05-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.16", - "balance": "18.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2178, - "quantity": 4, - "cost": 4.54, - "product_key": "mollitia", - "notes": "Laborum odit accusamus fugiat vel impedit. Qui doloribus voluptatem est ipsum hic tempore.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2163, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2163, - "key": "wqrgyqnduqwahdvwhlux6mmxsvtgmmto", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2164, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2163", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": "2020-03-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.70", - "balance": "7.70", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2179, - "quantity": 2, - "cost": 3.85, - "product_key": "deleniti", - "notes": "Praesentium veniam veniam iste neque. Consequatur voluptatibus porro eos cum accusamus veniam. Sit sequi ut dolorum saepe magni autem minima qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2164, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2164, - "key": "pntjhmpe5bgwj31g9cvib8t8o1wacwmy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2165, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2164", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-09", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "79.84", - "balance": "79.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2180, - "quantity": 8, - "cost": 9.98, - "product_key": "esse", - "notes": "Id quas ea facere similique. Qui architecto ex ut quisquam ex laborum. Voluptatem aliquid saepe neque sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2165, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2165, - "key": "q4sgysdn0plbunc3uptk8s0sqzk51n9r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:37", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2166, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2165", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-02", - "last_sent_date": null, - "due_date": "2020-06-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "98.20", - "balance": "98.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2181, - "quantity": 10, - "cost": 9.82, - "product_key": "dolores", - "notes": "Earum cum et aut necessitatibus numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:37.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2166, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2166, - "key": "lrf8taf6nhjpqpfuvmk78twsvouwctce", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2167, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2166", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2019-12-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.66", - "balance": "9.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2182, - "quantity": 7, - "cost": 1.38, - "product_key": "harum", - "notes": "Et id et consequatur qui id. Cupiditate omnis sit ea veritatis magni fuga dolore dolore. Aut optio vero eius velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2167, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2167, - "key": "ha2pqpl6zz2e1amwizt04xrz0lwt7zgr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2168, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2167", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.14", - "balance": "25.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2183, - "quantity": 6, - "cost": 4.19, - "product_key": "quis", - "notes": "Numquam labore dolores fuga ut vel. Amet magnam maiores accusantium qui non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2168, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2168, - "key": "rkstpvwjjpuroiqbpyhdohezta1lkwcc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2169, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2168", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.00", - "balance": "45.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2184, - "quantity": 6, - "cost": 7.5, - "product_key": "enim", - "notes": "Fugiat aperiam provident quos atque. Asperiores eaque dolorum enim et sint quae. Laboriosam aut doloribus et. Ipsam deleniti quam enim magnam qui velit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2169, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2169, - "key": "t0sregliktbh7xhdkeowymc3kcrw2wbe", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2170, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2169", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-18", - "last_sent_date": null, - "due_date": "2020-03-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.00", - "balance": "8.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2185, - "quantity": 1, - "cost": 8, - "product_key": "numquam", - "notes": "Amet placeat quibusdam in nihil sequi corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2170, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2170, - "key": "4hmgivcrtxerpakd8vka3lgnsiduqprz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2171, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2170", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-06-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.56", - "balance": "19.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2186, - "quantity": 6, - "cost": 3.26, - "product_key": "provident", - "notes": "Voluptas similique neque nostrum doloribus a minima aut. Quos corporis nesciunt qui ut eum voluptate eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2171, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2171, - "key": "isjolx9oczw2l4g5rorkpul397atslvz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2172, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2171", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-02-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.83", - "balance": "39.83", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2187, - "quantity": 7, - "cost": 5.69, - "product_key": "quam", - "notes": "Sed aut qui blanditiis molestias et sunt nostrum. Voluptas rem et dicta voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2172, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2172, - "key": "qmjbuhmsika1xvx7dt2ffzwngx8sdvin", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2173, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2172", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2020-04-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.30", - "balance": "2.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2188, - "quantity": 1, - "cost": 2.3, - "product_key": "nobis", - "notes": "Pariatur quidem porro quis et dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2173, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2173, - "key": "qvimdiaxt5bzpc0mcwmuvcrp21ngadnc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2174, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2173", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-03", - "last_sent_date": null, - "due_date": "2020-03-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.52", - "balance": "20.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2189, - "quantity": 6, - "cost": 3.42, - "product_key": "quia", - "notes": "Facilis hic quis laudantium neque sit corrupti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2174, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2174, - "key": "k7skort3b5njcosewrkh4qeok4ykzom8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2175, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2174", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-02", - "last_sent_date": null, - "due_date": "2020-06-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "35.56", - "balance": "35.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2190, - "quantity": 7, - "cost": 5.08, - "product_key": "ea", - "notes": "Aut nobis voluptates temporibus sit. Eius omnis est aut distinctio optio ut. Ducimus aut voluptate aut ut porro itaque illum. Dolores qui culpa voluptatem consequatur sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2175, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2175, - "key": "xsysj6aglbgw1im0eef6owgakpy57ztp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2176, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2175", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-06-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.68", - "balance": "50.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2191, - "quantity": 7, - "cost": 7.24, - "product_key": "ipsam", - "notes": "Ad repellendus consequatur rerum sit velit. Dolorem ipsam qui et et quisquam perspiciatis. Nulla totam ipsa in aperiam ut est molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2176, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2176, - "key": "tvrdfvgbwunbryfjqf1vg60lvdjf0tet", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2177, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2176", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-05-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.05", - "balance": "40.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2192, - "quantity": 9, - "cost": 4.45, - "product_key": "eius", - "notes": "Aspernatur placeat et quo consequatur illo fugit. Quo dolorum temporibus quis eos alias quaerat. Adipisci possimus ab quod nostrum. Deserunt quo eaque dolorum ea soluta quos recusandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2177, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2177, - "key": "nfeykfcqbgttivxz9tygutuqkugcwp4x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2178, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2177", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-27", - "last_sent_date": null, - "due_date": "2020-04-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.66", - "balance": "24.66", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2193, - "quantity": 6, - "cost": 4.11, - "product_key": "culpa", - "notes": "Quisquam voluptas reiciendis doloribus. Et repellat in et eos harum ipsum dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2178, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2178, - "key": "cuvb5eilcieqppg9ecfxnguqtex0jhjt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2179, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2178", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-11", - "last_sent_date": null, - "due_date": "2020-05-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.45", - "balance": "7.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2194, - "quantity": 5, - "cost": 1.49, - "product_key": "nemo", - "notes": "Quaerat rerum quia nulla atque. Illo aut aliquam non ut officia ex dolorum atque. Quo ullam totam laudantium ad. Eum natus voluptas dolorum odio vitae. Dolores voluptatem alias beatae consequatur sed est nemo. Possimus ut rerum eos vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2179, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2179, - "key": "ran9l3ctzoxwd8zjaelwn4enjhev7csf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2180, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2179", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2019-12-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.40", - "balance": "9.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2195, - "quantity": 4, - "cost": 2.35, - "product_key": "et", - "notes": "Consequatur ipsam velit rem ab et. Consequatur non eum magnam. Architecto esse ut inventore ut aut. Amet voluptates esse possimus earum nesciunt nam vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2180, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2180, - "key": "sjyrvgxcuuvoqaih13mr7kdosoc6celm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2181, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2180", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-23", - "last_sent_date": null, - "due_date": "2020-05-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.85", - "balance": "20.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2196, - "quantity": 3, - "cost": 6.95, - "product_key": "culpa", - "notes": "Fugiat error distinctio consectetur. Libero sunt quis eius quae cumque officia et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2181, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2181, - "key": "pssz356ywzezrm1dqwbaeasz4pkwckhy", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2182, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2181", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2020-05-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.68", - "balance": "10.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2197, - "quantity": 2, - "cost": 5.34, - "product_key": "inventore", - "notes": "Non sunt commodi quod aut possimus sed. Et esse nihil et exercitationem. Commodi eum vel numquam sapiente. Sed occaecati harum reprehenderit consequatur aut molestias. Aut omnis aperiam quae ab. Modi quae vel et nam aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2182, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2182, - "key": "cyxtkld0vs8hdjymy8aevapx9brtwis2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2183, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2182", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.98", - "balance": "16.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2198, - "quantity": 2, - "cost": 8.49, - "product_key": "ullam", - "notes": "Ea nulla quaerat aut et esse. Rerum et commodi enim aliquid. Consequatur sint aut occaecati rerum qui. Ut in nam rerum aut asperiores voluptate. Aliquid in velit est eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2183, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2183, - "key": "ihfq55tdzog9nj43wltwv22uu6dzjscl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2184, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2183", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-06", - "last_sent_date": null, - "due_date": "2020-02-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.37", - "balance": "5.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2199, - "quantity": 3, - "cost": 1.79, - "product_key": "impedit", - "notes": "Nemo quidem aperiam fuga sed ullam ut. Error neque id iste quo. Illo quisquam eum voluptas eligendi explicabo. Sint autem laudantium unde et et qui consequatur possimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2184, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2184, - "key": "d9gvfxup2xvlf9la5hvn5hiodujx5pxi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2185, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2184", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-14", - "last_sent_date": null, - "due_date": "2020-04-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.48", - "balance": "39.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2200, - "quantity": 4, - "cost": 9.87, - "product_key": "sit", - "notes": "Autem temporibus adipisci nam in fugiat fugit. Officia nihil asperiores voluptas officiis. Amet ratione facilis sunt tempore rem totam minus. Nobis temporibus aspernatur tempore excepturi alias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2185, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2185, - "key": "lgw8nunavtlsmr70iyx0t8fieixjhu5p", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2186, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2185", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-04", - "last_sent_date": null, - "due_date": "2020-05-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.40", - "balance": "7.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2201, - "quantity": 1, - "cost": 7.4, - "product_key": "delectus", - "notes": "Illo ut placeat doloremque eum quia. Sequi asperiores odio qui in nobis fugit optio. Id excepturi dolores nostrum ipsum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2186, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2186, - "key": "s2opvbmihjbvusjkekpp7jzknrqmudnl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2187, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2186", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2020-04-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.18", - "balance": "27.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2202, - "quantity": 9, - "cost": 3.02, - "product_key": "et", - "notes": "Dolor est aut magnam. Quia laudantium sunt et a fugit eos non. Velit vel ut et consequatur id excepturi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2187, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2187, - "key": "szzjybrpwqc6v8zqronisels5qwayx7q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2188, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2187", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-07", - "last_sent_date": null, - "due_date": "2020-01-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "64.26", - "balance": "64.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2203, - "quantity": 9, - "cost": 7.14, - "product_key": "id", - "notes": "Accusamus est eos non reiciendis adipisci dolores. Blanditiis id nisi nihil id omnis. Ea et rerum suscipit voluptate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2188, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2188, - "key": "bzgvnwomv9d6gbj3uijo4q3seelp28bs", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2189, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2188", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2020-02-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "78.00", - "balance": "78.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2204, - "quantity": 10, - "cost": 7.8, - "product_key": "ipsum", - "notes": "Perferendis quo dolorum ea libero soluta maxime assumenda. Recusandae in rerum fuga. Sed dolorum et quaerat corporis natus animi eaque. Eum sunt distinctio itaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2189, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2189, - "key": "vllbreqpcpfhbkn0tbydgryx624xrjx5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2190, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2189", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-01", - "last_sent_date": null, - "due_date": "2020-01-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "65.52", - "balance": "65.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2205, - "quantity": 8, - "cost": 8.19, - "product_key": "voluptatem", - "notes": "Ullam fugiat minima facilis quo accusantium sed nihil non. Itaque quisquam est sunt quibusdam maiores nisi voluptate. Quia dolores ratione labore aliquid cum et iste vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2190, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2190, - "key": "x9yn1gvda0vw888uoxnp3loqxyv8twdi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2191, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2190", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-22", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "88.92", - "balance": "88.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2206, - "quantity": 9, - "cost": 9.88, - "product_key": "dolorem", - "notes": "Fuga rerum illo tempora quis qui esse et. Qui vel quisquam dolorem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2191, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2191, - "key": "yhigwbfumifg5bnua25pzalrww6bqrpd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2192, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2191", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.36", - "balance": "19.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2207, - "quantity": 4, - "cost": 4.84, - "product_key": "minus", - "notes": "Ut itaque eum aut mollitia. Accusantium omnis quasi doloremque nam. Culpa vitae consectetur aspernatur ratione. Odit enim id et dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2192, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2192, - "key": "k6azbsjq4bs4hrmauppbchqd72q9jnry", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2193, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2192", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-04-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.16", - "balance": "53.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2208, - "quantity": 6, - "cost": 8.86, - "product_key": "saepe", - "notes": "Optio accusantium ut quo reiciendis doloremque molestiae. Possimus eum aliquam temporibus recusandae quo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2193, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2193, - "key": "1rirkh1q0nmrildrbytpzjnpck6dd28h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2194, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2193", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.44", - "balance": "24.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2209, - "quantity": 4, - "cost": 6.11, - "product_key": "quos", - "notes": "Est exercitationem nobis est velit impedit sequi praesentium. Dolor eum recusandae dolor non nihil unde. Molestias repellendus neque ipsum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2194, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2194, - "key": "3zaspewm7qikolzcnuqk5kqldn0w3m2a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2195, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2194", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-14", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.04", - "balance": "11.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2210, - "quantity": 2, - "cost": 5.52, - "product_key": "maxime", - "notes": "Culpa est maiores neque fugit esse. Iure doloribus quod et voluptatibus et. Autem ratione autem minima vel delectus est quaerat. Nam nihil placeat exercitationem recusandae sint quis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2195, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2195, - "key": "z8hwcxcerf6wfhwx4u9t6onekzgblnp1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2196, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2195", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-10", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.54", - "balance": "18.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2211, - "quantity": 6, - "cost": 3.09, - "product_key": "voluptate", - "notes": "Quia dolorum rem esse exercitationem est ipsa ullam. Reprehenderit maxime impedit aliquid pariatur hic corrupti accusamus itaque. Nihil corporis dolores aut quas. Nihil quas possimus nobis assumenda.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2196, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2196, - "key": "g4xbtdddf1tnoagoqex6ckczzxr3qp1v", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2197, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2196", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2020-03-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.56", - "balance": "11.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2212, - "quantity": 2, - "cost": 5.78, - "product_key": "beatae", - "notes": "Asperiores placeat sequi ea eligendi ut reprehenderit placeat. Reprehenderit nihil sit doloribus. Rerum aperiam et corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2197, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2197, - "key": "mvbplca1zmr8e1anuzufmknzxaghx05h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2198, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2197", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-23", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.96", - "balance": "7.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2213, - "quantity": 4, - "cost": 1.99, - "product_key": "ratione", - "notes": "Rem cumque in voluptates qui rem exercitationem eos. Vel aliquid quisquam repudiandae veritatis. Nostrum incidunt numquam quia eum temporibus soluta sunt. Sit ipsum alias nam doloribus vel. Odio quod sit sed hic. Facere consequatur commodi enim consequatur et. Quas et nulla error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2198, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2198, - "key": "x2i9bgaqzvndlpwmmintn3jjqoyuv6ga", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2199, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2198", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2019-12-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "84.42", - "balance": "84.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2214, - "quantity": 9, - "cost": 9.38, - "product_key": "et", - "notes": "Quo voluptatem velit modi ab voluptatem eum non. Et omnis debitis minima nam. Et fuga quidem ea quo tempore et pariatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2199, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2199, - "key": "pthcsjow4ihbzjojrz1rvb0jbwail9nx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2200, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2199", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2020-05-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.17", - "balance": "2.17", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2215, - "quantity": 1, - "cost": 2.17, - "product_key": "numquam", - "notes": "Deserunt necessitatibus corrupti animi odio impedit maxime asperiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2200, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2200, - "key": "hfpeuy9fz1sosq36zdytqsknjceml6wd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2201, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2200", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-09", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.52", - "balance": "41.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2216, - "quantity": 8, - "cost": 5.19, - "product_key": "alias", - "notes": "Dolor modi cum possimus molestias dolorum voluptatem voluptate vero. Quae eum sapiente tenetur et corrupti. Itaque voluptate at at.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2201, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2201, - "key": "xinsoneijduptx2hojmroxdy7p9o8w0r", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2202, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2201", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-20", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.54", - "balance": "7.54", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2217, - "quantity": 1, - "cost": 7.54, - "product_key": "at", - "notes": "Neque quos aut temporibus impedit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2202, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2202, - "key": "mfkvtqgwvblf088qf6hc9zwgwghiexfi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2203, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2202", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.60", - "balance": "12.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2218, - "quantity": 10, - "cost": 1.26, - "product_key": "rerum", - "notes": "Voluptatum cum magni quod consequuntur ut veritatis. Provident et nulla aut ex velit alias. Aut temporibus quia provident tempora qui deserunt perferendis. Quia nulla et et dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:38.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2203, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2203, - "key": "ohepcrkbg9i9dxoijjjbrqyk6brim3id", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:38", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2204, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2203", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-24", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.00", - "balance": "40.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2219, - "quantity": 4, - "cost": 10, - "product_key": "enim", - "notes": "Nobis qui velit pariatur non quisquam ut. In quibusdam molestiae non molestiae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2204, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2204, - "key": "xvmbdned1c8zrtqs7ytnsyufztozxopa", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2205, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2204", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-31", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.30", - "balance": "24.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2220, - "quantity": 10, - "cost": 2.43, - "product_key": "veniam", - "notes": "Excepturi nulla at sed. Sint voluptas voluptas rem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2205, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2205, - "key": "bu58zrqzt72gdripmizaqgd2it2nk6vz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2206, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2205", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-27", - "last_sent_date": null, - "due_date": "2020-03-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.78", - "balance": "6.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2221, - "quantity": 3, - "cost": 2.26, - "product_key": "assumenda", - "notes": "Iure aut accusamus consectetur cupiditate dolorem ex. Molestias voluptas beatae nesciunt eum consectetur in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2206, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2206, - "key": "5gax0qgaj9gxbm1s5jiyazwhlwftoan8", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2207, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2206", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-08", - "last_sent_date": null, - "due_date": "2020-06-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.09", - "balance": "27.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2222, - "quantity": 9, - "cost": 3.01, - "product_key": "omnis", - "notes": "Dolores ipsam ipsa beatae consectetur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2207, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2207, - "key": "jnjn7vsxrwjnmudhgbcj2blngvvro2hf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2208, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2207", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-22", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.72", - "balance": "41.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2223, - "quantity": 7, - "cost": 5.96, - "product_key": "quos", - "notes": "Nulla cum perspiciatis dicta aut. Et unde quisquam rem esse ea qui qui. Neque autem dolorem alias placeat sapiente laborum non consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2208, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2208, - "key": "sbaocd3hvfzyqpywyxx0fgqueg53gdju", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2209, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2208", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-20", - "last_sent_date": null, - "due_date": "2020-06-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "52.90", - "balance": "52.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2224, - "quantity": 10, - "cost": 5.29, - "product_key": "deserunt", - "notes": "Aut vitae dolor id. Id distinctio consequuntur nesciunt. Occaecati beatae itaque illum praesentium hic tempore inventore temporibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2209, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2209, - "key": "igbzudrp2pmnzvifkt7qabewdurtmvs0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2210, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2209", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-30", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "75.20", - "balance": "75.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2225, - "quantity": 10, - "cost": 7.52, - "product_key": "deleniti", - "notes": "Expedita laboriosam consequuntur sed dicta tempora. Eveniet rerum deleniti officiis nostrum. Impedit quisquam consequatur ab nam rerum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2210, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2210, - "key": "2jyl3hpu5jkbc0hsqeq4yflhmyedgwgl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2211, - "client_id": 23, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2210", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-23", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.01", - "balance": "23.01", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2226, - "quantity": 3, - "cost": 7.67, - "product_key": "molestias", - "notes": "Porro enim distinctio reiciendis dolorem. Quam suscipit modi enim esse dolores distinctio. Molestiae eveniet adipisci et quasi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:39.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2211, - "company_id": 1, - "user_id": 1, - "client_contact_id": 23, - "quote_id": 2211, - "key": "gkmk1kss21flmaer3tbiruasfqp3empw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:39", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2312, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2311", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "66.87", - "balance": "66.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2327, - "quantity": 9, - "cost": 7.43, - "product_key": "corporis", - "notes": "Sit minima rem possimus qui veniam. Suscipit nostrum unde ex qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2312, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2312, - "key": "5lmmlprjwpfpwbdbi604cjcc64kgtcpq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2313, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2312", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-03", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "40.80", - "balance": "40.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2328, - "quantity": 5, - "cost": 8.16, - "product_key": "eius", - "notes": "Qui maxime officiis vero minus ex occaecati.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2313, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2313, - "key": "cbhbzs4kzae7w791rhjipcmk3071qvzc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2314, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2313", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-10", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.95", - "balance": "3.95", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2329, - "quantity": 1, - "cost": 3.95, - "product_key": "ut", - "notes": "Praesentium quia quis nihil dolore enim voluptatum quod est. Voluptas officiis vitae ullam et facilis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2314, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2314, - "key": "ievpqnyebf6hhdi6sn14pcswdwqrftes", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2315, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2314", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-25", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.05", - "balance": "8.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2330, - "quantity": 7, - "cost": 1.15, - "product_key": "quia", - "notes": "Eum vel quasi impedit qui. Ut omnis et porro quisquam dolor atque. Suscipit aliquid dolor ipsa rerum aut. Et eum dolores distinctio eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2315, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2315, - "key": "jylmr5h7fskwqjdakmnzkobzi8q125vb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2316, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2315", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-05-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.75", - "balance": "36.75", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2331, - "quantity": 5, - "cost": 7.35, - "product_key": "illo", - "notes": "Ipsa qui occaecati aliquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2316, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2316, - "key": "bhzzsopu0l9qbyzitg3wv1lcvwelfb0w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2317, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2316", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2020-01-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.76", - "balance": "8.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2332, - "quantity": 1, - "cost": 8.76, - "product_key": "necessitatibus", - "notes": "Id accusantium molestiae ipsum illo corporis. Eos impedit voluptatem ab. Minus a ratione voluptatem. Cum consectetur quaerat aut molestias voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2317, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2317, - "key": "1prpmgca1xwi7ljeyz2hf43lyvjy8mad", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2318, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2317", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-22", - "last_sent_date": null, - "due_date": "2020-05-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.20", - "balance": "17.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2333, - "quantity": 10, - "cost": 1.72, - "product_key": "iure", - "notes": "Aut qui molestiae placeat. Exercitationem exercitationem vitae error. Voluptas consequuntur sed officiis id. Quibusdam maxime voluptas at quod aperiam. Quo minus dolores tempore molestiae magni ratione excepturi nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2318, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2318, - "key": "d886mwfae0als0diiv1brk8dxkgjvza3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2319, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2318", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-14", - "last_sent_date": null, - "due_date": "2020-03-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.10", - "balance": "15.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2334, - "quantity": 5, - "cost": 3.02, - "product_key": "hic", - "notes": "Sint esse iure ullam id. Voluptatem animi nobis delectus dolores magnam officiis. Tempore nemo libero quia quia fuga asperiores voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2319, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2319, - "key": "iptpxumq00x7f8djj7bktuubttnvtv8t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2320, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2319", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-05", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.14", - "balance": "17.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2335, - "quantity": 2, - "cost": 8.57, - "product_key": "animi", - "notes": "Aut corporis sed amet.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2320, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2320, - "key": "hpjth8phrqbnmcaier3uvbr5lt2d3t0s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2321, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2320", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-08", - "last_sent_date": null, - "due_date": "2020-03-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.22", - "balance": "4.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2336, - "quantity": 2, - "cost": 2.11, - "product_key": "consequatur", - "notes": "Velit assumenda voluptatem quasi qui sunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2321, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2321, - "key": "ykalq3c3k6r9sekwob2pt2xxf9jvslz7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2322, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2321", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-30", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.45", - "balance": "43.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2337, - "quantity": 5, - "cost": 8.69, - "product_key": "sed", - "notes": "Adipisci vel voluptatem ut qui commodi et. Eius porro aliquid est quia aut. Neque quia eius occaecati quia aut ullam ducimus dolore. Consequatur voluptates placeat dolore quas inventore velit. Temporibus pariatur magni impedit ut itaque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2322, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2322, - "key": "cpj3qz4sqnsiuxgvin29rdsgkroykw1a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2323, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2322", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-11", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.74", - "balance": "43.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2338, - "quantity": 6, - "cost": 7.29, - "product_key": "reiciendis", - "notes": "Ea tempora officiis itaque harum aspernatur ab. Nemo unde iure commodi corrupti explicabo nihil. Occaecati error cumque reiciendis labore aut rerum possimus sequi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2323, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2323, - "key": "vhsrbaocv35fmyz3ncr9g8swq9rsqcko", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2324, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2323", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-31", - "last_sent_date": null, - "due_date": "2020-06-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "24.00", - "balance": "24.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2339, - "quantity": 5, - "cost": 4.8, - "product_key": "quas", - "notes": "Omnis doloribus commodi rem alias minima qui autem. Assumenda cumque impedit qui. Fugit iusto iste nostrum. Rerum commodi autem fuga eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2324, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2324, - "key": "qfjd5kydyahw3wuhkixx17iyvdxsldo2", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2325, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2324", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-01-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "21.05", - "balance": "21.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2340, - "quantity": 5, - "cost": 4.21, - "product_key": "rerum", - "notes": "Dicta quasi natus quis ipsa laborum aut minima quas. Vel quisquam quasi officiis fuga et. Aut repellendus repellendus et non sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2325, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2325, - "key": "yylfwpdbxvazs0k9bzwq6dirtcfkqpmx", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2326, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2325", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2020-02-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.60", - "balance": "47.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2341, - "quantity": 10, - "cost": 4.76, - "product_key": "nemo", - "notes": "Doloribus delectus aut id natus. Officiis tenetur alias architecto eum. Tenetur dignissimos sequi dolorem est ab velit dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2326, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2326, - "key": "snch90j3i88lp31gc4lvr4wzdrehctnb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2327, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2326", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.87", - "balance": "9.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2342, - "quantity": 3, - "cost": 3.29, - "product_key": "adipisci", - "notes": "Voluptas repudiandae consequuntur illum. Aut facere est sint et. Et cumque nobis similique corrupti odio suscipit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2327, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2327, - "key": "bzbln4rgeo4nbeoy4pblrbsizuts85hk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2328, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2327", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-27", - "last_sent_date": null, - "due_date": "2020-02-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "44.76", - "balance": "44.76", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2343, - "quantity": 6, - "cost": 7.46, - "product_key": "ipsum", - "notes": "Harum voluptatibus commodi et voluptatem assumenda corporis eaque. Sed non sequi ad aut nihil. Est sed vel sint repellat omnis ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2328, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2328, - "key": "boxg8odxqk2zmyusql214zedmiocyv3s", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2329, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2328", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2019-12-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -189806,20 +29385,24 @@ "next_send_date": null, "amount": "48.51", "balance": "48.51", - "partial": null, + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2344, + "id": 10380, "quantity": 7, "cost": 6.93, - "product_key": "aliquam", - "notes": "Aspernatur eos unde dignissimos. Quia enim voluptatem qui ea ut quaerat ut itaque.", + "product_key": "odio", + "notes": "Totam at debitis at voluptas nemo. Labore fuga ipsa aut iure. Dolores voluptatum corporis commodi architecto sequi. Quia dolorum laudantium nesciunt a aut sint magni voluptate. Consequuntur eligendi ea voluptatem ut. Quidem porro dolor nihil excepturi rerum.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:44.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -189828,50 +29411,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2329, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2329, - "key": "pr4ugjzwnieqh4b8uotaefbgwe1wq7ld", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:44", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2330, - "client_id": 24, + "id": 10381, + "client_id": 53, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "2329", + "number": "0024", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-01-08", + "date": "2020-07-15", "last_sent_date": null, - "due_date": "2020-02-26", + "due_date": "2020-09-02", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -189880,706 +29442,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "8.74", - "balance": "8.74", - "partial": null, + "amount": "24.50", + "balance": "24.50", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2345, - "quantity": 2, - "cost": 4.37, - "product_key": "laborum", - "notes": "Aut at et earum. Quam quod maxime iure enim temporibus eos aut. Et et a voluptas ut autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:44.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2330, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2330, - "key": "4v3bh1s2mwecu7jk04lawruloqopmijt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2331, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2330", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "60.88", - "balance": "60.88", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2346, - "quantity": 8, - "cost": 7.61, - "product_key": "ex", - "notes": "Facilis non a quidem delectus quae est molestiae. Reiciendis voluptas veniam vitae non natus. Non perferendis earum dolore pariatur qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2331, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2331, - "key": "vqugptfzfsfw73ygsx1jvon7g5pdzpkm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2332, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2331", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-03-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.20", - "balance": "31.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2347, - "quantity": 5, - "cost": 6.24, - "product_key": "excepturi", - "notes": "Quia ut et voluptatem consequatur. Quam consequatur ea velit sed. Fugiat voluptatibus eos laboriosam provident. Illo laudantium aperiam voluptatem sit quaerat magni.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2332, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2332, - "key": "zpiwnpbf1fpr6weawvwukbxwifhtjwbc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2333, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2332", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-11", - "last_sent_date": null, - "due_date": "2020-04-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.15", - "balance": "7.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2348, - "quantity": 5, - "cost": 1.43, - "product_key": "quia", - "notes": "Et perspiciatis consequatur rem suscipit vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2333, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2333, - "key": "gwz0dd2thpmgzuyn5yutwtd76wgtejny", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2334, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2333", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-28", - "last_sent_date": null, - "due_date": "2020-02-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.20", - "balance": "39.20", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2349, - "quantity": 7, - "cost": 5.6, - "product_key": "pariatur", - "notes": "Velit eligendi repudiandae aut sit. Voluptate id ducimus omnis consequatur vel. Omnis voluptatibus praesentium consequatur nihil sit corporis distinctio. Neque quibusdam et modi est. Molestiae illo porro totam non facere.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2334, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2334, - "key": "7kflc89o3ojfcivez385gwmbbwk7dq1b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2335, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2334", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-24", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.78", - "balance": "13.78", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2350, - "quantity": 2, - "cost": 6.89, - "product_key": "amet", - "notes": "Officiis ea sint sed minima. Vitae tenetur expedita corporis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2335, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2335, - "key": "wtj7j0mlmgapakock594ggnkxrsg9pms", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2336, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2335", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-29", - "last_sent_date": null, - "due_date": "2020-02-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.69", - "balance": "46.69", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2351, - "quantity": 7, - "cost": 6.67, - "product_key": "sunt", - "notes": "At aliquid odio sunt est. Quam et molestias libero asperiores voluptate. Beatae eos quo aut voluptate maiores vitae. Mollitia aut optio omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2336, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2336, - "key": "5eykwvajhcnx6necntxqfhuqnmknccf6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2337, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2336", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-09", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.44", - "balance": "28.44", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2352, - "quantity": 4, - "cost": 7.11, - "product_key": "iste", - "notes": "Odio eveniet rem ipsam ratione sit est. Et doloribus magni inventore et. Beatae dolorum inventore neque modi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2337, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2337, - "key": "zxmcpho899kv6vqegrbgwahc77bqnplo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2338, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2337", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-07", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.36", - "balance": "19.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2353, - "quantity": 8, - "cost": 2.42, - "product_key": "neque", - "notes": "Error omnis ad modi. Molestias ut illum et et. Sit et qui illum eum est. Voluptate iure optio aut qui ducimus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2338, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2338, - "key": "lld5mqcn5igvkd1no8koaqcysvy0soon", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2339, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2338", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2020-05-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "85.00", - "balance": "85.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2354, + "id": 10381, "quantity": 10, - "cost": 8.5, - "product_key": "id", - "notes": "Rerum et aut id consequatur facilis dolores. In voluptatem nisi magnam est ut. Pariatur culpa et autem.", + "cost": 2.45, + "product_key": "dolorem", + "notes": "Earum quis facilis sit rerum nobis. Saepe accusantium ipsam iure nesciunt. Sit et odit temporibus rerum nam itaque.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:45.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -190588,50 +29470,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2339, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2339, - "key": "xet9xnwjodbozfwxwullgzdp3roukcfp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2340, - "client_id": 24, + "id": 10382, + "client_id": 53, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "2339", + "number": "0025", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-21", + "date": "2020-06-21", "last_sent_date": null, - "due_date": "2020-03-18", + "due_date": "2020-06-14", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -190640,174 +29501,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "7.00", - "balance": "7.00", - "partial": null, + "amount": "53.04", + "balance": "53.04", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2355, - "quantity": 4, - "cost": 1.75, - "product_key": "est", - "notes": "Ut praesentium quas minus id perferendis cumque ut. Placeat hic possimus sed facere quaerat. Eum sit et dolorem rem ut culpa laborum. Doloremque voluptas ipsa vitae id in.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2340, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2340, - "key": "8efyrku2t0bgplabvindchozncejglua", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2341, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2340", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2020-01-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "53.60", - "balance": "53.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2356, - "quantity": 10, - "cost": 5.36, - "product_key": "quam", - "notes": "Consequatur rerum qui rerum aliquid. Quia et maxime veritatis ut molestiae quia unde sunt. Magnam suscipit nobis assumenda corrupti. Unde unde illum voluptatem blanditiis non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2341, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2341, - "key": "xkgjtnq8wmrroc1rahcbcq2hl04mqock", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2342, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2341", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-27", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.28", - "balance": "9.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2357, + "id": 10382, "quantity": 8, - "cost": 1.16, - "product_key": "sed", - "notes": "Unde recusandae nemo illo facilis. Eum ducimus et minus sit eligendi commodi aut facilis. Soluta dicta nesciunt tenetur incidunt minus eius. Quae quidem dolor quis et et possimus aut.", + "cost": 6.63, + "product_key": "laboriosam", + "notes": "Nihil unde consequuntur eaque. Cumque occaecati minima fuga rerum et autem sint. Aut nihil ipsum consequatur earum. Est sed aspernatur voluptates quo est. Culpa placeat voluptas voluptas accusantium impedit alias. Temporibus quasi quas est animi quis in.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:45.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -190816,4914 +29529,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2342, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2342, - "key": "mrmn0pnekts7qwcxwhgct5oaacl0jxzv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2343, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2342", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2019-12-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.52", - "balance": "16.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2358, - "quantity": 7, - "cost": 2.36, - "product_key": "consequatur", - "notes": "Ipsum officiis nihil sunt porro autem mollitia possimus. Iste provident at consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2343, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2343, - "key": "0lojs9sujxo9uiukmgdgmxgarg1e8pv5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2344, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2343", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-25", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "63.28", - "balance": "63.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2359, - "quantity": 8, - "cost": 7.91, - "product_key": "unde", - "notes": "Provident aut quod necessitatibus qui harum. Vel autem nulla id vel corrupti et qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2344, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2344, - "key": "pgjwpleri1vhabqzbguyixfedoschq8h", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2345, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2344", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-29", - "last_sent_date": null, - "due_date": "2020-01-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.36", - "balance": "18.36", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2360, - "quantity": 4, - "cost": 4.59, - "product_key": "rerum", - "notes": "Accusantium sit cumque labore voluptas voluptates facere adipisci. Tenetur delectus quos porro dolore sint dolor.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2345, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2345, - "key": "7ceckyino6dzcfsv7jmsyajoofcngdu7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2346, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2345", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-04", - "last_sent_date": null, - "due_date": "2019-12-31", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.15", - "balance": "15.15", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2361, - "quantity": 5, - "cost": 3.03, - "product_key": "fugiat", - "notes": "Magni aut voluptatem alias possimus non omnis id. Nihil eum eveniet pariatur aspernatur quidem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2346, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2346, - "key": "ryx26isjtmyybmxtpjiyasfcnjehpxpg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2347, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2346", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-09", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.90", - "balance": "4.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2362, - "quantity": 1, - "cost": 4.9, - "product_key": "optio", - "notes": "Fuga nemo at corrupti ullam est nihil quia. Tempora quam fuga laudantium accusantium. Quos eligendi nihil repellat ipsum dolor debitis vero aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2347, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2347, - "key": "3g93nffdfv18loy9yicb3dl6jzt8rb57", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2348, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2347", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-03", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.37", - "balance": "5.37", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2363, - "quantity": 3, - "cost": 1.79, - "product_key": "et", - "notes": "Doloremque soluta quaerat voluptates cum debitis omnis quos. Quia enim qui ipsa culpa possimus dolor. Magnam corrupti eum veritatis. Culpa ipsum cumque enim et ipsa temporibus unde.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2348, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2348, - "key": "okgqm7pvcttlthdb4k4s1h9alhxtsjof", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2349, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2348", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-15", - "last_sent_date": null, - "due_date": "2020-03-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.52", - "balance": "15.52", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2364, - "quantity": 2, - "cost": 7.76, - "product_key": "minus", - "notes": "Rem velit consequatur autem nihil non quae. Necessitatibus sequi deserunt sint quia vitae est laborum. Saepe earum aut voluptatum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2349, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2349, - "key": "esdgi9dnvt6uvnhazmnz6nesh4wxtwti", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2350, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2349", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-12", - "last_sent_date": null, - "due_date": "2019-12-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.87", - "balance": "12.87", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2365, - "quantity": 9, - "cost": 1.43, - "product_key": "soluta", - "notes": "Aut quae incidunt odio veniam ut sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2350, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2350, - "key": "5dhyidwuarxkxwwr42qpglwsfeb1hl3t", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2351, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2350", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-22", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "41.02", - "balance": "41.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2366, - "quantity": 7, - "cost": 5.86, - "product_key": "voluptatem", - "notes": "Voluptas atque et architecto quia consequatur nihil molestias.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2351, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2351, - "key": "cshi0myxhmsd5zolc79ktlqn11oh36vf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2352, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2351", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-08", - "last_sent_date": null, - "due_date": "2020-03-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.80", - "balance": "23.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2367, - "quantity": 4, - "cost": 5.95, - "product_key": "et", - "notes": "Laborum minus voluptas assumenda aliquid consequatur exercitationem. Deserunt eveniet laborum nihil aperiam aliquam quo. Qui nemo aut odio fugit id a. Temporibus eaque amet dolore dignissimos totam sed magni. Vel enim molestiae iure aliquid repellat non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2352, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2352, - "key": "nikpei1fdo9qe24noaerhkkghmpvzbe7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2353, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2352", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-20", - "last_sent_date": null, - "due_date": "2020-05-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.09", - "balance": "27.09", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2368, - "quantity": 3, - "cost": 9.03, - "product_key": "quia", - "notes": "Inventore praesentium quidem aliquam nam voluptatibus. Odit facilis ipsam eos aspernatur sit sed ratione. Explicabo incidunt eum id. Ut eligendi corrupti nisi inventore. Nostrum et facere tenetur officiis necessitatibus doloribus quaerat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2353, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2353, - "key": "s3khpwqvzku9ijop2dcfr5vqh0tepa4j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2354, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2353", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-22", - "last_sent_date": null, - "due_date": "2019-12-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.18", - "balance": "2.18", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2369, - "quantity": 1, - "cost": 2.18, - "product_key": "tempore", - "notes": "Est adipisci vel animi possimus pariatur ratione assumenda.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2354, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2354, - "key": "konma6n6ybnl5qnksmti55gnugzcdnlc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2355, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2354", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-28", - "last_sent_date": null, - "due_date": "2020-01-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.47", - "balance": "28.47", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2370, - "quantity": 3, - "cost": 9.49, - "product_key": "maiores", - "notes": "Rem odit dolorem nemo quas et soluta. Eaque vero aut laudantium excepturi consequuntur. Porro ipsa ratione sint veritatis. Voluptatibus ut voluptas eius tempora qui. Laborum atque velit quam illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2355, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2355, - "key": "vu4wc6iplf6nbjtjiy2nk60cqdlhcyf9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2356, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2355", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-10", - "last_sent_date": null, - "due_date": "2019-12-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.26", - "balance": "22.26", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2371, - "quantity": 7, - "cost": 3.18, - "product_key": "omnis", - "notes": "Labore voluptate sed aut quia iste tempore. Vero aut ipsum veniam aut a id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2356, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2356, - "key": "wvxb5ao8o8hdbqmoo4mgpqrgpazo9j3v", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2357, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2356", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-04-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.31", - "balance": "16.31", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2372, - "quantity": 7, - "cost": 2.33, - "product_key": "nulla", - "notes": "Error reiciendis laudantium officiis ut et. Ea ipsam atque dolor in rerum. Eum ullam natus et dolore sunt. Corporis et officiis ut quo. Praesentium eum dolor accusamus assumenda explicabo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2357, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2357, - "key": "heyesbkdw6eethx8euwalivca9dedy2q", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2358, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2357", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-09", - "last_sent_date": null, - "due_date": "2020-02-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.64", - "balance": "6.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2373, - "quantity": 1, - "cost": 6.64, - "product_key": "optio", - "notes": "Corrupti sed et eligendi eum dolores veniam autem nihil. Blanditiis voluptas officia dolores maxime alias repudiandae recusandae consequatur. Aut tenetur magnam et laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2358, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2358, - "key": "3tzjfrued3j4edzaefbyoium8jhdiu9p", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2359, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2358", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-02-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.55", - "balance": "43.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2374, - "quantity": 5, - "cost": 8.71, - "product_key": "aut", - "notes": "Eum animi tempore qui blanditiis distinctio minus illo. Accusantium enim modi facere excepturi magni. Perspiciatis expedita officiis omnis cupiditate et. Voluptatem occaecati quia natus consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2359, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2359, - "key": "meuqfhfta1afofecmlmfjo88xdpmzjjb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2360, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2359", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2020-02-16", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.50", - "balance": "5.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2375, - "quantity": 2, - "cost": 2.75, - "product_key": "enim", - "notes": "Qui ad impedit possimus ut quo eum qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2360, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2360, - "key": "gh6k2g9fpg496bvrecdkcvredwhpdgtw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2361, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2360", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-24", - "last_sent_date": null, - "due_date": "2020-03-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "46.32", - "balance": "46.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2376, - "quantity": 6, - "cost": 7.72, - "product_key": "laudantium", - "notes": "Laborum sequi odio in placeat consequatur. Atque tenetur quos sit quo tempora vel. Explicabo unde libero qui ab ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2361, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2361, - "key": "bgg62nwkx01pmgbkb4lzx5znhsw2ybjb", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2362, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2361", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-26", - "last_sent_date": null, - "due_date": "2020-01-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "58.14", - "balance": "58.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2377, - "quantity": 9, - "cost": 6.46, - "product_key": "sint", - "notes": "Nemo omnis sint magnam corporis. Amet pariatur harum id qui. Necessitatibus et voluptatem non corporis quidem non impedit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2362, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2362, - "key": "xngdcx8au346ogwpsbeddwvlrlwyzqyt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2363, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2362", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-16", - "last_sent_date": null, - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "31.68", - "balance": "31.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2378, - "quantity": 8, - "cost": 3.96, - "product_key": "in", - "notes": "Voluptatem laboriosam qui libero perspiciatis rerum. Sunt enim eum sint. Vel qui et explicabo illo ratione est est. Quo aut blanditiis ea sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2363, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2363, - "key": "lktu2nvtrcqojdhbmqmhcstsoxgusgon", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2364, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2363", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-03", - "last_sent_date": null, - "due_date": "2020-06-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "47.40", - "balance": "47.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2379, - "quantity": 5, - "cost": 9.48, - "product_key": "corporis", - "notes": "Corporis illo ut ab doloribus aut eius fugiat. Omnis ratione molestiae eum ut. Doloribus sit fugiat ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2364, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2364, - "key": "thq5hd5qi062bb7y6qy9tpimzgky5khm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2365, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2364", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-18", - "last_sent_date": null, - "due_date": "2020-04-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.91", - "balance": "5.91", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2380, - "quantity": 3, - "cost": 1.97, - "product_key": "cumque", - "notes": "Ipsum consectetur ea eaque. Suscipit nesciunt est est tenetur est voluptatem. Repellat aspernatur totam et aut. Sed assumenda est ipsa ut ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2365, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2365, - "key": "atvtojt2kjevjiqm8ag9bjiktvwb4zgc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2366, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2365", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.80", - "balance": "2.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2381, - "quantity": 2, - "cost": 1.4, - "product_key": "cumque", - "notes": "Officia est ullam aut qui cupiditate. Hic aut adipisci est rerum porro.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2366, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2366, - "key": "sufkjgoba482invfdpfuos6mknbcidf0", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2367, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2366", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-30", - "last_sent_date": null, - "due_date": "2020-05-06", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "49.30", - "balance": "49.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2382, - "quantity": 5, - "cost": 9.86, - "product_key": "nostrum", - "notes": "Quam accusantium sunt alias quibusdam corporis error iure.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2367, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2367, - "key": "yh90tnik3q4kxnz37j55wmxz4cgr8woj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2368, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2367", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-02", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.73", - "balance": "17.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2383, - "quantity": 9, - "cost": 1.97, - "product_key": "soluta", - "notes": "Doloribus et amet ducimus voluptas. Rerum tempora aut tempora magnam. Nemo consequatur blanditiis suscipit odio et laudantium sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2368, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2368, - "key": "d7i0l5ukod1jmvik1gnwki2atvqixnpv", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2369, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2368", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-14", - "last_sent_date": null, - "due_date": "2019-12-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "89.73", - "balance": "89.73", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2384, - "quantity": 9, - "cost": 9.97, - "product_key": "sit", - "notes": "Eos sed quia saepe reiciendis assumenda nihil tempore. Officia quisquam architecto odio a sed. Quia officia repudiandae nam voluptates. Illum iusto eos incidunt eveniet et.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2369, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2369, - "key": "rtfi37flvygbyh7pz27llr9n2jnloaou", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2370, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2369", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-17", - "last_sent_date": null, - "due_date": "2020-06-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "43.55", - "balance": "43.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2385, - "quantity": 5, - "cost": 8.71, - "product_key": "omnis", - "notes": "Accusamus aut doloremque deleniti maiores odio odit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2370, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2370, - "key": "0yh8posnvm2zm9xw89ioymplxzj44ptt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2371, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2370", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-28", - "last_sent_date": null, - "due_date": "2020-01-12", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "28.16", - "balance": "28.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2386, - "quantity": 4, - "cost": 7.04, - "product_key": "quia", - "notes": "Exercitationem illum eaque eveniet veniam temporibus rerum. Molestiae error error tenetur ad qui non. Eius at rerum autem sed recusandae. Recusandae vero sunt qui iure voluptatibus et quia. Quod nam quis vel dignissimos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2371, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2371, - "key": "xr9mfmussb1qyilrt2zk8onm0fhxtoy1", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2372, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2371", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.04", - "balance": "32.04", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2387, - "quantity": 9, - "cost": 3.56, - "product_key": "aliquam", - "notes": "Voluptatibus deserunt blanditiis omnis aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2372, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2372, - "key": "nmessr3ctautt9luxvzkkvm3nhqzysr3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2373, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2372", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-10", - "last_sent_date": null, - "due_date": "2020-01-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.16", - "balance": "4.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2388, - "quantity": 4, - "cost": 1.04, - "product_key": "commodi", - "notes": "Est et nesciunt et. Voluptas et error veniam provident consequatur accusantium ullam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2373, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2373, - "key": "l6tscb1eb9tk0jnwzsfaf9geeyegaplh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2374, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2373", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-05", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "11.80", - "balance": "11.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2389, - "quantity": 5, - "cost": 2.36, - "product_key": "corporis", - "notes": "Maxime aut error et beatae laboriosam consequuntur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2374, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2374, - "key": "qwl37drnlsopr9swvi91hwnr73vsf5ap", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2375, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2374", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-14", - "last_sent_date": null, - "due_date": "2020-06-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.16", - "balance": "18.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2390, - "quantity": 2, - "cost": 9.08, - "product_key": "doloremque", - "notes": "Error quasi corporis est. Suscipit odio doloribus non distinctio. Voluptas recusandae tempore ut dolores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2375, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2375, - "key": "jsqjquesmk7dia90fyahvbynlszpqduu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2376, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2375", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-03-19", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.30", - "balance": "32.30", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2391, - "quantity": 10, - "cost": 3.23, - "product_key": "corrupti", - "notes": "Nihil quibusdam dolor doloremque sed. Laudantium alias ipsum doloribus inventore. Omnis omnis qui est mollitia. Quo dolore non nulla adipisci ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:45.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2376, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2376, - "key": "xgg5eum6ik3jbi9laygy8mah4u9brfr3", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:45", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2377, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2376", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-15", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.08", - "balance": "30.08", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2392, - "quantity": 8, - "cost": 3.76, - "product_key": "reprehenderit", - "notes": "Sapiente quia recusandae vitae magnam. Ab quas et mollitia quisquam tempore voluptate fugiat. Et rerum perferendis aperiam nam libero enim mollitia. Et libero placeat fugiat iste.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2377, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2377, - "key": "b0rkyrasokh6yaxoxvxyu2kfhhozfr2w", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2378, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2377", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-03-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "79.50", - "balance": "79.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2393, - "quantity": 10, - "cost": 7.95, - "product_key": "perspiciatis", - "notes": "Omnis eos rerum facere eos ratione. Repudiandae sed quis tenetur. Rerum cumque dolorum aliquam maiores officia et. Sed placeat et omnis pariatur nostrum ut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2378, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2378, - "key": "umbbalndrouro7gpw0n6orvhp5mg9nk6", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2379, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2378", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-19", - "last_sent_date": null, - "due_date": "2020-06-09", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "85.40", - "balance": "85.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2394, - "quantity": 10, - "cost": 8.54, - "product_key": "assumenda", - "notes": "Nobis voluptatem et fuga et porro ut consequuntur enim. Et fugiat iusto quia est sed aut. Reprehenderit dolorem et saepe neque quaerat consequuntur nulla illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2379, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2379, - "key": "bgashoyrx7rb9ppcd0aofjkoiofautmm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2380, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2379", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-19", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "77.22", - "balance": "77.22", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2395, - "quantity": 9, - "cost": 8.58, - "product_key": "quaerat", - "notes": "Autem voluptates molestiae et incidunt non sit. Rem sint qui in magni. Officia amet autem nulla autem quas.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2380, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2380, - "key": "ix1nmhidwg9crqd5lyfkozvq4mdodseq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2381, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2380", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-28", - "last_sent_date": null, - "due_date": "2019-12-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.55", - "balance": "23.55", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2396, - "quantity": 3, - "cost": 7.85, - "product_key": "sint", - "notes": "Eveniet et sit sed natus cupiditate. Fugiat vitae quaerat laborum dolor qui voluptatem quia. Omnis sunt maiores cupiditate.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2381, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2381, - "key": "efeqoie8wcfboouihuzihl6cyscd1jcp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2382, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2381", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-26", - "last_sent_date": null, - "due_date": "2020-03-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "10.72", - "balance": "10.72", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2397, - "quantity": 8, - "cost": 1.34, - "product_key": "quas", - "notes": "Maiores alias quas cupiditate alias in hic dolor. Dolores harum omnis omnis non non temporibus.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2382, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2382, - "key": "sl8k1qbwmuoeqjoctlmhjyiezyk7nkkq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2383, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2382", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-19", - "last_sent_date": null, - "due_date": "2020-03-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.10", - "balance": "9.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2398, - "quantity": 2, - "cost": 4.55, - "product_key": "commodi", - "notes": "Ut unde necessitatibus error laudantium minima et. Suscipit eligendi quo dolores facilis corporis odit est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2383, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2383, - "key": "gzddv0kxya8nnsgwngtuxga9lxf5qmqj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2384, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2383", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-01", - "last_sent_date": null, - "due_date": "2019-12-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "67.60", - "balance": "67.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2399, - "quantity": 8, - "cost": 8.45, - "product_key": "praesentium", - "notes": "Odit dolores iste facilis sequi sit mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2384, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2384, - "key": "gwrq8bm86vdnyovg68und1kttsg3rgfl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2385, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2384", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-08", - "last_sent_date": null, - "due_date": "2020-05-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "34.32", - "balance": "34.32", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2400, - "quantity": 6, - "cost": 5.72, - "product_key": "pariatur", - "notes": "Placeat soluta soluta eos. Animi est ullam accusantium necessitatibus asperiores vitae. Sint in fuga eos voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2385, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2385, - "key": "zink5m4fgaq2uqaspkzdcafijbhvb2aq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2386, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2385", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-17", - "last_sent_date": null, - "due_date": "2020-03-01", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.40", - "balance": "6.40", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2401, - "quantity": 5, - "cost": 1.28, - "product_key": "aspernatur", - "notes": "Dolore tenetur dolores dolorum quasi officiis explicabo vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2386, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2386, - "key": "bwmu1jl4wvxn5zwxatelubx66qgaaetp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2387, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2386", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-23", - "last_sent_date": null, - "due_date": "2020-05-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.00", - "balance": "50.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2402, - "quantity": 8, - "cost": 6.25, - "product_key": "minus", - "notes": "Cum beatae aut sint aliquam. Ipsa et et aut harum ducimus. Nam dolores ullam facilis nulla eum natus quo aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2387, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2387, - "key": "tecfdl3xlogiokuapxncpckqrktcswjz", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2388, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2387", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-28", - "last_sent_date": null, - "due_date": "2020-05-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.24", - "balance": "19.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2403, - "quantity": 4, - "cost": 4.81, - "product_key": "et", - "notes": "Sed et reiciendis qui accusamus voluptatem distinctio omnis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2388, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2388, - "key": "cj7ha8cqplpotawqzdxz1kjrruqreeyl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2389, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2388", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-13", - "last_sent_date": null, - "due_date": "2020-01-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.05", - "balance": "18.05", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2404, - "quantity": 5, - "cost": 3.61, - "product_key": "voluptas", - "notes": "Qui temporibus inventore rerum est. Voluptates quidem rerum explicabo dolorum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2389, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2389, - "key": "cpwkvo8lbmqif1qzq5icuwogstrkul0z", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2390, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2389", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-05", - "last_sent_date": null, - "due_date": "2020-04-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.00", - "balance": "15.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2405, - "quantity": 10, - "cost": 1.5, - "product_key": "et", - "notes": "Molestias pariatur consequatur perspiciatis amet distinctio quaerat voluptas distinctio. Nihil qui minus facere iste fuga quisquam laboriosam. Placeat occaecati labore quis qui voluptates. Repellat aut deserunt eligendi nam vel cumque eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2390, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2390, - "key": "uouoe9hwcutpd5ukwrayqu648cgltu1a", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2391, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2390", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-03-22", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "1.50", - "balance": "1.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2406, - "quantity": 1, - "cost": 1.5, - "product_key": "deleniti", - "notes": "Id alias rerum alias et. Optio facilis sit id.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2391, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2391, - "key": "wkfbbafbft02i2aoklj2fra3pnljjfkg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2392, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2391", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-17", - "last_sent_date": null, - "due_date": "2020-01-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.92", - "balance": "4.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2407, - "quantity": 4, - "cost": 1.23, - "product_key": "quam", - "notes": "Expedita cum et sit. Minus veritatis fuga laudantium veniam provident sed et dolorem. Maxime quasi iste ducimus rerum reiciendis cupiditate quia. Quaerat veniam nobis temporibus eaque. Et aut neque ut deserunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2392, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2392, - "key": "ll0hebasjubkyngzae41mrlryikwyify", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2393, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2392", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-19", - "last_sent_date": null, - "due_date": "2020-01-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.68", - "balance": "13.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2408, - "quantity": 3, - "cost": 4.56, - "product_key": "consectetur", - "notes": "Id qui nesciunt incidunt quibusdam tempora. Exercitationem quaerat rem earum harum amet. Nemo dolorem ab quaerat sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2393, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2393, - "key": "3k9wcgbzbmbs7dyg1il1ctvkuh0gmcvc", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2394, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2393", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-15", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.60", - "balance": "38.60", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2409, - "quantity": 4, - "cost": 9.65, - "product_key": "quis", - "notes": "Quia eos quia enim placeat maiores. Amet unde inventore aliquam officiis autem. Sit exercitationem rerum delectus vero maxime. Ex eos magni culpa eos quaerat non.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2394, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2394, - "key": "hr4ascegxqjyhjgjlhhcolusltkev5ax", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2395, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2394", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2019-12-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.10", - "balance": "68.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2410, - "quantity": 10, - "cost": 6.81, - "product_key": "eos", - "notes": "Sequi inventore nihil velit aliquam blanditiis qui repudiandae.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2395, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2395, - "key": "vuhs5rtdllf9g3hcapdtdcmrkf0iobao", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2396, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2395", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-18", - "last_sent_date": null, - "due_date": "2020-05-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.03", - "balance": "51.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2411, - "quantity": 9, - "cost": 5.67, - "product_key": "non", - "notes": "Doloribus hic quis sit ut dicta reprehenderit. Accusamus eum cupiditate itaque qui autem libero sint possimus. Error dicta illo eum minima.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2396, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2396, - "key": "hjncv0ru1uvffsn7byw6wv6ugk6ai6bh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2397, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2396", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2020-03-08", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.48", - "balance": "39.48", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2412, - "quantity": 7, - "cost": 5.64, - "product_key": "reprehenderit", - "notes": "Cupiditate eum unde quia ullam unde sunt. Doloribus doloremque aut expedita quod ut necessitatibus vitae nobis. Inventore dolores occaecati non nesciunt.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2397, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2397, - "key": "kcisatc0j34tv4ikvcl3n6uxomyxn5jr", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2398, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2397", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2020-05-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "69.03", - "balance": "69.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2413, - "quantity": 9, - "cost": 7.67, - "product_key": "eos", - "notes": "Fuga dolore illum illo voluptas velit. Aut reiciendis quia expedita unde rerum. Ea aut quia nulla error sit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2398, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2398, - "key": "v4pjogyfb1jn19mndkldkx1fn3qgondd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2399, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2398", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-12", - "last_sent_date": null, - "due_date": "2020-04-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "68.25", - "balance": "68.25", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2414, - "quantity": 7, - "cost": 9.75, - "product_key": "et", - "notes": "Ut et ipsa nihil officia similique molestiae ipsa. Hic quasi ipsa est maiores dolorem. Laudantium dolore consequatur et. Est quam nam voluptas doloribus aliquid.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2399, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2399, - "key": "dool5gzg56xrecuwnkxihy60qv1ilzyt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2400, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2399", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-02", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "15.74", - "balance": "15.74", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2415, - "quantity": 2, - "cost": 7.87, - "product_key": "omnis", - "notes": "Eius voluptatem dicta magni voluptate. Ea voluptas sit corrupti nobis. Impedit ipsum nisi assumenda maxime commodi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2400, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2400, - "key": "44g3wkkflule7fikgzghak76g35ffrvt", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2401, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2400", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-02-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.50", - "balance": "45.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2416, - "quantity": 7, - "cost": 6.5, - "product_key": "illo", - "notes": "Ad voluptatibus molestias repellat voluptates. Et sit laboriosam saepe aliquid. Consequuntur eligendi vitae deserunt aspernatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2401, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2401, - "key": "pcql7dkqcovkwgzwisvtaxchmh60quvd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2402, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2401", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-01", - "last_sent_date": null, - "due_date": "2020-03-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.14", - "balance": "19.14", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2417, - "quantity": 6, - "cost": 3.19, - "product_key": "commodi", - "notes": "Quas magni illo harum. Nobis illum ut labore est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2402, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2402, - "key": "xhrqnkv2kkplnxygjymbqpbge5q52och", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2403, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2402", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-31", - "last_sent_date": null, - "due_date": "2020-01-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "13.02", - "balance": "13.02", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2418, - "quantity": 7, - "cost": 1.86, - "product_key": "saepe", - "notes": "Aliquid recusandae exercitationem nemo rerum non nulla.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2403, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2403, - "key": "f1flgiuolnky4w0egkjtrznqy4wspoa9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2404, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2403", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-04", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.80", - "balance": "6.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2419, - "quantity": 4, - "cost": 1.7, - "product_key": "voluptatibus", - "notes": "Corporis voluptates est dolorum. Illo eveniet iure sunt. Dolor consequuntur assumenda occaecati. In magni velit consequatur ad eos deleniti omnis reprehenderit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2404, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2404, - "key": "jkmoiko1zmxm6u3jygqcpbscsqfdf1po", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2405, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2404", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "42.64", - "balance": "42.64", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2420, - "quantity": 8, - "cost": 5.33, - "product_key": "reprehenderit", - "notes": "Rerum aperiam sapiente asperiores ut quo rerum et. Quae est dicta ipsam accusamus ab est. Assumenda ut quidem sequi ullam. Fugit soluta sed laboriosam tempora voluptatum praesentium quia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2405, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2405, - "key": "gzxfcxpbagup1pvce7fiftymqomyxvyu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2406, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2405", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-05", - "last_sent_date": null, - "due_date": "2019-12-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "45.80", - "balance": "45.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2421, - "quantity": 5, - "cost": 9.16, - "product_key": "quisquam", - "notes": "Voluptas impedit saepe facilis est. Nobis in fugit asperiores in praesentium aut veniam. Ea minus autem ipsam sunt commodi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2406, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2406, - "key": "3c1i06cq5yimnxhaybzigj67xk6dguso", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2407, - "client_id": 24, + "id": 10383, + "client_id": 53, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "2406", + "number": "0026", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-14", + "date": "2020-04-01", "last_sent_date": null, "due_date": "2020-04-12", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -195732,326 +29560,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "41.28", - "balance": "41.28", - "partial": null, + "amount": "10.10", + "balance": "10.10", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2422, - "quantity": 8, - "cost": 5.16, - "product_key": "veniam", - "notes": "Esse eveniet reprehenderit molestias provident harum sint.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2407, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2407, - "key": "chf7dbluxa1nyycm9rpoubu32crpigot", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2408, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2407", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-21", - "last_sent_date": null, - "due_date": "2020-06-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "3.34", - "balance": "3.34", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2423, - "quantity": 1, - "cost": 3.34, - "product_key": "velit", - "notes": "Quam fugiat eaque assumenda voluptatibus nihil. Dolorem ea voluptatem asperiores aut. Tempore totam veritatis illo non. Omnis suscipit labore et laboriosam mollitia.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2408, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2408, - "key": "iq9harkfq1coztl7unwllq3syomdc88j", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2409, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2408", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "27.03", - "balance": "27.03", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2424, - "quantity": 3, - "cost": 9.01, - "product_key": "repellat", - "notes": "Officiis ipsa aut hic error explicabo saepe ipsa.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2409, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2409, - "key": "dfyaqpvzllyljeiax5pyt8y9prndbosh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2410, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2409", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-21", - "last_sent_date": null, - "due_date": "2020-06-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.49", - "balance": "5.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2425, - "quantity": 1, - "cost": 5.49, - "product_key": "quod", - "notes": "Consequatur harum dolorem autem molestias at.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:46.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2410, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2410, - "key": "depfnf9oms4iiug7lf3lykpknddkqfgn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2411, - "client_id": 24, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2410", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-16", - "last_sent_date": null, - "due_date": "2020-02-26", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "50.50", - "balance": "50.50", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2426, + "id": 10383, "quantity": 10, - "cost": 5.05, - "product_key": "est", - "notes": "Natus voluptas exercitationem maxime ab velit illum ut. Cupiditate officiis dolore est temporibus id. Tenetur et modi est quae excepturi deleniti.", + "cost": 1.01, + "product_key": "voluptatibus", + "notes": "Culpa quos laboriosam doloremque adipisci quis. Deleniti omnis ut deserunt. Quisquam ipsum aut est et dolores velit fuga.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:46.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -196060,1114 +29588,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2411, - "company_id": 1, - "user_id": 1, - "client_contact_id": 24, - "quote_id": 2411, - "key": "apxgrhoxbkqnjz8jqjizzqp05dzhbozn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:46", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2512, - "client_id": 25, + "id": 10384, + "client_id": 53, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "2511", + "number": "0027", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-04-12", + "date": "2020-10-05", "last_sent_date": null, - "due_date": "2019-12-16", + "due_date": "2020-07-24", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.62", - "balance": "2.62", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2527, - "quantity": 2, - "cost": 1.31, - "product_key": "autem", - "notes": "Animi natus veniam praesentium laboriosam iure asperiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2512, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2512, - "key": "kevjuqhhfpw52mrgcpajtn1pcutglxdn", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2513, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2512", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-22", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "7.92", - "balance": "7.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2528, - "quantity": 2, - "cost": 3.96, - "product_key": "veritatis", - "notes": "Dolore et quod amet inventore porro quia dolorem eos.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2513, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2513, - "key": "tn5q8qj7iobier9z74pe0wmroijwug6i", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2514, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2513", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-06", - "last_sent_date": null, - "due_date": "2020-02-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.68", - "balance": "5.68", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2529, - "quantity": 2, - "cost": 2.84, - "product_key": "doloribus", - "notes": "Exercitationem sit officiis similique sit praesentium laboriosam ducimus. Quo nostrum labore qui magni tempore. Et sapiente et quia odit eum vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2514, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2514, - "key": "txjovvbnswl9qzqg2pcnz83gbglcddfl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2515, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2514", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-04", - "last_sent_date": null, - "due_date": "2020-04-03", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.84", - "balance": "18.84", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2530, - "quantity": 6, - "cost": 3.14, - "product_key": "id", - "notes": "Fuga laborum cupiditate tempora qui dolorem enim. Ut animi magnam harum quaerat accusamus ea. Dolor et fugiat et ullam illo.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2515, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2515, - "key": "21bn7bioiiwvnkvhdjuctnhy1zsfz0zu", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2516, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2515", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-24", - "last_sent_date": null, - "due_date": "2020-04-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "18.24", - "balance": "18.24", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2531, - "quantity": 2, - "cost": 9.12, - "product_key": "in", - "notes": "Reprehenderit consequuntur aliquid est quae. Sint et eos fuga eveniet. Adipisci voluptate incidunt atque et laborum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2516, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2516, - "key": "qzhpayjm1qaxcety2p5bbbydpk9lfb9f", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2517, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2516", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-27", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.90", - "balance": "32.90", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2532, - "quantity": 5, - "cost": 6.58, - "product_key": "ab", - "notes": "Qui molestiae iste omnis quisquam facere quaerat et. Nam et ut voluptas sunt minus dolor doloremque esse. A soluta maxime et labore omnis aperiam at.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2517, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2517, - "key": "kcvkvvvs0i8rozievqd8ysskzafwwhxi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2518, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2517", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-14", - "last_sent_date": null, - "due_date": "2020-03-30", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "4.65", - "balance": "4.65", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2533, - "quantity": 1, - "cost": 4.65, - "product_key": "omnis", - "notes": "Beatae quibusdam fugit laborum modi. Quae at in est praesentium. Consequatur omnis ipsum ullam cum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2518, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2518, - "key": "j2qd2uhq47evjunt8tqpfpfkh9spmfwf", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2519, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2518", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-22", - "last_sent_date": null, - "due_date": "2020-04-21", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "32.80", - "balance": "32.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2534, - "quantity": 5, - "cost": 6.56, - "product_key": "distinctio", - "notes": "Odio asperiores temporibus quaerat aperiam aut iure cumque. Vero qui dolores eum numquam magnam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2519, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2519, - "key": "tra37eq5tufaeqznw0g27zhr0v8emv2l", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2520, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2519", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-05", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.13", - "balance": "23.13", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2535, - "quantity": 3, - "cost": 7.71, - "product_key": "voluptatem", - "notes": "Dolorem consequatur vitae impedit aliquam dolores sed at officia. Voluptatem sint in voluptatem nemo excepturi modi. Sint accusamus deserunt velit esse sapiente qui.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:51.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2520, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2520, - "key": "lsmuidvl93h1muu9nonczoshxrt2frkw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:51", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2521, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2520", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-19", - "last_sent_date": null, - "due_date": "2019-12-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "25.80", - "balance": "25.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2536, - "quantity": 3, - "cost": 8.6, - "product_key": "exercitationem", - "notes": "Ad soluta aut voluptatem beatae. Dolorem ullam aliquid nisi quo. Mollitia nihil aspernatur sed dolorem voluptates. Optio magnam ducimus pariatur magni. Autem ut maxime et velit. Aliquam ut est expedita alias vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2521, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2521, - "key": "veyc3yx6ss1bbsvtdvtpqpjxityjjuf5", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2522, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2521", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-01-07", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "2.38", - "balance": "2.38", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2537, - "quantity": 2, - "cost": 1.19, - "product_key": "sequi", - "notes": "Et enim itaque nisi voluptas vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2522, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2522, - "key": "uwu2h6itzt8fbujst86bupkilsno5rox", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2523, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2522", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-29", - "last_sent_date": null, - "due_date": "2020-01-29", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.06", - "balance": "19.06", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2538, - "quantity": 2, - "cost": 9.53, - "product_key": "autem", - "notes": "Sint non id corporis id sed atque nesciunt nihil.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2523, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2523, - "key": "wg4oxii9dhgxka3nvozwyeg6e5rv5un7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2524, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2523", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-26", - "last_sent_date": null, - "due_date": "2020-04-24", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "20.28", - "balance": "20.28", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2539, - "quantity": 4, - "cost": 5.07, - "product_key": "magni", - "notes": "Aut omnis quo beatae consequatur sequi autem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2524, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2524, - "key": "tjhihwt45pecqhkun7nr7ntihfngrz3b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2525, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2524", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-16", - "last_sent_date": null, - "due_date": "2020-05-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "8.96", - "balance": "8.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2540, - "quantity": 7, - "cost": 1.28, - "product_key": "aut", - "notes": "Quod possimus autem et minima quia asperiores facere. Sint omnis harum odit delectus consequatur.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2525, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2525, - "key": "kbxsfkejm4bw6b1ocj2ucrdfjhmoidzi", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2526, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2525", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-12", - "last_sent_date": null, - "due_date": "2020-03-02", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -197178,1312 +29621,24 @@ "next_send_date": null, "amount": "18.72", "balance": "18.72", - "partial": null, + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2541, - "quantity": 8, - "cost": 2.34, - "product_key": "eos", - "notes": "Et placeat error consectetur nisi modi. Et aut error eum aliquid perspiciatis. Consequuntur earum deserunt dignissimos tempore maiores.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2526, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2526, - "key": "hdfovqyv8qaj5zoebba7i79m5aougi3o", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2527, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2526", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-29", - "last_sent_date": null, - "due_date": "2020-02-17", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "17.92", - "balance": "17.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2542, - "quantity": 8, - "cost": 2.24, - "product_key": "nostrum", - "notes": "Alias aut saepe est voluptas quo a rerum. Tenetur consectetur consectetur accusantium. Et id molestiae asperiores eius.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2527, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2527, - "key": "sh2xxrgvrbeunpainjzbjrvmvxhvdu9z", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2528, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2527", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-06-08", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "38.92", - "balance": "38.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2543, - "quantity": 4, - "cost": 9.73, - "product_key": "iure", - "notes": "Illum sit illo facilis et sunt modi. Aut magnam asperiores ut quibusdam id dignissimos. Ab tempora aut est cumque.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2528, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2528, - "key": "lfmaloohz3trx7cyio4aen5rgqaes6ju", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2529, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2528", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-06", - "last_sent_date": null, - "due_date": "2020-02-13", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "22.16", - "balance": "22.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2544, - "quantity": 4, - "cost": 5.54, - "product_key": "dolorum", - "notes": "Magnam voluptatem cum consequatur ducimus ipsam temporibus. Vel sit non odio. Esse quia aut suscipit nisi. Ut accusantium hic voluptatem et error.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2529, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2529, - "key": "yix7sufrzpbsyntksiukvts8b65zayrm", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2530, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2529", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-21", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.80", - "balance": "30.80", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2545, - "quantity": 4, - "cost": 7.7, - "product_key": "vero", - "notes": "Et ut ea qui corporis. Dolores id culpa tenetur impedit ab porro qui. Mollitia maxime qui porro et et incidunt. Eos sed quaerat itaque itaque magnam fugit.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2530, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2530, - "key": "2oqbe44cil4qlnnvxfjtyekbnqjkcfcd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2531, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2530", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-16", - "last_sent_date": null, - "due_date": "2019-12-20", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "5.98", - "balance": "5.98", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2546, - "quantity": 1, - "cost": 5.98, - "product_key": "dolorum", - "notes": "Suscipit sed debitis ut omnis. Eum sunt illum est.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2531, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2531, - "key": "t2l4syoleayu9atgwgcb7muqmpvkj4u9", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2532, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2531", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-12", - "last_sent_date": null, - "due_date": "2020-06-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "23.92", - "balance": "23.92", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2547, - "quantity": 4, - "cost": 5.98, - "product_key": "quia", - "notes": "Eum deleniti esse veritatis explicabo modi omnis iste. Vel quam et velit beatae qui quaerat.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2532, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2532, - "key": "dqu2duijz4quqizpfuefgqj4mdfupcpq", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2533, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2532", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-03", - "last_sent_date": null, - "due_date": "2020-03-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.16", - "balance": "30.16", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2548, - "quantity": 8, - "cost": 3.77, - "product_key": "repellendus", - "notes": "Quaerat enim perspiciatis autem voluptatem recusandae. Consequatur distinctio doloribus adipisci et architecto in. Voluptas et iusto eos vitae qui atque ipsum. Iste eum accusamus omnis et mollitia. Voluptatum unde est quia sed. Repellendus culpa quisquam dolore facilis.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2533, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2533, - "key": "s4mvklf0aqewmkjm3rl9oigrujriyv4b", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2534, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2533", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-30", - "last_sent_date": null, - "due_date": "2020-02-28", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "19.46", - "balance": "19.46", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2549, - "quantity": 2, - "cost": 9.73, - "product_key": "neque", - "notes": "Sapiente dolorem ea pariatur impedit. Quae ut similique quod dolor. Quis facere qui ad.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2534, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2534, - "key": "j6ieykutlkdql2q22y6qtqnd6p9ocamg", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2535, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2534", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-02-14", - "last_sent_date": null, - "due_date": "2020-04-14", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "62.82", - "balance": "62.82", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2550, - "quantity": 9, - "cost": 6.98, - "product_key": "ut", - "notes": "Dolores consequuntur molestiae laborum earum.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2535, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2535, - "key": "gslvywoczxi4dfadopjnvb6qhxifbrgp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2536, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2535", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-28", - "last_sent_date": null, - "due_date": "2020-05-25", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "9.85", - "balance": "9.85", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2551, - "quantity": 1, - "cost": 9.85, - "product_key": "sapiente", - "notes": "Fugiat provident facere et aut. Ut porro saepe in. Voluptate voluptas aut nulla consequuntur nulla porro aperiam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2536, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2536, - "key": "hoz8u5csvnp06ogxhk8b5ehvbx7m4u28", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2537, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2536", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-29", - "last_sent_date": null, - "due_date": "2020-04-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "14.49", - "balance": "14.49", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2552, - "quantity": 7, - "cost": 2.07, - "product_key": "sunt", - "notes": "Neque voluptas inventore rerum et et odit quia. Dolor et incidunt minima. Totam suscipit quia perferendis ratione earum ut nesciunt fugiat. Quibusdam et consequatur quas ut est cupiditate tempora.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2537, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2537, - "key": "4ebwkln2eghjdwolwqspupewas2hknpk", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2538, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2537", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-10", - "last_sent_date": null, - "due_date": "2020-02-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "16.56", - "balance": "16.56", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2553, - "quantity": 6, - "cost": 2.76, - "product_key": "soluta", - "notes": "Exercitationem numquam incidunt quis quae quia qui. Culpa aliquam cum qui cum eos et dolores et. Aut temporibus culpa vel.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2538, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2538, - "key": "hosjk1y3nhihusfltbfmlcsqvzd5ujyo", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2539, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2538", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-05", - "last_sent_date": null, - "due_date": "2020-02-10", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "39.12", - "balance": "39.12", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2554, - "quantity": 6, - "cost": 6.52, - "product_key": "nihil", - "notes": "Modi laboriosam et voluptas fuga aut totam. Ipsa reiciendis ab iusto est eius voluptatem.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2539, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2539, - "key": "vqoi64kosqqxdkswfwj7ykpbtqpfpoao", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2540, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2539", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-03-06", - "last_sent_date": null, - "due_date": "2020-01-27", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "36.00", - "balance": "36.00", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2555, - "quantity": 4, - "cost": 9, - "product_key": "aut", - "notes": "Ut pariatur cumque eum inventore. Blanditiis ut recusandae beatae ducimus. Quod eaque doloribus sed.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2540, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2540, - "key": "rlpwpoesx3lqyn0z34qqakr3sq8aqheh", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2541, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2540", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-04-08", - "last_sent_date": null, - "due_date": "2020-04-15", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "30.96", - "balance": "30.96", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2556, - "quantity": 8, - "cost": 3.87, - "product_key": "autem", - "notes": "Est praesentium consequatur a occaecati ex. Voluptatum minus non numquam.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2541, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2541, - "key": "3hjmhzbdbmqv7djqlwhj2czfswd0qzci", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2542, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2541", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-15", - "last_sent_date": null, - "due_date": "2020-01-11", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "51.93", - "balance": "51.93", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2557, - "quantity": 9, - "cost": 5.77, - "product_key": "et", - "notes": "Omnis voluptas ullam vero laboriosam molestiae. Mollitia voluptatem voluptatem ut rerum occaecati fugit molestias. Perspiciatis praesentium similique hic. Sit harum dolores eum laborum sed est saepe. Ut nihil ducimus culpa dolor pariatur. Est quis est aut.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2542, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2542, - "key": "v6wcwspf5yfgzkxzvdnh1xkuiujukmqj", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2543, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2542", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2019-12-07", - "last_sent_date": null, - "due_date": "2020-04-05", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "12.45", - "balance": "12.45", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2558, + "id": 10384, "quantity": 3, - "cost": 4.15, - "product_key": "maiores", - "notes": "Voluptate ipsum maiores asperiores veritatis praesentium nihil soluta. Perspiciatis deserunt eum nulla debitis voluptate. Accusantium autem ipsam expedita assumenda eaque magni hic. Inventore alias dolorem assumenda et.", + "cost": 6.24, + "product_key": "dolores", + "notes": "Enim optio assumenda consequuntur atque autem enim. Adipisci deserunt ad placeat quae.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:52.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -198492,50 +29647,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2543, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2543, - "key": "oedtvhdx11adlyt12ceuhu2jp6dk5ski", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2544, - "client_id": 25, + "id": 10385, + "client_id": 53, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "2543", + "number": "0028", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-05-16", + "date": "2020-06-06", "last_sent_date": null, - "due_date": "2020-05-10", + "due_date": "2020-08-21", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -198544,22 +29678,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "34.58", - "balance": "34.58", - "partial": null, + "amount": "14.70", + "balance": "14.70", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2559, - "quantity": 7, - "cost": 4.94, - "product_key": "dolor", - "notes": "Nulla ut eos deleniti nesciunt quia. Aperiam nisi omnis placeat nam quo magnam et. Quos quibusdam quia explicabo illum et.", + "id": 10385, + "quantity": 5, + "cost": 2.94, + "product_key": "ut", + "notes": "Consequuntur asperiores a quasi unde modi aut. Quia id vel itaque magni rerum. Ea temporibus reiciendis harum doloribus vero et odit.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:52.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -198568,50 +29706,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2544, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2544, - "key": "fnavnbnb30hicmx7paxsfj81cl8xwaxd", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2545, - "client_id": 25, + "id": 10386, + "client_id": 53, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "2544", + "number": "0029", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-05-13", + "date": "2020-08-27", "last_sent_date": null, - "due_date": "2020-05-20", + "due_date": "2020-07-30", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -198620,22 +29737,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "8.76", - "balance": "8.76", - "partial": null, + "amount": "8.30", + "balance": "8.30", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2560, - "quantity": 4, - "cost": 2.19, - "product_key": "nam", - "notes": "Distinctio blanditiis nihil ea nihil quia. Sed aut sit quia provident eum.", + "id": 10386, + "quantity": 5, + "cost": 1.66, + "product_key": "occaecati", + "notes": "Illo excepturi quas qui. Occaecati qui voluptatem et similique. Praesentium quis explicabo voluptas est consequatur perferendis iure facere.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:52.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -198644,50 +29765,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2545, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2545, - "key": "n5osgfiry5r1hsu1au1muifqadcb5m1x", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2546, - "client_id": 25, + "id": 10387, + "client_id": 53, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "2545", + "number": "0030", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-04-23", + "date": "2020-08-01", "last_sent_date": null, - "due_date": "2020-05-12", + "due_date": "2020-05-07", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -198696,22 +29796,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "15.76", - "balance": "15.76", - "partial": null, + "amount": "11.88", + "balance": "11.88", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2561, - "quantity": 8, - "cost": 1.97, + "id": 10387, + "quantity": 2, + "cost": 5.94, "product_key": "rerum", - "notes": "Rerum explicabo ut et fuga est recusandae. Fuga ea id nostrum quis architecto. Illo porro temporibus ut.", + "notes": "Ullam debitis non quas a autem. Commodi velit eligendi praesentium. Reprehenderit et rerum ut.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:52.000000", + "date": "2020-06-30 11:19:17.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -198720,50 +29824,501 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2546, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2546, - "key": "tr7itwlrovwwpum8xruovhmnxfuzsov7", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2547, - "client_id": 25, + "id": 10388, + "client_id": 53, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "2546", + "number": "0031", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-01-24", + "date": "2020-07-04", "last_sent_date": null, - "due_date": "2019-12-29", + "due_date": "2020-08-20", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "32.56", + "balance": "32.56", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10388, + "quantity": 4, + "cost": 8.14, + "product_key": "voluptates", + "notes": "Inventore sit vel excepturi nulla perferendis ea. Sequi suscipit sit libero ea minima dolor id. Deleniti praesentium ullam non quia alias ab ex.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:17.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10389, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0032", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-25", + "last_sent_date": null, + "due_date": "2020-08-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.20", + "balance": "18.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10389, + "quantity": 2, + "cost": 9.1, + "product_key": "ut", + "notes": "Voluptatem nostrum nulla vero aut voluptas labore nesciunt qui. Repellendus ea qui at nam quia. Atque aut et minus pariatur magnam est.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:17.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10390, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0033", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-28", + "last_sent_date": null, + "due_date": "2020-04-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "21.52", + "balance": "21.52", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10390, + "quantity": 8, + "cost": 2.69, + "product_key": "rerum", + "notes": "Laboriosam id beatae harum in. Ad et ex quidem possimus dolorem commodi. Quibusdam laborum quasi ut rerum ut repudiandae unde.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:17.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10391, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0034", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-14", + "last_sent_date": null, + "due_date": "2020-08-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.40", + "balance": "17.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10391, + "quantity": 6, + "cost": 2.9, + "product_key": "labore", + "notes": "Rerum consequuntur omnis voluptatem voluptatem. Eum eveniet voluptatem dolorum dolorum. Numquam ducimus ut id qui neque. Ipsum eaque iste expedita asperiores omnis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:17.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10392, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0035", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-16", + "last_sent_date": null, + "due_date": "2020-05-08", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.22", + "balance": "17.22", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10392, + "quantity": 6, + "cost": 2.87, + "product_key": "excepturi", + "notes": "Aut aut consequatur a ullam hic aliquam nesciunt. Optio totam vel ipsam dolores aut est quam. Expedita eos nesciunt et fuga nulla.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:18.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10393, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0036", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-19", + "last_sent_date": null, + "due_date": "2020-04-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "29.46", + "balance": "29.46", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10393, + "quantity": 6, + "cost": 4.91, + "product_key": "voluptatum", + "notes": "Expedita similique molestias delectus earum. Voluptatem ut quia nihil corporis voluptas quo omnis. Sunt cupiditate repudiandae facilis quidem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:18.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10394, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0037", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-07", + "last_sent_date": null, + "due_date": "2020-04-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.26", + "balance": "5.26", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10394, + "quantity": 1, + "cost": 5.26, + "product_key": "dolor", + "notes": "Totam ex nobis et aspernatur commodi aut suscipit labore. Magni et nihil a. Tempora doloribus sit nisi eum eum sunt accusantium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:18.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10395, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0038", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-11", + "last_sent_date": null, + "due_date": "2020-05-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "52.56", + "balance": "52.56", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10395, + "quantity": 9, + "cost": 5.84, + "product_key": "laborum", + "notes": "At et deleniti doloremque deleniti provident tenetur. Aut harum doloremque placeat commodi inventore expedita. Vero ex vel consequatur placeat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:18.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10396, + "client_id": 53, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0039", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-01", + "last_sent_date": null, + "due_date": "2020-09-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -198774,248 +30329,24 @@ "next_send_date": null, "amount": "31.50", "balance": "31.50", - "partial": null, + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2562, - "quantity": 9, - "cost": 3.5, - "product_key": "error", - "notes": "Mollitia iste hic beatae sunt. Suscipit est doloribus et vitae consequatur perspiciatis dolor velit. Porro ea non veritatis culpa quaerat sit voluptas. Molestiae distinctio repellendus eius suscipit deleniti.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2547, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2547, - "key": "2euds8xotcf4m39mwpxgelfj3s6o10yp", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2548, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2547", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-26", - "last_sent_date": null, - "due_date": "2020-03-04", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "6.42", - "balance": "6.42", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2563, - "quantity": 3, - "cost": 2.14, - "product_key": "libero", - "notes": "Nemo eaque quo doloribus eligendi totam qui. Et nostrum sit repudiandae. Omnis quas fugit officia ut possimus. Et est ipsum labore voluptatem. Accusantium ratione delectus harum eligendi et praesentium. Veritatis ea aut non nihil pariatur itaque. Ut ducimus et et fugit ut quaerat qui animi.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2548, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2548, - "key": "sgpyuwq0heozxanpnff2kvtvjvhxirom", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2549, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2548", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-05-17", - "last_sent_date": null, - "due_date": "2020-02-23", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "55.71", - "balance": "55.71", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2564, - "quantity": 9, - "cost": 6.19, - "product_key": "optio", - "notes": "Aut similique qui aut magnam. Occaecati sint ut quos. Delectus non enim officiis maxime.", - "discount": 0, - "tax_name1": null, - "tax_rate1": 0, - "date": { - "date": "2020-03-12 06:21:52.000000", - "timezone_type": 3, - "timezone": "UTC" - }, - "custom_value1": null, - "custom_value2": null, - "line_item_type_id": 1 - } - ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2549, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2549, - "key": "wldl2fbtvun6vf1knedprasu1brw3xpl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] - }, - { - "id": 2550, - "client_id": 25, - "user_id": 1, - "company_id": 1, - "status_id": 2, - "design_id": 1, - "number": "2549", - "discount": "0.00", - "is_amount_discount": false, - "po_number": "", - "date": "2020-01-20", - "last_sent_date": null, - "due_date": "2020-03-18", - "uses_inclusive_taxes": 0, - "is_deleted": 0, - "footer": "", - "public_notes": "", - "private_notes": null, - "terms": "", - "tax_name1": "", - "tax_name2": null, - "tax_rate1": "0.000", - "tax_rate2": "0.000", - "custom_value1": "0.00", - "custom_value2": "0.00", - "next_send_date": null, - "amount": "75.10", - "balance": "75.10", - "partial": null, - "partial_due_date": null, - "line_items": [ - { - "id": 2565, + "id": 10396, "quantity": 10, - "cost": 7.51, - "product_key": "quam", - "notes": "Inventore laboriosam id sit amet ab dolorum. Eos iusto sint sit velit.", + "cost": 3.15, + "product_key": "officia", + "notes": "Aliquam commodi illum nostrum esse explicabo tenetur. Consectetur numquam doloribus eum quos. Animi aperiam ipsum nihil.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:52.000000", + "date": "2020-06-30 11:19:18.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -199024,50 +30355,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2550, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2550, - "key": "oxtouebnjvnss5j9gut4fguvvbouf5dw", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2551, - "client_id": 25, + "id": 10397, + "client_id": 53, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "2550", + "number": "0040", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-04-30", + "date": "2020-04-03", "last_sent_date": null, - "due_date": "2020-01-22", + "due_date": "2020-10-02", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -199076,22 +30386,262 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "24.30", - "balance": "24.30", - "partial": null, + "amount": "3.46", + "balance": "3.46", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2566, + "id": 10397, + "quantity": 2, + "cost": 1.73, + "product_key": "dolorum", + "notes": "Laborum nostrum voluptatem odio ipsa non ab laborum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:18.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10418, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0061", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-28", + "last_sent_date": null, + "due_date": "2020-07-14", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "30.70", + "balance": "30.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10418, + "quantity": 5, + "cost": 6.14, + "product_key": "aliquam", + "notes": "Placeat ipsam in vel sunt sunt est. Placeat in dignissimos dolores molestias. Quo voluptate itaque quis molestiae voluptate ducimus quaerat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10419, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0062", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-11", + "last_sent_date": null, + "due_date": "2020-05-09", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "60.97", + "balance": "60.97", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10419, + "quantity": 7, + "cost": 8.71, + "product_key": "molestiae", + "notes": "Odio quae minus nam autem ab. Officia sed amet dolorem rerum unde. Facilis doloribus perspiciatis velit natus earum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10420, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0063", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-24", + "last_sent_date": null, + "due_date": "2020-07-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "30.16", + "balance": "30.16", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10420, + "quantity": 4, + "cost": 7.54, + "product_key": "consectetur", + "notes": "Et eaque consectetur tempore id exercitationem. Ipsam culpa velit reiciendis dicta expedita aliquid. Iusto et quia suscipit ea quisquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10421, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0064", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-22", + "last_sent_date": null, + "due_date": "2020-04-09", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "52.26", + "balance": "52.26", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10421, "quantity": 6, - "cost": 4.05, - "product_key": "quae", - "notes": "Et placeat nulla eos ut aliquid aut. Error vitae numquam asperiores deserunt. Quaerat aut eum necessitatibus consequatur.", + "cost": 8.71, + "product_key": "dolor", + "notes": "Provident quisquam eum aut unde ut iusto. Eaque dolorum et quia ea ut. Reprehenderit similique vitae facere qui debitis sapiente sunt.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:52.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -199100,50 +30650,29 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2551, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2551, - "key": "xfygp0dm5qjqtim22qtaqndlziig7uwl", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2552, - "client_id": 25, + "id": 10422, + "client_id": 54, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "2551", + "number": "0065", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2019-12-15", + "date": "2020-06-25", "last_sent_date": null, - "due_date": "2020-05-10", + "due_date": "2020-04-07", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -199152,22 +30681,26 @@ "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "58.64", - "balance": "58.64", - "partial": null, + "amount": "79.84", + "balance": "79.84", + "partial": 0, "partial_due_date": null, "line_items": [ { - "id": 2567, + "id": 10422, "quantity": 8, - "cost": 7.33, - "product_key": "aliquid", - "notes": "Voluptatem voluptas amet dolorem labore voluptas. Et harum possimus saepe maxime. Numquam dolores dolores saepe quo.", + "cost": 9.98, + "product_key": "eveniet", + "notes": "Qui impedit quasi doloribus dolor recusandae a enim mollitia.", "discount": 0, - "tax_name1": null, + "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-03-12 06:21:52.000000", + "date": "2020-06-30 11:19:19.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -199176,50 +30709,2271 @@ "line_item_type_id": 1 } ], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [ - { - "id": 2552, - "company_id": 1, - "user_id": 1, - "client_contact_id": 25, - "quote_id": 2552, - "key": "ybjnofod3boivd159vu0szp5h2tlfwex", - "transaction_reference": null, - "message_id": "0", - "email_error": null, - "signature_base64": null, - "signature_date": null, - "sent_date": "2020-03-12 06:21:52", - "viewed_date": null, - "opened_date": null, - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null - } - ] + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { - "id": 2553, - "client_id": 25, + "id": 10423, + "client_id": 54, "user_id": 1, "company_id": 1, "status_id": 2, "design_id": 1, - "number": "2552", + "number": "0066", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-01-19", + "date": "2020-10-05", + "last_sent_date": null, + "due_date": "2020-05-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.72", + "balance": "5.72", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10423, + "quantity": 4, + "cost": 1.43, + "product_key": "esse", + "notes": "Explicabo sapiente velit adipisci ullam facilis sed quia. Facilis quia earum nisi facilis aut. Velit reiciendis ut debitis dignissimos. Provident commodi soluta doloribus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10424, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0067", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-03", + "last_sent_date": null, + "due_date": "2020-04-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.77", + "balance": "19.77", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10424, + "quantity": 3, + "cost": 6.59, + "product_key": "blanditiis", + "notes": "Quam et est laboriosam ducimus minus. Qui itaque voluptatibus sunt et corporis. Quia sit tempore placeat quia unde nobis. Qui nihil adipisci soluta dolores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10425, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0068", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-26", + "last_sent_date": null, + "due_date": "2020-07-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "31.86", + "balance": "31.86", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10425, + "quantity": 9, + "cost": 3.54, + "product_key": "distinctio", + "notes": "Sapiente aliquid fugit fuga consequatur reiciendis est in.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10426, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0069", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-22", + "last_sent_date": null, + "due_date": "2020-06-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.42", + "balance": "9.42", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10426, + "quantity": 3, + "cost": 3.14, + "product_key": "vitae", + "notes": "Vitae dolore dolorum esse enim dolor. Aut rem ea voluptas velit porro. Repellat sapiente magni illo inventore accusantium. Ab est et rerum perspiciatis quae earum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10427, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0070", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-24", + "last_sent_date": null, + "due_date": "2020-06-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.45", + "balance": "7.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10427, + "quantity": 5, + "cost": 1.49, + "product_key": "deleniti", + "notes": "Accusamus maiores expedita sed magni a. Velit corporis tempora et. Ipsum sapiente quae voluptatem. Enim sit rem in aliquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10428, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0071", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-05", + "last_sent_date": null, + "due_date": "2020-08-08", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.12", + "balance": "3.12", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10428, + "quantity": 2, + "cost": 1.56, + "product_key": "non", + "notes": "Delectus vel alias quae quia sint ut aliquam. Pariatur corporis quos fugiat velit nostrum voluptatibus autem. Sint explicabo voluptatem tenetur assumenda.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10429, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0072", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-19", + "last_sent_date": null, + "due_date": "2020-09-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.25", + "balance": "42.25", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10429, + "quantity": 5, + "cost": 8.45, + "product_key": "et", + "notes": "Magnam ab consectetur aut voluptates qui. Et temporibus ipsa dolor cupiditate consequatur voluptate.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10430, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0073", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-05", + "last_sent_date": null, + "due_date": "2020-04-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "51.92", + "balance": "51.92", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10430, + "quantity": 8, + "cost": 6.49, + "product_key": "est", + "notes": "Velit voluptate cum beatae id et doloribus iure dolore. Voluptas quo culpa nam et maiores incidunt in.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10431, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0074", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-08", + "last_sent_date": null, + "due_date": "2020-08-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.06", + "balance": "24.06", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10431, + "quantity": 3, + "cost": 8.02, + "product_key": "qui", + "notes": "Eos sequi quibusdam alias voluptatibus ratione.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10432, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0075", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-20", + "last_sent_date": null, + "due_date": "2020-04-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.44", + "balance": "4.44", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10432, + "quantity": 4, + "cost": 1.11, + "product_key": "fugit", + "notes": "Aut corporis eligendi in non. Earum ducimus dignissimos hic omnis nisi architecto facilis. Distinctio recusandae dicta dignissimos voluptatibus error necessitatibus id.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10433, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0076", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-31", + "last_sent_date": null, + "due_date": "2020-08-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.32", + "balance": "7.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10433, + "quantity": 3, + "cost": 2.44, + "product_key": "aspernatur", + "notes": "Animi et enim explicabo nesciunt. Similique voluptas doloribus et recusandae possimus iste. Exercitationem in sit illum ullam aperiam. Quos fugit magni ut aut aut officia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10434, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0077", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-23", + "last_sent_date": null, + "due_date": "2020-08-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.32", + "balance": "12.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10434, + "quantity": 7, + "cost": 1.76, + "product_key": "atque", + "notes": "Qui enim quaerat quasi ullam. Laborum et voluptatem perspiciatis vitae nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10435, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0078", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-05", + "last_sent_date": null, + "due_date": "2020-06-03", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "27.60", + "balance": "27.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10435, + "quantity": 3, + "cost": 9.2, + "product_key": "quod", + "notes": "Sint adipisci consequatur ut non. Sed ut molestiae quod a ut. Totam voluptates ut consequatur pariatur. Deleniti esse iusto officia fuga. Beatae dolorum dolor tempore. Distinctio est repellat corporis modi aspernatur. Debitis consequatur architecto quas dignissimos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10436, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0079", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-02", + "last_sent_date": null, + "due_date": "2020-07-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "29.07", + "balance": "29.07", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10436, + "quantity": 9, + "cost": 3.23, + "product_key": "neque", + "notes": "Ipsam atque voluptas possimus velit ratione ea.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10437, + "client_id": 54, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0080", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-13", + "last_sent_date": null, + "due_date": "2020-06-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.37", + "balance": "11.37", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10437, + "quantity": 3, + "cost": 3.79, + "product_key": "nulla", + "notes": "Rem vel voluptatem culpa ut sit eveniet voluptatem. Aut ad hic sequi et quisquam ut. Amet id quasi enim ratione facere et. Et unde doloribus temporibus et ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:19.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10458, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0101", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-18", + "last_sent_date": null, + "due_date": "2020-05-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.80", + "balance": "23.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10458, + "quantity": 4, + "cost": 5.95, + "product_key": "eaque", + "notes": "Aut tenetur quisquam explicabo. Id hic vero numquam et eligendi est. Deserunt odio doloribus laboriosam voluptatem enim.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10459, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0102", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-15", "last_sent_date": null, "due_date": "2020-03-24", "uses_inclusive_taxes": 0, - "is_deleted": 0, + "is_deleted": false, "footer": "", "public_notes": "", - "private_notes": null, + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "50.60", + "balance": "50.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10459, + "quantity": 10, + "cost": 5.06, + "product_key": "temporibus", + "notes": "Fugit earum qui quia et impedit. Velit dolorem aut eaque. Aperiam aperiam ullam doloribus aut voluptas at.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10460, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0103", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-08", + "last_sent_date": null, + "due_date": "2020-05-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.38", + "balance": "28.38", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10460, + "quantity": 6, + "cost": 4.73, + "product_key": "dicta", + "notes": "Veniam commodi voluptatem ipsum omnis. Molestiae quo numquam dolore ipsum voluptas. Voluptates sed nesciunt molestias. Deleniti ducimus aperiam id.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10461, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0104", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-27", + "last_sent_date": null, + "due_date": "2020-07-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.52", + "balance": "19.52", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10461, + "quantity": 4, + "cost": 4.88, + "product_key": "ea", + "notes": "Et quis non et repellat. Aut earum consequuntur qui porro architecto ut voluptas nisi. Consequuntur sint cupiditate sit rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10462, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0105", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-23", + "last_sent_date": null, + "due_date": "2020-08-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.88", + "balance": "4.88", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10462, + "quantity": 1, + "cost": 4.88, + "product_key": "nihil", + "notes": "Dolores aut voluptate ex et et asperiores. Blanditiis quae hic et quia vitae. Et explicabo numquam modi culpa tempora. A voluptas reiciendis cupiditate.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10463, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0106", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-25", + "last_sent_date": null, + "due_date": "2020-05-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.44", + "balance": "18.44", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10463, + "quantity": 2, + "cost": 9.22, + "product_key": "quasi", + "notes": "Voluptatem non nostrum rem ea minus itaque omnis. Perferendis delectus iure odit voluptatem unde voluptas soluta. Deserunt est veniam quisquam esse.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10464, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0107", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-15", + "last_sent_date": null, + "due_date": "2020-05-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.30", + "balance": "42.30", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10464, + "quantity": 10, + "cost": 4.23, + "product_key": "officiis", + "notes": "Amet voluptatum suscipit est magnam voluptatem quod. Neque nulla quia commodi voluptatem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10465, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0108", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-01", + "last_sent_date": null, + "due_date": "2020-09-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.68", + "balance": "9.68", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10465, + "quantity": 8, + "cost": 1.21, + "product_key": "laborum", + "notes": "Sed autem nihil ipsam fugiat nihil. Autem consectetur dolore non vel est ut sint. Illum totam dignissimos laborum aut voluptatem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10466, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0109", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-30", + "last_sent_date": null, + "due_date": "2020-05-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.10", + "balance": "9.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10466, + "quantity": 7, + "cost": 1.3, + "product_key": "dolores", + "notes": "Repellendus assumenda qui et eligendi. Aut quisquam voluptatem et. Vero ratione illum quos iusto aut. Occaecati voluptatem architecto quis iste repudiandae. Pariatur hic recusandae quas sed. Ipsum ipsa hic et laudantium quia soluta.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10467, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0110", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-25", + "last_sent_date": null, + "due_date": "2020-07-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "30.60", + "balance": "30.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10467, + "quantity": 5, + "cost": 6.12, + "product_key": "impedit", + "notes": "Ut voluptate sunt voluptatem recusandae rerum. Qui beatae assumenda eaque dolorem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10468, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0111", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-25", + "last_sent_date": null, + "due_date": "2020-10-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.84", + "balance": "5.84", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10468, + "quantity": 1, + "cost": 5.84, + "product_key": "qui", + "notes": "Ut in veritatis odit reprehenderit aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10469, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0112", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-01", + "last_sent_date": null, + "due_date": "2020-08-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.14", + "balance": "22.14", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10469, + "quantity": 3, + "cost": 7.38, + "product_key": "est", + "notes": "Consequuntur architecto ducimus facere pariatur et quibusdam asperiores. Et quibusdam et qui veniam sit accusantium. Magni pariatur qui aspernatur maiores quisquam praesentium corporis. Sint quis porro et omnis corrupti nam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10470, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0113", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-28", + "last_sent_date": null, + "due_date": "2020-07-06", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "27.58", + "balance": "27.58", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10470, + "quantity": 7, + "cost": 3.94, + "product_key": "sunt", + "notes": "Iste eaque exercitationem maiores vel non. Sed repellat quia nesciunt aut ab. Est adipisci pariatur voluptatibus porro alias qui nam. Ut odit reiciendis eos provident. Autem ea similique ea. Facilis ducimus voluptatem et incidunt explicabo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10471, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0114", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-28", + "last_sent_date": null, + "due_date": "2020-08-17", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.64", + "balance": "17.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10471, + "quantity": 4, + "cost": 4.41, + "product_key": "molestias", + "notes": "In accusantium quaerat dolores culpa. Nihil asperiores iste quia et nulla magni et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10472, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0115", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-31", + "last_sent_date": null, + "due_date": "2020-07-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "2.06", + "balance": "2.06", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10472, + "quantity": 1, + "cost": 2.06, + "product_key": "tenetur", + "notes": "Aliquam in eos cumque qui. Magnam facilis quia reprehenderit nihil ut. Saepe natus adipisci architecto a. Ea rerum et alias autem autem. Et quae sed maiores non. Illo ducimus non nemo velit ea.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10473, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0116", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-29", + "last_sent_date": null, + "due_date": "2020-09-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.24", + "balance": "42.24", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10473, + "quantity": 6, + "cost": 7.04, + "product_key": "quia", + "notes": "Voluptatem labore error nostrum nam rem dolorum autem. Necessitatibus debitis enim perspiciatis sit eum minima voluptates. Vero ut ducimus repellendus qui deserunt commodi numquam dolores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10474, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0117", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-19", + "last_sent_date": null, + "due_date": "2020-06-13", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.30", + "balance": "38.30", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10474, + "quantity": 5, + "cost": 7.66, + "product_key": "ut", + "notes": "Dolor ut ducimus rem et fugiat. Veritatis itaque vero reiciendis. Labore nisi aliquid quas soluta ad.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10475, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0118", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-16", + "last_sent_date": null, + "due_date": "2020-04-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.57", + "balance": "9.57", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10475, + "quantity": 1, + "cost": 9.57, + "product_key": "accusantium", + "notes": "Nam aliquam aliquid dignissimos accusamus aut consequatur ex.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10476, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0119", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-11", + "last_sent_date": null, + "due_date": "2020-08-03", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.74", + "balance": "25.74", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10476, + "quantity": 9, + "cost": 2.86, + "product_key": "consectetur", + "notes": "Qui vitae excepturi asperiores nemo sint.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10477, + "client_id": 55, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0120", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-09", + "last_sent_date": null, + "due_date": "2020-05-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.64", + "balance": "14.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10477, + "quantity": 8, + "cost": 1.83, + "product_key": "temporibus", + "notes": "Nostrum voluptatum magni sit sunt eos corporis. Officia et omnis aperiam nulla ipsam fugit suscipit voluptatem. Asperiores et tenetur ut eligendi. Blanditiis dolor vel quod ipsam fugiat molestiae aliquam. Ipsam eum occaecati impedit voluptas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:20.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10498, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0141", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-13", + "last_sent_date": null, + "due_date": "2020-08-05", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.66", + "balance": "9.66", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10498, + "quantity": 1, + "cost": 9.66, + "product_key": "ipsa", + "notes": "Minus sint cumque perferendis aut molestiae fuga aspernatur iusto.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10499, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0142", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-28", + "last_sent_date": null, + "due_date": "2020-07-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.46", + "balance": "9.46", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10499, + "quantity": 2, + "cost": 4.73, + "product_key": "amet", + "notes": "Tempora est delectus sed ipsum impedit inventore. Incidunt amet illum aut quod aut sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10500, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0143", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-14", + "last_sent_date": null, + "due_date": "2020-08-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "1.42", + "balance": "1.42", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10500, + "quantity": 1, + "cost": 1.42, + "product_key": "qui", + "notes": "Aut nulla et quisquam voluptatem et. Aspernatur dolor nihil eius rerum voluptatem dolor. Voluptatem recusandae enim impedit in officia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10501, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0144", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-04", + "last_sent_date": null, + "due_date": "2020-09-09", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", "terms": "", "tax_name1": "", "tax_name2": null, @@ -199230,42059 +32984,19874 @@ "next_send_date": null, "amount": "34.40", "balance": "34.40", - "partial": null, + "partial": 0, "partial_due_date": null, - "line_items": [], - "created_at": "2020-03-12", - "updated_at": "2020-03-12", - "deleted_at": null, - "invitations": [] - } - ], - "payments": [ - { - "id": 1, - "invoices": [ - { - "invoice_id": 2, - "amount": "155.00", - "refunded": "0.00" - } - ], - "invoice_id": 2, - "company_id": 1, - "client_id": 1, - "user_id": 1, - "client_contact_id": 1, - "invitation_id": 2, - "company_gateway_id": 1, - "type_id": null, - "status_id": 4, - "amount": "155.00", - "applied": "155.00", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": "charge_test_081E2AED143H5FC8BA19", - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 2, - "updated_at": "2020-02-11", - "created_at": "2020-02-11", - "deleted_at": null - }, - { - "id": 2, - "invoices": [ - { - "invoice_id": 3, - "amount": "155.00", - "refunded": "0.00" - } - ], - "invoice_id": 3, - "company_id": 1, - "client_id": 1, - "user_id": 1, - "client_contact_id": 1, - "invitation_id": 3, - "company_gateway_id": 2, - "type_id": null, - "status_id": 4, - "amount": "155.00", - "applied": "155.00", - "refunded": "0.00", - "date": "2020-02-16", - "transaction_reference": "charge_test_8E2B188D643R5EB8A6B3", - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 2, - "updated_at": "2020-02-16", - "created_at": "2020-02-16", - "deleted_at": null - }, - { - "id": 3, - "invoices": [ - { - "invoice_id": 5, - "amount": "1.14", - "refunded": "0.00" - } - ], - "invoice_id": 5, - "company_id": 1, - "client_id": 2, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.14", - "applied": "1.14", - "refunded": "0.00", - "date": "2020-04-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 4, - "invoices": [ - { - "invoice_id": 6, - "amount": "52.06", - "refunded": "0.00" - } - ], - "invoice_id": 6, - "company_id": 1, - "client_id": 2, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "52.06", - "applied": "52.06", - "refunded": "0.00", - "date": "2020-04-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 5, - "invoices": [ - { - "invoice_id": 7, - "amount": "1.22", - "refunded": "0.00" - } - ], - "invoice_id": 7, - "company_id": 1, - "client_id": 2, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.22", - "applied": "1.22", - "refunded": "0.00", - "date": "2019-12-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 6, - "invoices": [ - { - "invoice_id": 8, - "amount": "0.96", - "refunded": "0.00" - } - ], - "invoice_id": 8, - "company_id": 1, - "client_id": 2, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.96", - "applied": "0.96", - "refunded": "0.00", - "date": "2020-01-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 7, - "invoices": [ - { - "invoice_id": 9, - "amount": "11.01", - "refunded": "0.00" - } - ], - "invoice_id": 9, - "company_id": 1, - "client_id": 2, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.01", - "applied": "11.01", - "refunded": "0.00", - "date": "2020-01-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 8, - "invoices": [ - { - "invoice_id": 10, - "amount": "44.86", - "refunded": "0.00" - } - ], - "invoice_id": 10, - "company_id": 1, - "client_id": 2, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "44.86", - "applied": "44.86", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 9, - "invoices": [ - { - "invoice_id": 11, - "amount": "4.56", - "refunded": "0.00" - } - ], - "invoice_id": 11, - "company_id": 1, - "client_id": 2, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.56", - "applied": "4.56", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 10, - "invoices": [ - { - "invoice_id": 12, - "amount": "9.51", - "refunded": "0.00" - } - ], - "invoice_id": 12, - "company_id": 1, - "client_id": 2, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.51", - "applied": "9.51", - "refunded": "0.00", - "date": "2020-02-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 11, - "invoices": [ - { - "invoice_id": 13, - "amount": "18.83", - "refunded": "0.00" - } - ], - "invoice_id": 13, - "company_id": 1, - "client_id": 2, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.83", - "applied": "18.83", - "refunded": "0.00", - "date": "2020-05-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 12, - "invoices": [ - { - "invoice_id": 14, - "amount": "31.91", - "refunded": "0.00" - } - ], - "invoice_id": 14, - "company_id": 1, - "client_id": 2, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.91", - "applied": "31.91", - "refunded": "0.00", - "date": "2019-11-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 13, - "invoices": [ - { - "invoice_id": 25, - "amount": "16.69", - "refunded": "0.00" - } - ], - "invoice_id": 25, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.69", - "applied": "16.69", - "refunded": "0.00", - "date": "2020-03-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 14, - "invoices": [ - { - "invoice_id": 26, - "amount": "24.14", - "refunded": "0.00" - } - ], - "invoice_id": 26, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.14", - "applied": "24.14", - "refunded": "0.00", - "date": "2020-01-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 15, - "invoices": [ - { - "invoice_id": 27, - "amount": "17.95", - "refunded": "0.00" - } - ], - "invoice_id": 27, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.95", - "applied": "17.95", - "refunded": "0.00", - "date": "2020-05-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 16, - "invoices": [ - { - "invoice_id": 28, - "amount": "34.47", - "refunded": "0.00" - } - ], - "invoice_id": 28, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.47", - "applied": "34.47", - "refunded": "0.00", - "date": "2020-03-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 17, - "invoices": [ - { - "invoice_id": 29, - "amount": "23.97", - "refunded": "0.00" - } - ], - "invoice_id": 29, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.97", - "applied": "23.97", - "refunded": "0.00", - "date": "2020-04-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 18, - "invoices": [ - { - "invoice_id": 30, - "amount": "47.39", - "refunded": "0.00" - } - ], - "invoice_id": 30, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "47.39", - "applied": "47.39", - "refunded": "0.00", - "date": "2020-02-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 19, - "invoices": [ - { - "invoice_id": 31, - "amount": "21.02", - "refunded": "0.00" - } - ], - "invoice_id": 31, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.02", - "applied": "21.02", - "refunded": "0.00", - "date": "2019-11-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 20, - "invoices": [ - { - "invoice_id": 32, - "amount": "4.87", - "refunded": "0.00" - } - ], - "invoice_id": 32, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.87", - "applied": "4.87", - "refunded": "0.00", - "date": "2020-03-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 21, - "invoices": [ - { - "invoice_id": 33, - "amount": "2.16", - "refunded": "0.00" - } - ], - "invoice_id": 33, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.16", - "applied": "2.16", - "refunded": "0.00", - "date": "2020-03-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 22, - "invoices": [ - { - "invoice_id": 34, - "amount": "10.95", - "refunded": "0.00" - } - ], - "invoice_id": 34, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.95", - "applied": "10.95", - "refunded": "0.00", - "date": "2019-11-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 23, - "invoices": [ - { - "invoice_id": 45, - "amount": "3.12", - "refunded": "0.00" - } - ], - "invoice_id": 45, - "company_id": 1, - "client_id": 4, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.12", - "applied": "3.12", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 24, - "invoices": [ - { - "invoice_id": 46, - "amount": "6.71", - "refunded": "0.00" - } - ], - "invoice_id": 46, - "company_id": 1, - "client_id": 4, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.71", - "applied": "6.71", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 25, - "invoices": [ - { - "invoice_id": 47, - "amount": "10.42", - "refunded": "0.00" - } - ], - "invoice_id": 47, - "company_id": 1, - "client_id": 4, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.42", - "applied": "10.42", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 26, - "invoices": [ - { - "invoice_id": 48, - "amount": "69.49", - "refunded": "0.00" - } - ], - "invoice_id": 48, - "company_id": 1, - "client_id": 4, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "69.49", - "applied": "69.49", - "refunded": "0.00", - "date": "2019-12-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 27, - "invoices": [ - { - "invoice_id": 49, - "amount": "15.50", - "refunded": "0.00" - } - ], - "invoice_id": 49, - "company_id": 1, - "client_id": 4, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.50", - "applied": "15.50", - "refunded": "0.00", - "date": "2020-03-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 28, - "invoices": [ - { - "invoice_id": 50, - "amount": "5.62", - "refunded": "0.00" - } - ], - "invoice_id": 50, - "company_id": 1, - "client_id": 4, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.62", - "applied": "5.62", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 29, - "invoices": [ - { - "invoice_id": 51, - "amount": "0.43", - "refunded": "0.00" - } - ], - "invoice_id": 51, - "company_id": 1, - "client_id": 4, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.43", - "applied": "0.43", - "refunded": "0.00", - "date": "2020-04-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 30, - "invoices": [ - { - "invoice_id": 52, - "amount": "13.67", - "refunded": "0.00" - } - ], - "invoice_id": 52, - "company_id": 1, - "client_id": 4, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.67", - "applied": "13.67", - "refunded": "0.00", - "date": "2020-01-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 31, - "invoices": [ - { - "invoice_id": 53, - "amount": "24.15", - "refunded": "0.00" - } - ], - "invoice_id": 53, - "company_id": 1, - "client_id": 4, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.15", - "applied": "24.15", - "refunded": "0.00", - "date": "2020-01-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 32, - "invoices": [ - { - "invoice_id": 54, - "amount": "5.33", - "refunded": "0.00" - } - ], - "invoice_id": 54, - "company_id": 1, - "client_id": 4, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.33", - "applied": "5.33", - "refunded": "0.00", - "date": "2020-05-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 33, - "invoices": [ - { - "invoice_id": 65, - "amount": "12.44", - "refunded": "0.00" - } - ], - "invoice_id": 65, - "company_id": 1, - "client_id": 5, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.44", - "applied": "12.44", - "refunded": "0.00", - "date": "2019-12-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 34, - "invoices": [ - { - "invoice_id": 66, - "amount": "2.57", - "refunded": "0.00" - } - ], - "invoice_id": 66, - "company_id": 1, - "client_id": 5, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.57", - "applied": "2.57", - "refunded": "0.00", - "date": "2019-12-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 35, - "invoices": [ - { - "invoice_id": 67, - "amount": "9.19", - "refunded": "0.00" - } - ], - "invoice_id": 67, - "company_id": 1, - "client_id": 5, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.19", - "applied": "9.19", - "refunded": "0.00", - "date": "2020-03-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 36, - "invoices": [ - { - "invoice_id": 68, - "amount": "9.32", - "refunded": "0.00" - } - ], - "invoice_id": 68, - "company_id": 1, - "client_id": 5, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.32", - "applied": "9.32", - "refunded": "0.00", - "date": "2020-02-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 37, - "invoices": [ - { - "invoice_id": 69, - "amount": "3.37", - "refunded": "0.00" - } - ], - "invoice_id": 69, - "company_id": 1, - "client_id": 5, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.37", - "applied": "3.37", - "refunded": "0.00", - "date": "2019-11-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 38, - "invoices": [ - { - "invoice_id": 70, - "amount": "3.28", - "refunded": "0.00" - } - ], - "invoice_id": 70, - "company_id": 1, - "client_id": 5, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.28", - "applied": "3.28", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 39, - "invoices": [ - { - "invoice_id": 71, - "amount": "31.67", - "refunded": "0.00" - } - ], - "invoice_id": 71, - "company_id": 1, - "client_id": 5, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.67", - "applied": "31.67", - "refunded": "0.00", - "date": "2020-03-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 40, - "invoices": [ - { - "invoice_id": 72, - "amount": "16.90", - "refunded": "0.00" - } - ], - "invoice_id": 72, - "company_id": 1, - "client_id": 5, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.90", - "applied": "16.90", - "refunded": "0.00", - "date": "2020-01-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 41, - "invoices": [ - { - "invoice_id": 73, - "amount": "0.52", - "refunded": "0.00" - } - ], - "invoice_id": 73, - "company_id": 1, - "client_id": 5, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.52", - "applied": "0.52", - "refunded": "0.00", - "date": "2020-03-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 42, - "invoices": [ - { - "invoice_id": 74, - "amount": "3.46", - "refunded": "0.00" - } - ], - "invoice_id": 74, - "company_id": 1, - "client_id": 5, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.46", - "applied": "3.46", - "refunded": "0.00", - "date": "2020-03-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 43, - "invoices": [ - { - "invoice_id": 85, - "amount": "12.55", - "refunded": "0.00" - } - ], - "invoice_id": 85, - "company_id": 1, - "client_id": 6, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.55", - "applied": "12.55", - "refunded": "0.00", - "date": "2020-04-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 44, - "invoices": [ - { - "invoice_id": 86, - "amount": "15.13", - "refunded": "0.00" - } - ], - "invoice_id": 86, - "company_id": 1, - "client_id": 6, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.13", - "applied": "15.13", - "refunded": "0.00", - "date": "2020-05-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 45, - "invoices": [ - { - "invoice_id": 87, - "amount": "46.98", - "refunded": "0.00" - } - ], - "invoice_id": 87, - "company_id": 1, - "client_id": 6, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "46.98", - "applied": "46.98", - "refunded": "0.00", - "date": "2020-02-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 46, - "invoices": [ - { - "invoice_id": 88, - "amount": "5.30", - "refunded": "0.00" - } - ], - "invoice_id": 88, - "company_id": 1, - "client_id": 6, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.30", - "applied": "5.30", - "refunded": "0.00", - "date": "2020-02-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 47, - "invoices": [ - { - "invoice_id": 89, - "amount": "50.95", - "refunded": "0.00" - } - ], - "invoice_id": 89, - "company_id": 1, - "client_id": 6, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "50.95", - "applied": "50.95", - "refunded": "0.00", - "date": "2019-12-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 48, - "invoices": [ - { - "invoice_id": 90, - "amount": "24.84", - "refunded": "0.00" - } - ], - "invoice_id": 90, - "company_id": 1, - "client_id": 6, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.84", - "applied": "24.84", - "refunded": "0.00", - "date": "2020-01-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 49, - "invoices": [ - { - "invoice_id": 91, - "amount": "1.47", - "refunded": "0.00" - } - ], - "invoice_id": 91, - "company_id": 1, - "client_id": 6, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.47", - "applied": "1.47", - "refunded": "0.00", - "date": "2019-11-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 50, - "invoices": [ - { - "invoice_id": 92, - "amount": "36.93", - "refunded": "0.00" - } - ], - "invoice_id": 92, - "company_id": 1, - "client_id": 6, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "36.93", - "applied": "36.93", - "refunded": "0.00", - "date": "2020-05-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 51, - "invoices": [ - { - "invoice_id": 93, - "amount": "0.48", - "refunded": "0.00" - } - ], - "invoice_id": 93, - "company_id": 1, - "client_id": 6, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.48", - "applied": "0.48", - "refunded": "0.00", - "date": "2020-04-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 52, - "invoices": [ - { - "invoice_id": 94, - "amount": "9.19", - "refunded": "0.00" - } - ], - "invoice_id": 94, - "company_id": 1, - "client_id": 6, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.19", - "applied": "9.19", - "refunded": "0.00", - "date": "2019-11-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 53, - "invoices": [ - { - "invoice_id": 105, - "amount": "43.60", - "refunded": "0.00" - } - ], - "invoice_id": 105, - "company_id": 1, - "client_id": 7, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "43.60", - "applied": "43.60", - "refunded": "0.00", - "date": "2020-01-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 54, - "invoices": [ - { - "invoice_id": 106, - "amount": "16.24", - "refunded": "0.00" - } - ], - "invoice_id": 106, - "company_id": 1, - "client_id": 7, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.24", - "applied": "16.24", - "refunded": "0.00", - "date": "2019-12-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 55, - "invoices": [ - { - "invoice_id": 107, - "amount": "21.70", - "refunded": "0.00" - } - ], - "invoice_id": 107, - "company_id": 1, - "client_id": 7, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.70", - "applied": "21.70", - "refunded": "0.00", - "date": "2019-12-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 56, - "invoices": [ - { - "invoice_id": 108, - "amount": "31.70", - "refunded": "0.00" - } - ], - "invoice_id": 108, - "company_id": 1, - "client_id": 7, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.70", - "applied": "31.70", - "refunded": "0.00", - "date": "2020-01-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 57, - "invoices": [ - { - "invoice_id": 109, - "amount": "8.26", - "refunded": "0.00" - } - ], - "invoice_id": 109, - "company_id": 1, - "client_id": 7, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.26", - "applied": "8.26", - "refunded": "0.00", - "date": "2020-04-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 58, - "invoices": [ - { - "invoice_id": 110, - "amount": "14.13", - "refunded": "0.00" - } - ], - "invoice_id": 110, - "company_id": 1, - "client_id": 7, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.13", - "applied": "14.13", - "refunded": "0.00", - "date": "2020-04-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 59, - "invoices": [ - { - "invoice_id": 111, - "amount": "1.57", - "refunded": "0.00" - } - ], - "invoice_id": 111, - "company_id": 1, - "client_id": 7, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.57", - "applied": "1.57", - "refunded": "0.00", - "date": "2019-11-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 60, - "invoices": [ - { - "invoice_id": 112, - "amount": "19.64", - "refunded": "0.00" - } - ], - "invoice_id": 112, - "company_id": 1, - "client_id": 7, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.64", - "applied": "19.64", - "refunded": "0.00", - "date": "2019-11-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 61, - "invoices": [ - { - "invoice_id": 113, - "amount": "1.50", - "refunded": "0.00" - } - ], - "invoice_id": 113, - "company_id": 1, - "client_id": 7, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.50", - "applied": "1.50", - "refunded": "0.00", - "date": "2020-01-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 62, - "invoices": [ - { - "invoice_id": 114, - "amount": "30.56", - "refunded": "0.00" - } - ], - "invoice_id": 114, - "company_id": 1, - "client_id": 7, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "30.56", - "applied": "30.56", - "refunded": "0.00", - "date": "2019-12-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 63, - "invoices": [ - { - "invoice_id": 125, - "amount": "25.16", - "refunded": "0.00" - } - ], - "invoice_id": 125, - "company_id": 1, - "client_id": 8, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "25.16", - "applied": "25.16", - "refunded": "0.00", - "date": "2019-11-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 64, - "invoices": [ - { - "invoice_id": 126, - "amount": "21.92", - "refunded": "0.00" - } - ], - "invoice_id": 126, - "company_id": 1, - "client_id": 8, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.92", - "applied": "21.92", - "refunded": "0.00", - "date": "2019-12-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 65, - "invoices": [ - { - "invoice_id": 127, - "amount": "9.64", - "refunded": "0.00" - } - ], - "invoice_id": 127, - "company_id": 1, - "client_id": 8, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.64", - "applied": "9.64", - "refunded": "0.00", - "date": "2020-03-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 66, - "invoices": [ - { - "invoice_id": 128, - "amount": "1.84", - "refunded": "0.00" - } - ], - "invoice_id": 128, - "company_id": 1, - "client_id": 8, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.84", - "applied": "1.84", - "refunded": "0.00", - "date": "2020-04-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 67, - "invoices": [ - { - "invoice_id": 129, - "amount": "18.95", - "refunded": "0.00" - } - ], - "invoice_id": 129, - "company_id": 1, - "client_id": 8, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.95", - "applied": "18.95", - "refunded": "0.00", - "date": "2020-01-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 68, - "invoices": [ - { - "invoice_id": 130, - "amount": "6.50", - "refunded": "0.00" - } - ], - "invoice_id": 130, - "company_id": 1, - "client_id": 8, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.50", - "applied": "6.50", - "refunded": "0.00", - "date": "2020-04-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 69, - "invoices": [ - { - "invoice_id": 131, - "amount": "57.14", - "refunded": "0.00" - } - ], - "invoice_id": 131, - "company_id": 1, - "client_id": 8, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "57.14", - "applied": "57.14", - "refunded": "0.00", - "date": "2020-02-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 70, - "invoices": [ - { - "invoice_id": 132, - "amount": "3.38", - "refunded": "0.00" - } - ], - "invoice_id": 132, - "company_id": 1, - "client_id": 8, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.38", - "applied": "3.38", - "refunded": "0.00", - "date": "2019-12-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 71, - "invoices": [ - { - "invoice_id": 133, - "amount": "10.41", - "refunded": "0.00" - } - ], - "invoice_id": 133, - "company_id": 1, - "client_id": 8, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.41", - "applied": "10.41", - "refunded": "0.00", - "date": "2020-02-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 72, - "invoices": [ - { - "invoice_id": 134, - "amount": "3.17", - "refunded": "0.00" - } - ], - "invoice_id": 134, - "company_id": 1, - "client_id": 8, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.17", - "applied": "3.17", - "refunded": "0.00", - "date": "2020-04-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 73, - "invoices": [ - { - "invoice_id": 145, - "amount": "64.40", - "refunded": "0.00" - } - ], - "invoice_id": 145, - "company_id": 1, - "client_id": 9, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "64.40", - "applied": "64.40", - "refunded": "0.00", - "date": "2020-02-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 74, - "invoices": [ - { - "invoice_id": 146, - "amount": "1.32", - "refunded": "0.00" - } - ], - "invoice_id": 146, - "company_id": 1, - "client_id": 9, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.32", - "applied": "1.32", - "refunded": "0.00", - "date": "2020-02-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 75, - "invoices": [ - { - "invoice_id": 147, - "amount": "27.36", - "refunded": "0.00" - } - ], - "invoice_id": 147, - "company_id": 1, - "client_id": 9, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.36", - "applied": "27.36", - "refunded": "0.00", - "date": "2020-01-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 76, - "invoices": [ - { - "invoice_id": 148, - "amount": "3.40", - "refunded": "0.00" - } - ], - "invoice_id": 148, - "company_id": 1, - "client_id": 9, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.40", - "applied": "3.40", - "refunded": "0.00", - "date": "2020-02-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 77, - "invoices": [ - { - "invoice_id": 149, - "amount": "4.71", - "refunded": "0.00" - } - ], - "invoice_id": 149, - "company_id": 1, - "client_id": 9, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.71", - "applied": "4.71", - "refunded": "0.00", - "date": "2020-02-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 78, - "invoices": [ - { - "invoice_id": 150, - "amount": "21.35", - "refunded": "0.00" - } - ], - "invoice_id": 150, - "company_id": 1, - "client_id": 9, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.35", - "applied": "21.35", - "refunded": "0.00", - "date": "2020-02-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 79, - "invoices": [ - { - "invoice_id": 151, - "amount": "22.08", - "refunded": "0.00" - } - ], - "invoice_id": 151, - "company_id": 1, - "client_id": 9, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.08", - "applied": "22.08", - "refunded": "0.00", - "date": "2020-04-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 80, - "invoices": [ - { - "invoice_id": 152, - "amount": "4.26", - "refunded": "0.00" - } - ], - "invoice_id": 152, - "company_id": 1, - "client_id": 9, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.26", - "applied": "4.26", - "refunded": "0.00", - "date": "2020-03-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 81, - "invoices": [ - { - "invoice_id": 153, - "amount": "13.89", - "refunded": "0.00" - } - ], - "invoice_id": 153, - "company_id": 1, - "client_id": 9, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.89", - "applied": "13.89", - "refunded": "0.00", - "date": "2020-01-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 82, - "invoices": [ - { - "invoice_id": 154, - "amount": "2.01", - "refunded": "0.00" - } - ], - "invoice_id": 154, - "company_id": 1, - "client_id": 9, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.01", - "applied": "2.01", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 83, - "invoices": [ - { - "invoice_id": 165, - "amount": "16.26", - "refunded": "0.00" - } - ], - "invoice_id": 165, - "company_id": 1, - "client_id": 10, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.26", - "applied": "16.26", - "refunded": "0.00", - "date": "2019-12-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 84, - "invoices": [ - { - "invoice_id": 166, - "amount": "17.72", - "refunded": "0.00" - } - ], - "invoice_id": 166, - "company_id": 1, - "client_id": 10, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.72", - "applied": "17.72", - "refunded": "0.00", - "date": "2019-11-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 85, - "invoices": [ - { - "invoice_id": 167, - "amount": "2.17", - "refunded": "0.00" - } - ], - "invoice_id": 167, - "company_id": 1, - "client_id": 10, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.17", - "applied": "2.17", - "refunded": "0.00", - "date": "2020-04-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 86, - "invoices": [ - { - "invoice_id": 168, - "amount": "20.97", - "refunded": "0.00" - } - ], - "invoice_id": 168, - "company_id": 1, - "client_id": 10, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.97", - "applied": "20.97", - "refunded": "0.00", - "date": "2020-01-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 87, - "invoices": [ - { - "invoice_id": 169, - "amount": "4.26", - "refunded": "0.00" - } - ], - "invoice_id": 169, - "company_id": 1, - "client_id": 10, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.26", - "applied": "4.26", - "refunded": "0.00", - "date": "2020-03-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 88, - "invoices": [ - { - "invoice_id": 170, - "amount": "19.11", - "refunded": "0.00" - } - ], - "invoice_id": 170, - "company_id": 1, - "client_id": 10, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.11", - "applied": "19.11", - "refunded": "0.00", - "date": "2019-12-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 89, - "invoices": [ - { - "invoice_id": 171, - "amount": "20.26", - "refunded": "0.00" - } - ], - "invoice_id": 171, - "company_id": 1, - "client_id": 10, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.26", - "applied": "20.26", - "refunded": "0.00", - "date": "2020-02-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 90, - "invoices": [ - { - "invoice_id": 172, - "amount": "12.55", - "refunded": "0.00" - } - ], - "invoice_id": 172, - "company_id": 1, - "client_id": 10, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.55", - "applied": "12.55", - "refunded": "0.00", - "date": "2020-04-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 91, - "invoices": [ - { - "invoice_id": 173, - "amount": "7.09", - "refunded": "0.00" - } - ], - "invoice_id": 173, - "company_id": 1, - "client_id": 10, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.09", - "applied": "7.09", - "refunded": "0.00", - "date": "2019-11-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 92, - "invoices": [ - { - "invoice_id": 174, - "amount": "7.55", - "refunded": "0.00" - } - ], - "invoice_id": 174, - "company_id": 1, - "client_id": 10, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.55", - "applied": "7.55", - "refunded": "0.00", - "date": "2020-04-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 93, - "invoices": [ - { - "invoice_id": 185, - "amount": "9.69", - "refunded": "0.00" - } - ], - "invoice_id": 185, - "company_id": 1, - "client_id": 11, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.69", - "applied": "9.69", - "refunded": "0.00", - "date": "2020-04-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 94, - "invoices": [ - { - "invoice_id": 186, - "amount": "23.92", - "refunded": "0.00" - } - ], - "invoice_id": 186, - "company_id": 1, - "client_id": 11, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.92", - "applied": "23.92", - "refunded": "0.00", - "date": "2019-12-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 95, - "invoices": [ - { - "invoice_id": 187, - "amount": "2.72", - "refunded": "0.00" - } - ], - "invoice_id": 187, - "company_id": 1, - "client_id": 11, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.72", - "applied": "2.72", - "refunded": "0.00", - "date": "2020-03-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 96, - "invoices": [ - { - "invoice_id": 188, - "amount": "17.92", - "refunded": "0.00" - } - ], - "invoice_id": 188, - "company_id": 1, - "client_id": 11, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.92", - "applied": "17.92", - "refunded": "0.00", - "date": "2020-01-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 97, - "invoices": [ - { - "invoice_id": 189, - "amount": "2.69", - "refunded": "0.00" - } - ], - "invoice_id": 189, - "company_id": 1, - "client_id": 11, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.69", - "applied": "2.69", - "refunded": "0.00", - "date": "2020-02-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 98, - "invoices": [ - { - "invoice_id": 190, - "amount": "1.19", - "refunded": "0.00" - } - ], - "invoice_id": 190, - "company_id": 1, - "client_id": 11, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.19", - "applied": "1.19", - "refunded": "0.00", - "date": "2020-01-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 99, - "invoices": [ - { - "invoice_id": 191, - "amount": "3.67", - "refunded": "0.00" - } - ], - "invoice_id": 191, - "company_id": 1, - "client_id": 11, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.67", - "applied": "3.67", - "refunded": "0.00", - "date": "2020-03-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 100, - "invoices": [ - { - "invoice_id": 192, - "amount": "1.48", - "refunded": "0.00" - } - ], - "invoice_id": 192, - "company_id": 1, - "client_id": 11, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.48", - "applied": "1.48", - "refunded": "0.00", - "date": "2020-04-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 101, - "invoices": [ - { - "invoice_id": 193, - "amount": "4.77", - "refunded": "0.00" - } - ], - "invoice_id": 193, - "company_id": 1, - "client_id": 11, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.77", - "applied": "4.77", - "refunded": "0.00", - "date": "2020-05-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 102, - "invoices": [ - { - "invoice_id": 194, - "amount": "1.74", - "refunded": "0.00" - } - ], - "invoice_id": 194, - "company_id": 1, - "client_id": 11, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.74", - "applied": "1.74", - "refunded": "0.00", - "date": "2020-03-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-18", - "created_at": "2020-02-18", - "deleted_at": null - }, - { - "id": 103, - "invoices": [ - { - "invoice_id": 28, - "amount": "18.75", - "refunded": "18.75" - } - ], - "invoice_id": 28, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": 3, - "invitation_id": 28, - "company_gateway_id": 3, - "type_id": null, - "status_id": 6, - "amount": "18.75", - "applied": "18.75", - "refunded": "18.75", - "date": "2020-02-18", - "transaction_reference": "ch_1GDkRRKmol8YQE9D5exMsnUR", - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-19", - "created_at": "2020-02-19", - "deleted_at": null - }, - { - "id": 104, - "invoices": [ - { - "invoice_id": 28, - "amount": "18.75", - "refunded": "18.75" - } - ], - "invoice_id": 28, - "company_id": 1, - "client_id": 3, - "user_id": 1, - "client_contact_id": 3, - "invitation_id": 28, - "company_gateway_id": 3, - "type_id": null, - "status_id": 6, - "amount": "18.75", - "applied": "18.75", - "refunded": "18.75", - "date": "2020-02-18", - "transaction_reference": "ch_1GDkSzKmol8YQE9Dbk8ULyWf", - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-19", - "created_at": "2020-02-19", - "deleted_at": null - }, - { - "id": 105, - "invoices": [ - { - "invoice_id": 125, - "amount": "18.59", - "refunded": "0.00" - } - ], - "invoice_id": 125, - "company_id": 1, - "client_id": 8, - "user_id": 1, - "client_contact_id": 8, - "invitation_id": 125, - "company_gateway_id": 3, - "type_id": null, - "status_id": 4, - "amount": "18.59", - "applied": "18.59", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": "ch_1GDkcOKmol8YQE9Dbd3VLgyK", - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-02-19", - "created_at": "2020-02-19", - "deleted_at": null - }, - { - "id": 106, - "invoices": [ - { - "invoice_id": 208, - "amount": "7.36", - "refunded": "0.00" - } - ], - "invoice_id": 208, - "company_id": 1, - "client_id": 12, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.36", - "applied": "7.36", - "refunded": "0.00", - "date": "2020-03-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 107, - "invoices": [ - { - "invoice_id": 210, - "amount": "6.09", - "refunded": "0.00" - } - ], - "invoice_id": 210, - "company_id": 1, - "client_id": 13, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.09", - "applied": "6.09", - "refunded": "0.00", - "date": "2020-05-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 108, - "invoices": [ - { - "invoice_id": 212, - "amount": "9.65", - "refunded": "0.00" - } - ], - "invoice_id": 212, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.65", - "applied": "9.65", - "refunded": "0.00", - "date": "2020-05-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 109, - "invoices": [ - { - "invoice_id": 213, - "amount": "2.84", - "refunded": "0.00" - } - ], - "invoice_id": 213, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.84", - "applied": "2.84", - "refunded": "0.00", - "date": "2020-01-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 110, - "invoices": [ - { - "invoice_id": 214, - "amount": "5.66", - "refunded": "0.00" - } - ], - "invoice_id": 214, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.66", - "applied": "5.66", - "refunded": "0.00", - "date": "2020-02-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 111, - "invoices": [ - { - "invoice_id": 215, - "amount": "23.82", - "refunded": "0.00" - } - ], - "invoice_id": 215, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.82", - "applied": "23.82", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 112, - "invoices": [ - { - "invoice_id": 216, - "amount": "0.47", - "refunded": "0.00" - } - ], - "invoice_id": 216, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.47", - "applied": "0.47", - "refunded": "0.00", - "date": "2020-05-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 113, - "invoices": [ - { - "invoice_id": 217, - "amount": "2.60", - "refunded": "0.00" - } - ], - "invoice_id": 217, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.60", - "applied": "2.60", - "refunded": "0.00", - "date": "2020-01-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 114, - "invoices": [ - { - "invoice_id": 218, - "amount": "14.49", - "refunded": "0.00" - } - ], - "invoice_id": 218, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.49", - "applied": "14.49", - "refunded": "0.00", - "date": "2020-01-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 115, - "invoices": [ - { - "invoice_id": 219, - "amount": "0.10", - "refunded": "0.00" - } - ], - "invoice_id": 219, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.10", - "applied": "0.10", - "refunded": "0.00", - "date": "2020-04-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 116, - "invoices": [ - { - "invoice_id": 220, - "amount": "34.21", - "refunded": "0.00" - } - ], - "invoice_id": 220, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.21", - "applied": "34.21", - "refunded": "0.00", - "date": "2020-05-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 117, - "invoices": [ - { - "invoice_id": 221, - "amount": "46.31", - "refunded": "0.00" - } - ], - "invoice_id": 221, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "46.31", - "applied": "46.31", - "refunded": "0.00", - "date": "2020-06-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 118, - "invoices": [ - { - "invoice_id": 222, - "amount": "2.16", - "refunded": "0.00" - } - ], - "invoice_id": 222, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.16", - "applied": "2.16", - "refunded": "0.00", - "date": "2020-04-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 119, - "invoices": [ - { - "invoice_id": 223, - "amount": "2.82", - "refunded": "0.00" - } - ], - "invoice_id": 223, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.82", - "applied": "2.82", - "refunded": "0.00", - "date": "2020-05-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 120, - "invoices": [ - { - "invoice_id": 224, - "amount": "44.19", - "refunded": "0.00" - } - ], - "invoice_id": 224, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "44.19", - "applied": "44.19", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 121, - "invoices": [ - { - "invoice_id": 225, - "amount": "16.13", - "refunded": "0.00" - } - ], - "invoice_id": 225, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.13", - "applied": "16.13", - "refunded": "0.00", - "date": "2020-05-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 122, - "invoices": [ - { - "invoice_id": 226, - "amount": "7.60", - "refunded": "0.00" - } - ], - "invoice_id": 226, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.60", - "applied": "7.60", - "refunded": "0.00", - "date": "2020-02-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 123, - "invoices": [ - { - "invoice_id": 227, - "amount": "3.51", - "refunded": "0.00" - } - ], - "invoice_id": 227, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.51", - "applied": "3.51", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 124, - "invoices": [ - { - "invoice_id": 228, - "amount": "2.39", - "refunded": "0.00" - } - ], - "invoice_id": 228, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.39", - "applied": "2.39", - "refunded": "0.00", - "date": "2020-06-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 125, - "invoices": [ - { - "invoice_id": 229, - "amount": "4.14", - "refunded": "0.00" - } - ], - "invoice_id": 229, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.14", - "applied": "4.14", - "refunded": "0.00", - "date": "2020-01-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 126, - "invoices": [ - { - "invoice_id": 230, - "amount": "1.20", - "refunded": "0.00" - } - ], - "invoice_id": 230, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.20", - "applied": "1.20", - "refunded": "0.00", - "date": "2020-06-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 127, - "invoices": [ - { - "invoice_id": 231, - "amount": "5.75", - "refunded": "0.00" - } - ], - "invoice_id": 231, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.75", - "applied": "5.75", - "refunded": "0.00", - "date": "2019-12-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 128, - "invoices": [ - { - "invoice_id": 232, - "amount": "14.92", - "refunded": "0.00" - } - ], - "invoice_id": 232, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.92", - "applied": "14.92", - "refunded": "0.00", - "date": "2020-01-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 129, - "invoices": [ - { - "invoice_id": 233, - "amount": "33.18", - "refunded": "0.00" - } - ], - "invoice_id": 233, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.18", - "applied": "33.18", - "refunded": "0.00", - "date": "2020-04-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 130, - "invoices": [ - { - "invoice_id": 234, - "amount": "8.87", - "refunded": "0.00" - } - ], - "invoice_id": 234, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.87", - "applied": "8.87", - "refunded": "0.00", - "date": "2020-02-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 131, - "invoices": [ - { - "invoice_id": 235, - "amount": "28.29", - "refunded": "0.00" - } - ], - "invoice_id": 235, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "28.29", - "applied": "28.29", - "refunded": "0.00", - "date": "2019-12-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 132, - "invoices": [ - { - "invoice_id": 236, - "amount": "6.86", - "refunded": "0.00" - } - ], - "invoice_id": 236, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.86", - "applied": "6.86", - "refunded": "0.00", - "date": "2019-12-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 133, - "invoices": [ - { - "invoice_id": 237, - "amount": "0.67", - "refunded": "0.00" - } - ], - "invoice_id": 237, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.67", - "applied": "0.67", - "refunded": "0.00", - "date": "2020-01-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 134, - "invoices": [ - { - "invoice_id": 238, - "amount": "0.29", - "refunded": "0.00" - } - ], - "invoice_id": 238, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.29", - "applied": "0.29", - "refunded": "0.00", - "date": "2020-05-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 135, - "invoices": [ - { - "invoice_id": 239, - "amount": "24.30", - "refunded": "0.00" - } - ], - "invoice_id": 239, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.30", - "applied": "24.30", - "refunded": "0.00", - "date": "2020-04-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 136, - "invoices": [ - { - "invoice_id": 240, - "amount": "1.45", - "refunded": "0.00" - } - ], - "invoice_id": 240, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.45", - "applied": "1.45", - "refunded": "0.00", - "date": "2020-01-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 137, - "invoices": [ - { - "invoice_id": 241, - "amount": "1.66", - "refunded": "0.00" - } - ], - "invoice_id": 241, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.66", - "applied": "1.66", - "refunded": "0.00", - "date": "2020-03-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 138, - "invoices": [ - { - "invoice_id": 242, - "amount": "2.77", - "refunded": "0.00" - } - ], - "invoice_id": 242, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.77", - "applied": "2.77", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 139, - "invoices": [ - { - "invoice_id": 243, - "amount": "2.20", - "refunded": "0.00" - } - ], - "invoice_id": 243, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.20", - "applied": "2.20", - "refunded": "0.00", - "date": "2020-03-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 140, - "invoices": [ - { - "invoice_id": 244, - "amount": "16.33", - "refunded": "0.00" - } - ], - "invoice_id": 244, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.33", - "applied": "16.33", - "refunded": "0.00", - "date": "2020-01-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 141, - "invoices": [ - { - "invoice_id": 245, - "amount": "20.44", - "refunded": "0.00" - } - ], - "invoice_id": 245, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.44", - "applied": "20.44", - "refunded": "0.00", - "date": "2020-05-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 142, - "invoices": [ - { - "invoice_id": 246, - "amount": "35.02", - "refunded": "0.00" - } - ], - "invoice_id": 246, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "35.02", - "applied": "35.02", - "refunded": "0.00", - "date": "2020-03-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 143, - "invoices": [ - { - "invoice_id": 247, - "amount": "12.09", - "refunded": "0.00" - } - ], - "invoice_id": 247, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.09", - "applied": "12.09", - "refunded": "0.00", - "date": "2020-03-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 144, - "invoices": [ - { - "invoice_id": 248, - "amount": "1.59", - "refunded": "0.00" - } - ], - "invoice_id": 248, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.59", - "applied": "1.59", - "refunded": "0.00", - "date": "2020-05-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 145, - "invoices": [ - { - "invoice_id": 249, - "amount": "22.83", - "refunded": "0.00" - } - ], - "invoice_id": 249, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.83", - "applied": "22.83", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 146, - "invoices": [ - { - "invoice_id": 250, - "amount": "1.07", - "refunded": "0.00" - } - ], - "invoice_id": 250, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.07", - "applied": "1.07", - "refunded": "0.00", - "date": "2020-04-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 147, - "invoices": [ - { - "invoice_id": 251, - "amount": "24.29", - "refunded": "0.00" - } - ], - "invoice_id": 251, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.29", - "applied": "24.29", - "refunded": "0.00", - "date": "2020-04-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 148, - "invoices": [ - { - "invoice_id": 252, - "amount": "6.54", - "refunded": "0.00" - } - ], - "invoice_id": 252, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.54", - "applied": "6.54", - "refunded": "0.00", - "date": "2020-05-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 149, - "invoices": [ - { - "invoice_id": 253, - "amount": "10.09", - "refunded": "0.00" - } - ], - "invoice_id": 253, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.09", - "applied": "10.09", - "refunded": "0.00", - "date": "2020-04-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 150, - "invoices": [ - { - "invoice_id": 254, - "amount": "1.51", - "refunded": "0.00" - } - ], - "invoice_id": 254, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.51", - "applied": "1.51", - "refunded": "0.00", - "date": "2020-02-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 151, - "invoices": [ - { - "invoice_id": 255, - "amount": "27.45", - "refunded": "0.00" - } - ], - "invoice_id": 255, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.45", - "applied": "27.45", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 152, - "invoices": [ - { - "invoice_id": 256, - "amount": "19.77", - "refunded": "0.00" - } - ], - "invoice_id": 256, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.77", - "applied": "19.77", - "refunded": "0.00", - "date": "2020-01-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 153, - "invoices": [ - { - "invoice_id": 257, - "amount": "42.14", - "refunded": "0.00" - } - ], - "invoice_id": 257, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "42.14", - "applied": "42.14", - "refunded": "0.00", - "date": "2019-12-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 154, - "invoices": [ - { - "invoice_id": 258, - "amount": "8.11", - "refunded": "0.00" - } - ], - "invoice_id": 258, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.11", - "applied": "8.11", - "refunded": "0.00", - "date": "2020-05-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 155, - "invoices": [ - { - "invoice_id": 259, - "amount": "15.64", - "refunded": "0.00" - } - ], - "invoice_id": 259, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.64", - "applied": "15.64", - "refunded": "0.00", - "date": "2020-02-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 156, - "invoices": [ - { - "invoice_id": 260, - "amount": "0.86", - "refunded": "0.00" - } - ], - "invoice_id": 260, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.86", - "applied": "0.86", - "refunded": "0.00", - "date": "2020-02-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 157, - "invoices": [ - { - "invoice_id": 261, - "amount": "18.03", - "refunded": "0.00" - } - ], - "invoice_id": 261, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.03", - "applied": "18.03", - "refunded": "0.00", - "date": "2019-12-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 158, - "invoices": [ - { - "invoice_id": 262, - "amount": "4.57", - "refunded": "0.00" - } - ], - "invoice_id": 262, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.57", - "applied": "4.57", - "refunded": "0.00", - "date": "2019-12-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 159, - "invoices": [ - { - "invoice_id": 263, - "amount": "4.15", - "refunded": "0.00" - } - ], - "invoice_id": 263, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.15", - "applied": "4.15", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 160, - "invoices": [ - { - "invoice_id": 264, - "amount": "0.81", - "refunded": "0.00" - } - ], - "invoice_id": 264, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.81", - "applied": "0.81", - "refunded": "0.00", - "date": "2019-12-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 161, - "invoices": [ - { - "invoice_id": 265, - "amount": "16.32", - "refunded": "0.00" - } - ], - "invoice_id": 265, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.32", - "applied": "16.32", - "refunded": "0.00", - "date": "2019-12-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 162, - "invoices": [ - { - "invoice_id": 266, - "amount": "2.43", - "refunded": "0.00" - } - ], - "invoice_id": 266, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.43", - "applied": "2.43", - "refunded": "0.00", - "date": "2020-05-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 163, - "invoices": [ - { - "invoice_id": 267, - "amount": "23.37", - "refunded": "0.00" - } - ], - "invoice_id": 267, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.37", - "applied": "23.37", - "refunded": "0.00", - "date": "2019-12-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 164, - "invoices": [ - { - "invoice_id": 268, - "amount": "20.19", - "refunded": "0.00" - } - ], - "invoice_id": 268, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.19", - "applied": "20.19", - "refunded": "0.00", - "date": "2020-04-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 165, - "invoices": [ - { - "invoice_id": 269, - "amount": "7.37", - "refunded": "0.00" - } - ], - "invoice_id": 269, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.37", - "applied": "7.37", - "refunded": "0.00", - "date": "2020-01-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 166, - "invoices": [ - { - "invoice_id": 270, - "amount": "4.18", - "refunded": "0.00" - } - ], - "invoice_id": 270, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.18", - "applied": "4.18", - "refunded": "0.00", - "date": "2020-03-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 167, - "invoices": [ - { - "invoice_id": 271, - "amount": "9.02", - "refunded": "0.00" - } - ], - "invoice_id": 271, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.02", - "applied": "9.02", - "refunded": "0.00", - "date": "2020-06-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 168, - "invoices": [ - { - "invoice_id": 272, - "amount": "2.01", - "refunded": "0.00" - } - ], - "invoice_id": 272, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.01", - "applied": "2.01", - "refunded": "0.00", - "date": "2020-05-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 169, - "invoices": [ - { - "invoice_id": 273, - "amount": "3.54", - "refunded": "0.00" - } - ], - "invoice_id": 273, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.54", - "applied": "3.54", - "refunded": "0.00", - "date": "2019-12-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 170, - "invoices": [ - { - "invoice_id": 274, - "amount": "57.54", - "refunded": "0.00" - } - ], - "invoice_id": 274, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "57.54", - "applied": "57.54", - "refunded": "0.00", - "date": "2019-12-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 171, - "invoices": [ - { - "invoice_id": 275, - "amount": "8.64", - "refunded": "0.00" - } - ], - "invoice_id": 275, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.64", - "applied": "8.64", - "refunded": "0.00", - "date": "2019-12-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 172, - "invoices": [ - { - "invoice_id": 276, - "amount": "63.75", - "refunded": "0.00" - } - ], - "invoice_id": 276, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "63.75", - "applied": "63.75", - "refunded": "0.00", - "date": "2020-05-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 173, - "invoices": [ - { - "invoice_id": 277, - "amount": "1.00", - "refunded": "0.00" - } - ], - "invoice_id": 277, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.00", - "applied": "1.00", - "refunded": "0.00", - "date": "2020-03-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 174, - "invoices": [ - { - "invoice_id": 278, - "amount": "4.06", - "refunded": "0.00" - } - ], - "invoice_id": 278, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.06", - "applied": "4.06", - "refunded": "0.00", - "date": "2020-06-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 175, - "invoices": [ - { - "invoice_id": 279, - "amount": "10.47", - "refunded": "0.00" - } - ], - "invoice_id": 279, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.47", - "applied": "10.47", - "refunded": "0.00", - "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 176, - "invoices": [ - { - "invoice_id": 280, - "amount": "5.22", - "refunded": "0.00" - } - ], - "invoice_id": 280, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.22", - "applied": "5.22", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 177, - "invoices": [ - { - "invoice_id": 281, - "amount": "16.65", - "refunded": "0.00" - } - ], - "invoice_id": 281, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.65", - "applied": "16.65", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 178, - "invoices": [ - { - "invoice_id": 282, - "amount": "0.26", - "refunded": "0.00" - } - ], - "invoice_id": 282, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.26", - "applied": "0.26", - "refunded": "0.00", - "date": "2019-12-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 179, - "invoices": [ - { - "invoice_id": 283, - "amount": "11.16", - "refunded": "0.00" - } - ], - "invoice_id": 283, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.16", - "applied": "11.16", - "refunded": "0.00", - "date": "2020-01-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 180, - "invoices": [ - { - "invoice_id": 284, - "amount": "40.87", - "refunded": "0.00" - } - ], - "invoice_id": 284, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "40.87", - "applied": "40.87", - "refunded": "0.00", - "date": "2020-01-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 181, - "invoices": [ - { - "invoice_id": 285, - "amount": "0.16", - "refunded": "0.00" - } - ], - "invoice_id": 285, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.16", - "applied": "0.16", - "refunded": "0.00", - "date": "2020-01-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 182, - "invoices": [ - { - "invoice_id": 286, - "amount": "12.20", - "refunded": "0.00" - } - ], - "invoice_id": 286, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.20", - "applied": "12.20", - "refunded": "0.00", - "date": "2020-01-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 183, - "invoices": [ - { - "invoice_id": 287, - "amount": "0.48", - "refunded": "0.00" - } - ], - "invoice_id": 287, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.48", - "applied": "0.48", - "refunded": "0.00", - "date": "2020-05-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 184, - "invoices": [ - { - "invoice_id": 288, - "amount": "36.83", - "refunded": "0.00" - } - ], - "invoice_id": 288, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "36.83", - "applied": "36.83", - "refunded": "0.00", - "date": "2020-02-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 185, - "invoices": [ - { - "invoice_id": 289, - "amount": "11.27", - "refunded": "0.00" - } - ], - "invoice_id": 289, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.27", - "applied": "11.27", - "refunded": "0.00", - "date": "2020-05-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 186, - "invoices": [ - { - "invoice_id": 290, - "amount": "6.71", - "refunded": "0.00" - } - ], - "invoice_id": 290, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.71", - "applied": "6.71", - "refunded": "0.00", - "date": "2019-12-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 187, - "invoices": [ - { - "invoice_id": 291, - "amount": "12.14", - "refunded": "0.00" - } - ], - "invoice_id": 291, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.14", - "applied": "12.14", - "refunded": "0.00", - "date": "2020-06-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 188, - "invoices": [ - { - "invoice_id": 292, - "amount": "3.78", - "refunded": "0.00" - } - ], - "invoice_id": 292, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.78", - "applied": "3.78", - "refunded": "0.00", - "date": "2020-02-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 189, - "invoices": [ - { - "invoice_id": 293, - "amount": "20.99", - "refunded": "0.00" - } - ], - "invoice_id": 293, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.99", - "applied": "20.99", - "refunded": "0.00", - "date": "2020-05-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 190, - "invoices": [ - { - "invoice_id": 294, - "amount": "14.10", - "refunded": "0.00" - } - ], - "invoice_id": 294, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.10", - "applied": "14.10", - "refunded": "0.00", - "date": "2020-01-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 191, - "invoices": [ - { - "invoice_id": 295, - "amount": "37.23", - "refunded": "0.00" - } - ], - "invoice_id": 295, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "37.23", - "applied": "37.23", - "refunded": "0.00", - "date": "2020-01-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 192, - "invoices": [ - { - "invoice_id": 296, - "amount": "48.39", - "refunded": "0.00" - } - ], - "invoice_id": 296, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "48.39", - "applied": "48.39", - "refunded": "0.00", - "date": "2020-03-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 193, - "invoices": [ - { - "invoice_id": 297, - "amount": "50.87", - "refunded": "0.00" - } - ], - "invoice_id": 297, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "50.87", - "applied": "50.87", - "refunded": "0.00", - "date": "2020-06-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 194, - "invoices": [ - { - "invoice_id": 298, - "amount": "4.39", - "refunded": "0.00" - } - ], - "invoice_id": 298, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.39", - "applied": "4.39", - "refunded": "0.00", - "date": "2020-02-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 195, - "invoices": [ - { - "invoice_id": 299, - "amount": "11.41", - "refunded": "0.00" - } - ], - "invoice_id": 299, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.41", - "applied": "11.41", - "refunded": "0.00", - "date": "2020-02-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 196, - "invoices": [ - { - "invoice_id": 300, - "amount": "14.43", - "refunded": "0.00" - } - ], - "invoice_id": 300, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.43", - "applied": "14.43", - "refunded": "0.00", - "date": "2020-02-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 197, - "invoices": [ - { - "invoice_id": 301, - "amount": "45.92", - "refunded": "0.00" - } - ], - "invoice_id": 301, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "45.92", - "applied": "45.92", - "refunded": "0.00", - "date": "2020-04-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 198, - "invoices": [ - { - "invoice_id": 302, - "amount": "6.59", - "refunded": "0.00" - } - ], - "invoice_id": 302, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.59", - "applied": "6.59", - "refunded": "0.00", - "date": "2020-05-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 199, - "invoices": [ - { - "invoice_id": 303, - "amount": "23.75", - "refunded": "0.00" - } - ], - "invoice_id": 303, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.75", - "applied": "23.75", - "refunded": "0.00", - "date": "2020-04-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 200, - "invoices": [ - { - "invoice_id": 304, - "amount": "16.49", - "refunded": "0.00" - } - ], - "invoice_id": 304, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.49", - "applied": "16.49", - "refunded": "0.00", - "date": "2020-02-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 201, - "invoices": [ - { - "invoice_id": 305, - "amount": "35.45", - "refunded": "0.00" - } - ], - "invoice_id": 305, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "35.45", - "applied": "35.45", - "refunded": "0.00", - "date": "2020-01-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 202, - "invoices": [ - { - "invoice_id": 306, - "amount": "11.43", - "refunded": "0.00" - } - ], - "invoice_id": 306, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.43", - "applied": "11.43", - "refunded": "0.00", - "date": "2020-04-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 203, - "invoices": [ - { - "invoice_id": 307, - "amount": "9.76", - "refunded": "0.00" - } - ], - "invoice_id": 307, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.76", - "applied": "9.76", - "refunded": "0.00", - "date": "2020-06-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 204, - "invoices": [ - { - "invoice_id": 308, - "amount": "1.76", - "refunded": "0.00" - } - ], - "invoice_id": 308, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.76", - "applied": "1.76", - "refunded": "0.00", - "date": "2020-05-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 205, - "invoices": [ - { - "invoice_id": 309, - "amount": "45.26", - "refunded": "0.00" - } - ], - "invoice_id": 309, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "45.26", - "applied": "45.26", - "refunded": "0.00", - "date": "2020-01-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 206, - "invoices": [ - { - "invoice_id": 310, - "amount": "20.83", - "refunded": "0.00" - } - ], - "invoice_id": 310, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.83", - "applied": "20.83", - "refunded": "0.00", - "date": "2020-02-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 207, - "invoices": [ - { - "invoice_id": 311, - "amount": "10.92", - "refunded": "0.00" - } - ], - "invoice_id": 311, - "company_id": 1, - "client_id": 14, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.92", - "applied": "10.92", - "refunded": "0.00", - "date": "2020-04-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 208, - "invoices": [ - { - "invoice_id": 412, - "amount": "13.45", - "refunded": "0.00" - } - ], - "invoice_id": 412, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.45", - "applied": "13.45", - "refunded": "0.00", - "date": "2020-05-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 209, - "invoices": [ - { - "invoice_id": 413, - "amount": "18.67", - "refunded": "0.00" - } - ], - "invoice_id": 413, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.67", - "applied": "18.67", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 210, - "invoices": [ - { - "invoice_id": 414, - "amount": "12.14", - "refunded": "0.00" - } - ], - "invoice_id": 414, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.14", - "applied": "12.14", - "refunded": "0.00", - "date": "2019-12-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 211, - "invoices": [ - { - "invoice_id": 415, - "amount": "4.05", - "refunded": "0.00" - } - ], - "invoice_id": 415, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.05", - "applied": "4.05", - "refunded": "0.00", - "date": "2020-04-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 212, - "invoices": [ - { - "invoice_id": 416, - "amount": "30.22", - "refunded": "0.00" - } - ], - "invoice_id": 416, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "30.22", - "applied": "30.22", - "refunded": "0.00", - "date": "2020-02-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 213, - "invoices": [ - { - "invoice_id": 417, - "amount": "16.59", - "refunded": "0.00" - } - ], - "invoice_id": 417, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.59", - "applied": "16.59", - "refunded": "0.00", - "date": "2020-03-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 214, - "invoices": [ - { - "invoice_id": 418, - "amount": "2.74", - "refunded": "0.00" - } - ], - "invoice_id": 418, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.74", - "applied": "2.74", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 215, - "invoices": [ - { - "invoice_id": 419, - "amount": "12.44", - "refunded": "0.00" - } - ], - "invoice_id": 419, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.44", - "applied": "12.44", - "refunded": "0.00", - "date": "2020-04-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 216, - "invoices": [ - { - "invoice_id": 420, - "amount": "15.65", - "refunded": "0.00" - } - ], - "invoice_id": 420, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.65", - "applied": "15.65", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 217, - "invoices": [ - { - "invoice_id": 421, - "amount": "43.02", - "refunded": "0.00" - } - ], - "invoice_id": 421, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "43.02", - "applied": "43.02", - "refunded": "0.00", - "date": "2019-12-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 218, - "invoices": [ - { - "invoice_id": 422, - "amount": "77.29", - "refunded": "0.00" - } - ], - "invoice_id": 422, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "77.29", - "applied": "77.29", - "refunded": "0.00", - "date": "2020-05-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 219, - "invoices": [ - { - "invoice_id": 423, - "amount": "7.35", - "refunded": "0.00" - } - ], - "invoice_id": 423, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.35", - "applied": "7.35", - "refunded": "0.00", - "date": "2020-05-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 220, - "invoices": [ - { - "invoice_id": 424, - "amount": "14.42", - "refunded": "0.00" - } - ], - "invoice_id": 424, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.42", - "applied": "14.42", - "refunded": "0.00", - "date": "2020-04-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 221, - "invoices": [ - { - "invoice_id": 425, - "amount": "0.69", - "refunded": "0.00" - } - ], - "invoice_id": 425, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.69", - "applied": "0.69", - "refunded": "0.00", - "date": "2020-05-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 222, - "invoices": [ - { - "invoice_id": 426, - "amount": "47.54", - "refunded": "0.00" - } - ], - "invoice_id": 426, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "47.54", - "applied": "47.54", - "refunded": "0.00", - "date": "2020-04-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 223, - "invoices": [ - { - "invoice_id": 427, - "amount": "1.10", - "refunded": "0.00" - } - ], - "invoice_id": 427, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.10", - "applied": "1.10", - "refunded": "0.00", - "date": "2020-04-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 224, - "invoices": [ - { - "invoice_id": 428, - "amount": "25.41", - "refunded": "0.00" - } - ], - "invoice_id": 428, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "25.41", - "applied": "25.41", - "refunded": "0.00", - "date": "2019-12-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 225, - "invoices": [ - { - "invoice_id": 429, - "amount": "10.31", - "refunded": "0.00" - } - ], - "invoice_id": 429, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.31", - "applied": "10.31", - "refunded": "0.00", - "date": "2019-12-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 226, - "invoices": [ - { - "invoice_id": 430, - "amount": "26.20", - "refunded": "0.00" - } - ], - "invoice_id": 430, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.20", - "applied": "26.20", - "refunded": "0.00", - "date": "2020-05-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 227, - "invoices": [ - { - "invoice_id": 431, - "amount": "48.41", - "refunded": "0.00" - } - ], - "invoice_id": 431, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "48.41", - "applied": "48.41", - "refunded": "0.00", - "date": "2020-03-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 228, - "invoices": [ - { - "invoice_id": 432, - "amount": "15.38", - "refunded": "0.00" - } - ], - "invoice_id": 432, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.38", - "applied": "15.38", - "refunded": "0.00", - "date": "2020-05-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 229, - "invoices": [ - { - "invoice_id": 433, - "amount": "37.98", - "refunded": "0.00" - } - ], - "invoice_id": 433, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "37.98", - "applied": "37.98", - "refunded": "0.00", - "date": "2020-03-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 230, - "invoices": [ - { - "invoice_id": 434, - "amount": "2.88", - "refunded": "0.00" - } - ], - "invoice_id": 434, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.88", - "applied": "2.88", - "refunded": "0.00", - "date": "2020-03-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 231, - "invoices": [ - { - "invoice_id": 435, - "amount": "14.78", - "refunded": "0.00" - } - ], - "invoice_id": 435, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.78", - "applied": "14.78", - "refunded": "0.00", - "date": "2020-04-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 232, - "invoices": [ - { - "invoice_id": 436, - "amount": "28.40", - "refunded": "0.00" - } - ], - "invoice_id": 436, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "28.40", - "applied": "28.40", - "refunded": "0.00", - "date": "2020-02-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 233, - "invoices": [ - { - "invoice_id": 437, - "amount": "26.07", - "refunded": "0.00" - } - ], - "invoice_id": 437, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.07", - "applied": "26.07", - "refunded": "0.00", - "date": "2020-04-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 234, - "invoices": [ - { - "invoice_id": 438, - "amount": "2.47", - "refunded": "0.00" - } - ], - "invoice_id": 438, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.47", - "applied": "2.47", - "refunded": "0.00", - "date": "2020-05-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 235, - "invoices": [ - { - "invoice_id": 439, - "amount": "11.56", - "refunded": "0.00" - } - ], - "invoice_id": 439, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.56", - "applied": "11.56", - "refunded": "0.00", - "date": "2020-05-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 236, - "invoices": [ - { - "invoice_id": 440, - "amount": "26.37", - "refunded": "0.00" - } - ], - "invoice_id": 440, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.37", - "applied": "26.37", - "refunded": "0.00", - "date": "2020-01-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 237, - "invoices": [ - { - "invoice_id": 441, - "amount": "4.65", - "refunded": "0.00" - } - ], - "invoice_id": 441, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.65", - "applied": "4.65", - "refunded": "0.00", - "date": "2020-06-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 238, - "invoices": [ - { - "invoice_id": 442, - "amount": "1.28", - "refunded": "0.00" - } - ], - "invoice_id": 442, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.28", - "applied": "1.28", - "refunded": "0.00", - "date": "2020-03-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 239, - "invoices": [ - { - "invoice_id": 443, - "amount": "19.30", - "refunded": "0.00" - } - ], - "invoice_id": 443, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.30", - "applied": "19.30", - "refunded": "0.00", - "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 240, - "invoices": [ - { - "invoice_id": 444, - "amount": "24.73", - "refunded": "0.00" - } - ], - "invoice_id": 444, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.73", - "applied": "24.73", - "refunded": "0.00", - "date": "2020-04-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 241, - "invoices": [ - { - "invoice_id": 445, - "amount": "3.89", - "refunded": "0.00" - } - ], - "invoice_id": 445, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.89", - "applied": "3.89", - "refunded": "0.00", - "date": "2020-05-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 242, - "invoices": [ - { - "invoice_id": 446, - "amount": "0.38", - "refunded": "0.00" - } - ], - "invoice_id": 446, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.38", - "applied": "0.38", - "refunded": "0.00", - "date": "2020-02-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 243, - "invoices": [ - { - "invoice_id": 447, - "amount": "6.60", - "refunded": "0.00" - } - ], - "invoice_id": 447, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.60", - "applied": "6.60", - "refunded": "0.00", - "date": "2020-04-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 244, - "invoices": [ - { - "invoice_id": 448, - "amount": "3.58", - "refunded": "0.00" - } - ], - "invoice_id": 448, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.58", - "applied": "3.58", - "refunded": "0.00", - "date": "2020-01-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 245, - "invoices": [ - { - "invoice_id": 449, - "amount": "81.76", - "refunded": "0.00" - } - ], - "invoice_id": 449, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "81.76", - "applied": "81.76", - "refunded": "0.00", - "date": "2020-02-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 246, - "invoices": [ - { - "invoice_id": 450, - "amount": "49.11", - "refunded": "0.00" - } - ], - "invoice_id": 450, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "49.11", - "applied": "49.11", - "refunded": "0.00", - "date": "2020-03-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 247, - "invoices": [ - { - "invoice_id": 451, - "amount": "22.13", - "refunded": "0.00" - } - ], - "invoice_id": 451, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.13", - "applied": "22.13", - "refunded": "0.00", - "date": "2020-04-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 248, - "invoices": [ - { - "invoice_id": 452, - "amount": "3.15", - "refunded": "0.00" - } - ], - "invoice_id": 452, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.15", - "applied": "3.15", - "refunded": "0.00", - "date": "2020-01-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 249, - "invoices": [ - { - "invoice_id": 453, - "amount": "3.45", - "refunded": "0.00" - } - ], - "invoice_id": 453, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.45", - "applied": "3.45", - "refunded": "0.00", - "date": "2020-03-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 250, - "invoices": [ - { - "invoice_id": 454, - "amount": "13.63", - "refunded": "0.00" - } - ], - "invoice_id": 454, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.63", - "applied": "13.63", - "refunded": "0.00", - "date": "2020-03-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 251, - "invoices": [ - { - "invoice_id": 455, - "amount": "7.71", - "refunded": "0.00" - } - ], - "invoice_id": 455, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.71", - "applied": "7.71", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 252, - "invoices": [ - { - "invoice_id": 456, - "amount": "9.17", - "refunded": "0.00" - } - ], - "invoice_id": 456, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.17", - "applied": "9.17", - "refunded": "0.00", - "date": "2020-03-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 253, - "invoices": [ - { - "invoice_id": 457, - "amount": "70.89", - "refunded": "0.00" - } - ], - "invoice_id": 457, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "70.89", - "applied": "70.89", - "refunded": "0.00", - "date": "2020-03-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 254, - "invoices": [ - { - "invoice_id": 458, - "amount": "3.32", - "refunded": "0.00" - } - ], - "invoice_id": 458, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.32", - "applied": "3.32", - "refunded": "0.00", - "date": "2020-04-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 255, - "invoices": [ - { - "invoice_id": 459, - "amount": "2.36", - "refunded": "0.00" - } - ], - "invoice_id": 459, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.36", - "applied": "2.36", - "refunded": "0.00", - "date": "2020-05-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 256, - "invoices": [ - { - "invoice_id": 460, - "amount": "1.96", - "refunded": "0.00" - } - ], - "invoice_id": 460, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.96", - "applied": "1.96", - "refunded": "0.00", - "date": "2020-02-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 257, - "invoices": [ - { - "invoice_id": 461, - "amount": "3.03", - "refunded": "0.00" - } - ], - "invoice_id": 461, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.03", - "applied": "3.03", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 258, - "invoices": [ - { - "invoice_id": 462, - "amount": "3.41", - "refunded": "0.00" - } - ], - "invoice_id": 462, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.41", - "applied": "3.41", - "refunded": "0.00", - "date": "2020-02-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 259, - "invoices": [ - { - "invoice_id": 463, - "amount": "2.54", - "refunded": "0.00" - } - ], - "invoice_id": 463, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.54", - "applied": "2.54", - "refunded": "0.00", - "date": "2019-12-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 260, - "invoices": [ - { - "invoice_id": 464, - "amount": "16.66", - "refunded": "0.00" - } - ], - "invoice_id": 464, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.66", - "applied": "16.66", - "refunded": "0.00", - "date": "2020-02-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 261, - "invoices": [ - { - "invoice_id": 465, - "amount": "3.94", - "refunded": "0.00" - } - ], - "invoice_id": 465, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.94", - "applied": "3.94", - "refunded": "0.00", - "date": "2020-04-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 262, - "invoices": [ - { - "invoice_id": 466, - "amount": "3.84", - "refunded": "0.00" - } - ], - "invoice_id": 466, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.84", - "applied": "3.84", - "refunded": "0.00", - "date": "2020-04-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 263, - "invoices": [ - { - "invoice_id": 467, - "amount": "1.58", - "refunded": "0.00" - } - ], - "invoice_id": 467, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.58", - "applied": "1.58", - "refunded": "0.00", - "date": "2020-06-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 264, - "invoices": [ - { - "invoice_id": 468, - "amount": "11.67", - "refunded": "0.00" - } - ], - "invoice_id": 468, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.67", - "applied": "11.67", - "refunded": "0.00", - "date": "2020-05-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 265, - "invoices": [ - { - "invoice_id": 469, - "amount": "15.82", - "refunded": "0.00" - } - ], - "invoice_id": 469, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.82", - "applied": "15.82", - "refunded": "0.00", - "date": "2020-04-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 266, - "invoices": [ - { - "invoice_id": 470, - "amount": "13.65", - "refunded": "0.00" - } - ], - "invoice_id": 470, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.65", - "applied": "13.65", - "refunded": "0.00", - "date": "2020-05-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 267, - "invoices": [ - { - "invoice_id": 471, - "amount": "25.51", - "refunded": "0.00" - } - ], - "invoice_id": 471, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "25.51", - "applied": "25.51", - "refunded": "0.00", - "date": "2020-03-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 268, - "invoices": [ - { - "invoice_id": 472, - "amount": "64.69", - "refunded": "0.00" - } - ], - "invoice_id": 472, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "64.69", - "applied": "64.69", - "refunded": "0.00", - "date": "2020-03-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 269, - "invoices": [ - { - "invoice_id": 473, - "amount": "0.96", - "refunded": "0.00" - } - ], - "invoice_id": 473, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.96", - "applied": "0.96", - "refunded": "0.00", - "date": "2020-01-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 270, - "invoices": [ - { - "invoice_id": 474, - "amount": "4.16", - "refunded": "0.00" - } - ], - "invoice_id": 474, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.16", - "applied": "4.16", - "refunded": "0.00", - "date": "2020-06-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 271, - "invoices": [ - { - "invoice_id": 475, - "amount": "5.63", - "refunded": "0.00" - } - ], - "invoice_id": 475, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.63", - "applied": "5.63", - "refunded": "0.00", - "date": "2020-01-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 272, - "invoices": [ - { - "invoice_id": 476, - "amount": "14.51", - "refunded": "0.00" - } - ], - "invoice_id": 476, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.51", - "applied": "14.51", - "refunded": "0.00", - "date": "2020-06-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 273, - "invoices": [ - { - "invoice_id": 477, - "amount": "2.26", - "refunded": "0.00" - } - ], - "invoice_id": 477, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.26", - "applied": "2.26", - "refunded": "0.00", - "date": "2019-12-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 274, - "invoices": [ - { - "invoice_id": 478, - "amount": "4.86", - "refunded": "0.00" - } - ], - "invoice_id": 478, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.86", - "applied": "4.86", - "refunded": "0.00", - "date": "2020-06-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 275, - "invoices": [ - { - "invoice_id": 479, - "amount": "6.25", - "refunded": "0.00" - } - ], - "invoice_id": 479, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.25", - "applied": "6.25", - "refunded": "0.00", - "date": "2020-03-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 276, - "invoices": [ - { - "invoice_id": 480, - "amount": "15.98", - "refunded": "0.00" - } - ], - "invoice_id": 480, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.98", - "applied": "15.98", - "refunded": "0.00", - "date": "2020-04-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 277, - "invoices": [ - { - "invoice_id": 481, - "amount": "1.61", - "refunded": "0.00" - } - ], - "invoice_id": 481, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.61", - "applied": "1.61", - "refunded": "0.00", - "date": "2020-04-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 278, - "invoices": [ - { - "invoice_id": 482, - "amount": "26.11", - "refunded": "0.00" - } - ], - "invoice_id": 482, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.11", - "applied": "26.11", - "refunded": "0.00", - "date": "2020-03-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 279, - "invoices": [ - { - "invoice_id": 483, - "amount": "6.77", - "refunded": "0.00" - } - ], - "invoice_id": 483, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.77", - "applied": "6.77", - "refunded": "0.00", - "date": "2020-04-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 280, - "invoices": [ - { - "invoice_id": 484, - "amount": "2.76", - "refunded": "0.00" - } - ], - "invoice_id": 484, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.76", - "applied": "2.76", - "refunded": "0.00", - "date": "2020-01-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 281, - "invoices": [ - { - "invoice_id": 485, - "amount": "5.24", - "refunded": "0.00" - } - ], - "invoice_id": 485, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.24", - "applied": "5.24", - "refunded": "0.00", - "date": "2020-02-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 282, - "invoices": [ - { - "invoice_id": 486, - "amount": "9.19", - "refunded": "0.00" - } - ], - "invoice_id": 486, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.19", - "applied": "9.19", - "refunded": "0.00", - "date": "2020-05-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 283, - "invoices": [ - { - "invoice_id": 487, - "amount": "12.96", - "refunded": "0.00" - } - ], - "invoice_id": 487, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.96", - "applied": "12.96", - "refunded": "0.00", - "date": "2020-05-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 284, - "invoices": [ - { - "invoice_id": 488, - "amount": "12.75", - "refunded": "0.00" - } - ], - "invoice_id": 488, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, + "line_items": [ + { + "id": 10501, + "quantity": 5, + "cost": 6.88, + "product_key": "velit", + "notes": "Rerum omnis unde et aliquid. Eveniet delectus ullam velit est exercitationem voluptatem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10502, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0145", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-10", + "last_sent_date": null, + "due_date": "2020-06-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, "amount": "12.75", - "applied": "12.75", - "refunded": "0.00", - "date": "2020-06-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "balance": "12.75", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10502, + "quantity": 3, + "cost": 4.25, + "product_key": "saepe", + "notes": "Soluta qui quaerat amet sint qui consequatur rerum. Voluptatibus qui eum hic repellendus facere exercitationem eum. Et et qui esse eos sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 285, - "invoices": [ - { - "invoice_id": 489, - "amount": "24.63", - "refunded": "0.00" - } - ], - "invoice_id": 489, - "company_id": 1, - "client_id": 15, + "id": 10503, + "client_id": 56, "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.63", - "applied": "24.63", - "refunded": "0.00", - "date": "2020-03-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 286, - "invoices": [ - { - "invoice_id": 490, - "amount": "7.91", - "refunded": "0.00" - } - ], - "invoice_id": 490, "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.91", - "applied": "7.91", - "refunded": "0.00", - "date": "2020-01-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 287, - "invoices": [ - { - "invoice_id": 491, - "amount": "33.07", - "refunded": "0.00" - } - ], - "invoice_id": 491, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.07", - "applied": "33.07", - "refunded": "0.00", - "date": "2020-06-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 288, - "invoices": [ - { - "invoice_id": 492, - "amount": "21.31", - "refunded": "0.00" - } - ], - "invoice_id": 492, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.31", - "applied": "21.31", - "refunded": "0.00", - "date": "2020-01-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 289, - "invoices": [ - { - "invoice_id": 493, - "amount": "50.14", - "refunded": "0.00" - } - ], - "invoice_id": 493, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "50.14", - "applied": "50.14", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 290, - "invoices": [ - { - "invoice_id": 494, - "amount": "7.88", - "refunded": "0.00" - } - ], - "invoice_id": 494, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.88", - "applied": "7.88", - "refunded": "0.00", - "date": "2020-04-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 291, - "invoices": [ - { - "invoice_id": 495, - "amount": "71.25", - "refunded": "0.00" - } - ], - "invoice_id": 495, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "71.25", - "applied": "71.25", - "refunded": "0.00", - "date": "2020-05-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 292, - "invoices": [ - { - "invoice_id": 496, - "amount": "3.98", - "refunded": "0.00" - } - ], - "invoice_id": 496, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.98", - "applied": "3.98", - "refunded": "0.00", - "date": "2019-12-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 293, - "invoices": [ - { - "invoice_id": 497, - "amount": "3.21", - "refunded": "0.00" - } - ], - "invoice_id": 497, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.21", - "applied": "3.21", - "refunded": "0.00", - "date": "2020-04-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 294, - "invoices": [ - { - "invoice_id": 498, - "amount": "7.71", - "refunded": "0.00" - } - ], - "invoice_id": 498, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.71", - "applied": "7.71", - "refunded": "0.00", - "date": "2020-04-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 295, - "invoices": [ - { - "invoice_id": 499, - "amount": "5.12", - "refunded": "0.00" - } - ], - "invoice_id": 499, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.12", - "applied": "5.12", - "refunded": "0.00", - "date": "2020-02-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 296, - "invoices": [ - { - "invoice_id": 500, - "amount": "18.77", - "refunded": "0.00" - } - ], - "invoice_id": 500, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.77", - "applied": "18.77", - "refunded": "0.00", + "status_id": 2, + "design_id": 1, + "number": "0146", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", "date": "2020-04-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "last_sent_date": null, + "due_date": "2020-05-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.14", + "balance": "42.14", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10503, + "quantity": 7, + "cost": 6.02, + "product_key": "deserunt", + "notes": "Sit modi similique fuga aut consequuntur. Vitae incidunt nulla nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 297, - "invoices": [ + "id": 10504, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0147", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-22", + "last_sent_date": null, + "due_date": "2020-04-08", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "66.80", + "balance": "66.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 501, - "amount": "6.47", - "refunded": "0.00" + "id": 10504, + "quantity": 10, + "cost": 6.68, + "product_key": "voluptas", + "notes": "Ut ullam quod culpa ullam. Eveniet excepturi officia quasi labore et. Sit praesentium esse rerum sed quibusdam iste blanditiis possimus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 501, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.47", - "applied": "6.47", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 298, - "invoices": [ - { - "invoice_id": 502, - "amount": "5.31", - "refunded": "0.00" - } - ], - "invoice_id": 502, - "company_id": 1, - "client_id": 15, + "id": 10505, + "client_id": 56, "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.31", - "applied": "5.31", - "refunded": "0.00", - "date": "2020-06-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 299, - "invoices": [ - { - "invoice_id": 503, - "amount": "8.48", - "refunded": "0.00" - } - ], - "invoice_id": 503, "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.48", - "applied": "8.48", - "refunded": "0.00", - "date": "2020-03-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 300, - "invoices": [ - { - "invoice_id": 504, - "amount": "2.99", - "refunded": "0.00" - } - ], - "invoice_id": 504, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.99", - "applied": "2.99", - "refunded": "0.00", - "date": "2020-04-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 301, - "invoices": [ - { - "invoice_id": 505, - "amount": "12.93", - "refunded": "0.00" - } - ], - "invoice_id": 505, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.93", - "applied": "12.93", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 302, - "invoices": [ - { - "invoice_id": 506, - "amount": "4.72", - "refunded": "0.00" - } - ], - "invoice_id": 506, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.72", - "applied": "4.72", - "refunded": "0.00", - "date": "2019-12-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 303, - "invoices": [ - { - "invoice_id": 507, - "amount": "24.76", - "refunded": "0.00" - } - ], - "invoice_id": 507, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.76", - "applied": "24.76", - "refunded": "0.00", - "date": "2020-06-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 304, - "invoices": [ - { - "invoice_id": 508, - "amount": "13.75", - "refunded": "0.00" - } - ], - "invoice_id": 508, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.75", - "applied": "13.75", - "refunded": "0.00", - "date": "2020-05-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 305, - "invoices": [ - { - "invoice_id": 509, - "amount": "26.51", - "refunded": "0.00" - } - ], - "invoice_id": 509, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.51", - "applied": "26.51", - "refunded": "0.00", - "date": "2020-05-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 306, - "invoices": [ - { - "invoice_id": 510, - "amount": "0.23", - "refunded": "0.00" - } - ], - "invoice_id": 510, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.23", - "applied": "0.23", - "refunded": "0.00", - "date": "2020-05-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 307, - "invoices": [ - { - "invoice_id": 511, - "amount": "31.72", - "refunded": "0.00" - } - ], - "invoice_id": 511, - "company_id": 1, - "client_id": 15, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.72", - "applied": "31.72", - "refunded": "0.00", - "date": "2020-02-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 308, - "invoices": [ - { - "invoice_id": 612, - "amount": "13.77", - "refunded": "0.00" - } - ], - "invoice_id": 612, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.77", - "applied": "13.77", - "refunded": "0.00", - "date": "2020-02-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 309, - "invoices": [ - { - "invoice_id": 613, - "amount": "18.77", - "refunded": "0.00" - } - ], - "invoice_id": 613, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.77", - "applied": "18.77", - "refunded": "0.00", - "date": "2020-01-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 310, - "invoices": [ - { - "invoice_id": 614, - "amount": "18.62", - "refunded": "0.00" - } - ], - "invoice_id": 614, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.62", - "applied": "18.62", - "refunded": "0.00", - "date": "2020-04-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 311, - "invoices": [ - { - "invoice_id": 615, - "amount": "8.34", - "refunded": "0.00" - } - ], - "invoice_id": 615, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.34", - "applied": "8.34", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 312, - "invoices": [ - { - "invoice_id": 616, - "amount": "40.00", - "refunded": "0.00" - } - ], - "invoice_id": 616, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "40.00", - "applied": "40.00", - "refunded": "0.00", - "date": "2019-12-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 313, - "invoices": [ - { - "invoice_id": 617, - "amount": "10.91", - "refunded": "0.00" - } - ], - "invoice_id": 617, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.91", - "applied": "10.91", - "refunded": "0.00", - "date": "2019-12-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 314, - "invoices": [ - { - "invoice_id": 618, - "amount": "10.95", - "refunded": "0.00" - } - ], - "invoice_id": 618, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.95", - "applied": "10.95", - "refunded": "0.00", - "date": "2020-04-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 315, - "invoices": [ - { - "invoice_id": 619, - "amount": "14.08", - "refunded": "0.00" - } - ], - "invoice_id": 619, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.08", - "applied": "14.08", - "refunded": "0.00", - "date": "2020-04-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 316, - "invoices": [ - { - "invoice_id": 620, - "amount": "57.49", - "refunded": "0.00" - } - ], - "invoice_id": 620, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "57.49", - "applied": "57.49", - "refunded": "0.00", - "date": "2020-01-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 317, - "invoices": [ - { - "invoice_id": 621, - "amount": "25.88", - "refunded": "0.00" - } - ], - "invoice_id": 621, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "25.88", - "applied": "25.88", - "refunded": "0.00", - "date": "2020-03-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 318, - "invoices": [ - { - "invoice_id": 622, - "amount": "5.27", - "refunded": "0.00" - } - ], - "invoice_id": 622, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.27", - "applied": "5.27", - "refunded": "0.00", - "date": "2020-03-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 319, - "invoices": [ - { - "invoice_id": 623, - "amount": "6.29", - "refunded": "0.00" - } - ], - "invoice_id": 623, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.29", - "applied": "6.29", - "refunded": "0.00", - "date": "2019-12-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 320, - "invoices": [ - { - "invoice_id": 624, - "amount": "2.22", - "refunded": "0.00" - } - ], - "invoice_id": 624, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.22", - "applied": "2.22", - "refunded": "0.00", - "date": "2020-05-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 321, - "invoices": [ - { - "invoice_id": 625, - "amount": "2.44", - "refunded": "0.00" - } - ], - "invoice_id": 625, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.44", - "applied": "2.44", - "refunded": "0.00", - "date": "2020-01-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 322, - "invoices": [ - { - "invoice_id": 626, - "amount": "8.46", - "refunded": "0.00" - } - ], - "invoice_id": 626, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.46", - "applied": "8.46", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 323, - "invoices": [ - { - "invoice_id": 627, - "amount": "18.38", - "refunded": "0.00" - } - ], - "invoice_id": 627, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.38", - "applied": "18.38", - "refunded": "0.00", + "status_id": 2, + "design_id": 1, + "number": "0148", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", "date": "2020-06-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 324, - "invoices": [ - { - "invoice_id": 628, - "amount": "4.12", - "refunded": "0.00" - } - ], - "invoice_id": 628, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.12", - "applied": "4.12", - "refunded": "0.00", - "date": "2019-12-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 325, - "invoices": [ - { - "invoice_id": 629, - "amount": "1.76", - "refunded": "0.00" - } - ], - "invoice_id": 629, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.76", - "applied": "1.76", - "refunded": "0.00", - "date": "2020-04-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 326, - "invoices": [ - { - "invoice_id": 630, - "amount": "5.99", - "refunded": "0.00" - } - ], - "invoice_id": 630, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.99", - "applied": "5.99", - "refunded": "0.00", - "date": "2020-04-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 327, - "invoices": [ - { - "invoice_id": 631, - "amount": "0.47", - "refunded": "0.00" - } - ], - "invoice_id": 631, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.47", - "applied": "0.47", - "refunded": "0.00", - "date": "2020-01-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 328, - "invoices": [ - { - "invoice_id": 632, - "amount": "13.07", - "refunded": "0.00" - } - ], - "invoice_id": 632, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.07", - "applied": "13.07", - "refunded": "0.00", - "date": "2020-03-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 329, - "invoices": [ - { - "invoice_id": 633, - "amount": "7.11", - "refunded": "0.00" - } - ], - "invoice_id": 633, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.11", - "applied": "7.11", - "refunded": "0.00", - "date": "2020-03-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 330, - "invoices": [ - { - "invoice_id": 634, - "amount": "11.46", - "refunded": "0.00" - } - ], - "invoice_id": 634, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.46", - "applied": "11.46", - "refunded": "0.00", - "date": "2020-02-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 331, - "invoices": [ - { - "invoice_id": 635, - "amount": "22.16", - "refunded": "0.00" - } - ], - "invoice_id": 635, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.16", - "applied": "22.16", - "refunded": "0.00", - "date": "2020-06-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 332, - "invoices": [ - { - "invoice_id": 636, - "amount": "6.43", - "refunded": "0.00" - } - ], - "invoice_id": 636, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.43", - "applied": "6.43", - "refunded": "0.00", - "date": "2020-04-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 333, - "invoices": [ - { - "invoice_id": 637, - "amount": "11.40", - "refunded": "0.00" - } - ], - "invoice_id": 637, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.40", - "applied": "11.40", - "refunded": "0.00", - "date": "2020-01-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 334, - "invoices": [ - { - "invoice_id": 638, - "amount": "8.30", - "refunded": "0.00" - } - ], - "invoice_id": 638, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.30", - "applied": "8.30", - "refunded": "0.00", - "date": "2020-05-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 335, - "invoices": [ - { - "invoice_id": 639, - "amount": "24.44", - "refunded": "0.00" - } - ], - "invoice_id": 639, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.44", - "applied": "24.44", - "refunded": "0.00", - "date": "2020-03-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 336, - "invoices": [ - { - "invoice_id": 640, - "amount": "4.51", - "refunded": "0.00" - } - ], - "invoice_id": 640, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.51", - "applied": "4.51", - "refunded": "0.00", - "date": "2020-01-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 337, - "invoices": [ - { - "invoice_id": 641, - "amount": "43.82", - "refunded": "0.00" - } - ], - "invoice_id": 641, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "43.82", - "applied": "43.82", - "refunded": "0.00", - "date": "2020-01-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 338, - "invoices": [ - { - "invoice_id": 642, - "amount": "1.23", - "refunded": "0.00" - } - ], - "invoice_id": 642, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.23", - "applied": "1.23", - "refunded": "0.00", - "date": "2020-02-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 339, - "invoices": [ - { - "invoice_id": 643, - "amount": "11.55", - "refunded": "0.00" - } - ], - "invoice_id": 643, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.55", - "applied": "11.55", - "refunded": "0.00", - "date": "2020-06-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 340, - "invoices": [ - { - "invoice_id": 644, - "amount": "2.18", - "refunded": "0.00" - } - ], - "invoice_id": 644, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.18", - "applied": "2.18", - "refunded": "0.00", - "date": "2019-12-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 341, - "invoices": [ - { - "invoice_id": 645, - "amount": "11.48", - "refunded": "0.00" - } - ], - "invoice_id": 645, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.48", - "applied": "11.48", - "refunded": "0.00", - "date": "2020-01-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 342, - "invoices": [ - { - "invoice_id": 646, - "amount": "3.13", - "refunded": "0.00" - } - ], - "invoice_id": 646, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.13", - "applied": "3.13", - "refunded": "0.00", - "date": "2020-05-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 343, - "invoices": [ - { - "invoice_id": 647, - "amount": "7.15", - "refunded": "0.00" - } - ], - "invoice_id": 647, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.15", - "applied": "7.15", - "refunded": "0.00", - "date": "2020-05-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 344, - "invoices": [ - { - "invoice_id": 648, - "amount": "24.74", - "refunded": "0.00" - } - ], - "invoice_id": 648, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.74", - "applied": "24.74", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 345, - "invoices": [ - { - "invoice_id": 649, - "amount": "0.46", - "refunded": "0.00" - } - ], - "invoice_id": 649, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.46", - "applied": "0.46", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 346, - "invoices": [ - { - "invoice_id": 650, - "amount": "9.72", - "refunded": "0.00" - } - ], - "invoice_id": 650, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.72", - "applied": "9.72", - "refunded": "0.00", - "date": "2020-02-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 347, - "invoices": [ - { - "invoice_id": 651, - "amount": "2.91", - "refunded": "0.00" - } - ], - "invoice_id": 651, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.91", - "applied": "2.91", - "refunded": "0.00", - "date": "2020-05-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 348, - "invoices": [ - { - "invoice_id": 652, - "amount": "13.99", - "refunded": "0.00" - } - ], - "invoice_id": 652, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.99", - "applied": "13.99", - "refunded": "0.00", - "date": "2020-02-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 349, - "invoices": [ - { - "invoice_id": 653, - "amount": "26.01", - "refunded": "0.00" - } - ], - "invoice_id": 653, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.01", - "applied": "26.01", - "refunded": "0.00", - "date": "2020-05-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 350, - "invoices": [ - { - "invoice_id": 654, - "amount": "11.16", - "refunded": "0.00" - } - ], - "invoice_id": 654, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.16", - "applied": "11.16", - "refunded": "0.00", - "date": "2020-02-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 351, - "invoices": [ - { - "invoice_id": 655, - "amount": "0.37", - "refunded": "0.00" - } - ], - "invoice_id": 655, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.37", - "applied": "0.37", - "refunded": "0.00", - "date": "2020-01-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 352, - "invoices": [ - { - "invoice_id": 656, - "amount": "28.50", - "refunded": "0.00" - } - ], - "invoice_id": 656, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "28.50", - "applied": "28.50", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 353, - "invoices": [ - { - "invoice_id": 657, - "amount": "14.54", - "refunded": "0.00" - } - ], - "invoice_id": 657, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.54", - "applied": "14.54", - "refunded": "0.00", - "date": "2019-12-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 354, - "invoices": [ - { - "invoice_id": 658, - "amount": "11.79", - "refunded": "0.00" - } - ], - "invoice_id": 658, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.79", - "applied": "11.79", - "refunded": "0.00", - "date": "2020-05-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 355, - "invoices": [ - { - "invoice_id": 659, - "amount": "3.71", - "refunded": "0.00" - } - ], - "invoice_id": 659, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.71", - "applied": "3.71", - "refunded": "0.00", - "date": "2019-12-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 356, - "invoices": [ - { - "invoice_id": 660, - "amount": "39.93", - "refunded": "0.00" - } - ], - "invoice_id": 660, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "39.93", - "applied": "39.93", - "refunded": "0.00", - "date": "2020-02-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 357, - "invoices": [ - { - "invoice_id": 661, - "amount": "7.67", - "refunded": "0.00" - } - ], - "invoice_id": 661, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.67", - "applied": "7.67", - "refunded": "0.00", - "date": "2020-02-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 358, - "invoices": [ - { - "invoice_id": 662, - "amount": "9.60", - "refunded": "0.00" - } - ], - "invoice_id": 662, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.60", - "applied": "9.60", - "refunded": "0.00", - "date": "2020-05-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 359, - "invoices": [ - { - "invoice_id": 663, - "amount": "5.93", - "refunded": "0.00" - } - ], - "invoice_id": 663, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.93", - "applied": "5.93", - "refunded": "0.00", - "date": "2020-03-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 360, - "invoices": [ - { - "invoice_id": 664, - "amount": "4.42", - "refunded": "0.00" - } - ], - "invoice_id": 664, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.42", - "applied": "4.42", - "refunded": "0.00", - "date": "2019-12-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 361, - "invoices": [ - { - "invoice_id": 665, - "amount": "9.95", - "refunded": "0.00" - } - ], - "invoice_id": 665, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.95", - "applied": "9.95", - "refunded": "0.00", - "date": "2019-12-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 362, - "invoices": [ - { - "invoice_id": 666, - "amount": "10.26", - "refunded": "0.00" - } - ], - "invoice_id": 666, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.26", - "applied": "10.26", - "refunded": "0.00", - "date": "2020-06-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 363, - "invoices": [ - { - "invoice_id": 667, - "amount": "1.22", - "refunded": "0.00" - } - ], - "invoice_id": 667, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.22", - "applied": "1.22", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 364, - "invoices": [ - { - "invoice_id": 668, - "amount": "54.15", - "refunded": "0.00" - } - ], - "invoice_id": 668, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "54.15", - "applied": "54.15", - "refunded": "0.00", - "date": "2020-04-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 365, - "invoices": [ - { - "invoice_id": 669, - "amount": "29.14", - "refunded": "0.00" - } - ], - "invoice_id": 669, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "29.14", - "applied": "29.14", - "refunded": "0.00", - "date": "2020-02-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 366, - "invoices": [ - { - "invoice_id": 670, - "amount": "53.25", - "refunded": "0.00" - } - ], - "invoice_id": 670, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "53.25", - "applied": "53.25", - "refunded": "0.00", - "date": "2020-05-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 367, - "invoices": [ - { - "invoice_id": 671, - "amount": "29.83", - "refunded": "0.00" - } - ], - "invoice_id": 671, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "29.83", - "applied": "29.83", - "refunded": "0.00", - "date": "2020-06-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 368, - "invoices": [ - { - "invoice_id": 672, - "amount": "2.42", - "refunded": "0.00" - } - ], - "invoice_id": 672, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.42", - "applied": "2.42", - "refunded": "0.00", - "date": "2020-05-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 369, - "invoices": [ - { - "invoice_id": 673, - "amount": "15.82", - "refunded": "0.00" - } - ], - "invoice_id": 673, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.82", - "applied": "15.82", - "refunded": "0.00", - "date": "2020-02-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 370, - "invoices": [ - { - "invoice_id": 674, - "amount": "23.96", - "refunded": "0.00" - } - ], - "invoice_id": 674, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.96", - "applied": "23.96", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 371, - "invoices": [ - { - "invoice_id": 675, - "amount": "47.00", - "refunded": "0.00" - } - ], - "invoice_id": 675, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "47.00", - "applied": "47.00", - "refunded": "0.00", - "date": "2020-03-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 372, - "invoices": [ - { - "invoice_id": 676, - "amount": "3.85", - "refunded": "0.00" - } - ], - "invoice_id": 676, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.85", - "applied": "3.85", - "refunded": "0.00", - "date": "2020-03-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 373, - "invoices": [ - { - "invoice_id": 677, - "amount": "38.74", - "refunded": "0.00" - } - ], - "invoice_id": 677, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "38.74", - "applied": "38.74", - "refunded": "0.00", - "date": "2020-03-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 374, - "invoices": [ - { - "invoice_id": 678, - "amount": "5.61", - "refunded": "0.00" - } - ], - "invoice_id": 678, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.61", - "applied": "5.61", - "refunded": "0.00", - "date": "2020-06-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 375, - "invoices": [ - { - "invoice_id": 679, - "amount": "40.99", - "refunded": "0.00" - } - ], - "invoice_id": 679, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "40.99", - "applied": "40.99", - "refunded": "0.00", - "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 376, - "invoices": [ - { - "invoice_id": 680, - "amount": "8.67", - "refunded": "0.00" - } - ], - "invoice_id": 680, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.67", - "applied": "8.67", - "refunded": "0.00", - "date": "2020-03-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 377, - "invoices": [ - { - "invoice_id": 681, - "amount": "9.44", - "refunded": "0.00" - } - ], - "invoice_id": 681, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.44", - "applied": "9.44", - "refunded": "0.00", - "date": "2020-05-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 378, - "invoices": [ - { - "invoice_id": 682, - "amount": "0.85", - "refunded": "0.00" - } - ], - "invoice_id": 682, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.85", - "applied": "0.85", - "refunded": "0.00", - "date": "2020-01-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 379, - "invoices": [ - { - "invoice_id": 683, - "amount": "3.21", - "refunded": "0.00" - } - ], - "invoice_id": 683, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.21", - "applied": "3.21", - "refunded": "0.00", - "date": "2020-03-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 380, - "invoices": [ - { - "invoice_id": 684, - "amount": "0.43", - "refunded": "0.00" - } - ], - "invoice_id": 684, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.43", - "applied": "0.43", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 381, - "invoices": [ - { - "invoice_id": 685, - "amount": "11.55", - "refunded": "0.00" - } - ], - "invoice_id": 685, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.55", - "applied": "11.55", - "refunded": "0.00", - "date": "2020-04-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 382, - "invoices": [ - { - "invoice_id": 686, - "amount": "3.01", - "refunded": "0.00" - } - ], - "invoice_id": 686, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.01", - "applied": "3.01", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 383, - "invoices": [ - { - "invoice_id": 687, - "amount": "12.15", - "refunded": "0.00" - } - ], - "invoice_id": 687, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.15", - "applied": "12.15", - "refunded": "0.00", - "date": "2020-04-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 384, - "invoices": [ - { - "invoice_id": 688, - "amount": "18.42", - "refunded": "0.00" - } - ], - "invoice_id": 688, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.42", - "applied": "18.42", - "refunded": "0.00", - "date": "2020-06-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 385, - "invoices": [ - { - "invoice_id": 689, - "amount": "10.55", - "refunded": "0.00" - } - ], - "invoice_id": 689, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.55", - "applied": "10.55", - "refunded": "0.00", - "date": "2020-06-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 386, - "invoices": [ - { - "invoice_id": 690, - "amount": "4.65", - "refunded": "0.00" - } - ], - "invoice_id": 690, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.65", - "applied": "4.65", - "refunded": "0.00", - "date": "2020-02-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 387, - "invoices": [ - { - "invoice_id": 691, - "amount": "23.09", - "refunded": "0.00" - } - ], - "invoice_id": 691, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.09", - "applied": "23.09", - "refunded": "0.00", - "date": "2019-12-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 388, - "invoices": [ - { - "invoice_id": 692, - "amount": "73.93", - "refunded": "0.00" - } - ], - "invoice_id": 692, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "73.93", - "applied": "73.93", - "refunded": "0.00", - "date": "2020-02-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 389, - "invoices": [ - { - "invoice_id": 693, - "amount": "1.29", - "refunded": "0.00" - } - ], - "invoice_id": 693, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.29", - "applied": "1.29", - "refunded": "0.00", - "date": "2020-04-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 390, - "invoices": [ - { - "invoice_id": 694, - "amount": "3.71", - "refunded": "0.00" - } - ], - "invoice_id": 694, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.71", - "applied": "3.71", - "refunded": "0.00", - "date": "2020-01-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 391, - "invoices": [ - { - "invoice_id": 695, - "amount": "2.34", - "refunded": "0.00" - } - ], - "invoice_id": 695, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.34", - "applied": "2.34", - "refunded": "0.00", - "date": "2020-03-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 392, - "invoices": [ - { - "invoice_id": 696, - "amount": "34.56", - "refunded": "0.00" - } - ], - "invoice_id": 696, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.56", - "applied": "34.56", - "refunded": "0.00", - "date": "2019-12-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 393, - "invoices": [ - { - "invoice_id": 697, - "amount": "28.46", - "refunded": "0.00" - } - ], - "invoice_id": 697, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "28.46", - "applied": "28.46", - "refunded": "0.00", - "date": "2019-12-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 394, - "invoices": [ - { - "invoice_id": 698, - "amount": "8.84", - "refunded": "0.00" - } - ], - "invoice_id": 698, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.84", - "applied": "8.84", - "refunded": "0.00", - "date": "2020-04-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 395, - "invoices": [ - { - "invoice_id": 699, - "amount": "0.84", - "refunded": "0.00" - } - ], - "invoice_id": 699, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.84", - "applied": "0.84", - "refunded": "0.00", - "date": "2020-02-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 396, - "invoices": [ - { - "invoice_id": 700, - "amount": "55.74", - "refunded": "0.00" - } - ], - "invoice_id": 700, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "55.74", - "applied": "55.74", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 397, - "invoices": [ - { - "invoice_id": 701, - "amount": "5.21", - "refunded": "0.00" - } - ], - "invoice_id": 701, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.21", - "applied": "5.21", - "refunded": "0.00", - "date": "2019-12-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 398, - "invoices": [ - { - "invoice_id": 702, - "amount": "38.65", - "refunded": "0.00" - } - ], - "invoice_id": 702, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "38.65", - "applied": "38.65", - "refunded": "0.00", - "date": "2020-01-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 399, - "invoices": [ - { - "invoice_id": 703, - "amount": "20.50", - "refunded": "0.00" - } - ], - "invoice_id": 703, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.50", - "applied": "20.50", - "refunded": "0.00", - "date": "2020-05-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 400, - "invoices": [ - { - "invoice_id": 704, - "amount": "7.77", - "refunded": "0.00" - } - ], - "invoice_id": 704, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.77", - "applied": "7.77", - "refunded": "0.00", - "date": "2020-03-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 401, - "invoices": [ - { - "invoice_id": 705, - "amount": "0.77", - "refunded": "0.00" - } - ], - "invoice_id": 705, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.77", - "applied": "0.77", - "refunded": "0.00", - "date": "2020-01-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 402, - "invoices": [ - { - "invoice_id": 706, - "amount": "4.98", - "refunded": "0.00" - } - ], - "invoice_id": 706, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.98", - "applied": "4.98", - "refunded": "0.00", - "date": "2020-05-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 403, - "invoices": [ - { - "invoice_id": 707, - "amount": "35.00", - "refunded": "0.00" - } - ], - "invoice_id": 707, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "35.00", - "applied": "35.00", - "refunded": "0.00", - "date": "2020-02-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 404, - "invoices": [ - { - "invoice_id": 708, - "amount": "13.35", - "refunded": "0.00" - } - ], - "invoice_id": 708, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.35", - "applied": "13.35", - "refunded": "0.00", - "date": "2020-02-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 405, - "invoices": [ - { - "invoice_id": 709, - "amount": "0.11", - "refunded": "0.00" - } - ], - "invoice_id": 709, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.11", - "applied": "0.11", - "refunded": "0.00", - "date": "2019-12-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 406, - "invoices": [ - { - "invoice_id": 710, - "amount": "7.84", - "refunded": "0.00" - } - ], - "invoice_id": 710, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.84", - "applied": "7.84", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 407, - "invoices": [ - { - "invoice_id": 711, - "amount": "9.28", - "refunded": "0.00" - } - ], - "invoice_id": 711, - "company_id": 1, - "client_id": 16, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.28", - "applied": "9.28", - "refunded": "0.00", - "date": "2020-04-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 408, - "invoices": [ - { - "invoice_id": 812, - "amount": "47.76", - "refunded": "0.00" - } - ], - "invoice_id": 812, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "47.76", - "applied": "47.76", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 409, - "invoices": [ - { - "invoice_id": 813, - "amount": "2.25", - "refunded": "0.00" - } - ], - "invoice_id": 813, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.25", - "applied": "2.25", - "refunded": "0.00", - "date": "2020-01-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 410, - "invoices": [ - { - "invoice_id": 814, - "amount": "43.76", - "refunded": "0.00" - } - ], - "invoice_id": 814, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "43.76", - "applied": "43.76", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 411, - "invoices": [ - { - "invoice_id": 815, - "amount": "9.13", - "refunded": "0.00" - } - ], - "invoice_id": 815, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.13", - "applied": "9.13", - "refunded": "0.00", - "date": "2020-01-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 412, - "invoices": [ - { - "invoice_id": 816, - "amount": "23.12", - "refunded": "0.00" - } - ], - "invoice_id": 816, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.12", - "applied": "23.12", - "refunded": "0.00", - "date": "2020-01-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 413, - "invoices": [ - { - "invoice_id": 817, - "amount": "1.29", - "refunded": "0.00" - } - ], - "invoice_id": 817, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.29", - "applied": "1.29", - "refunded": "0.00", - "date": "2020-03-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 414, - "invoices": [ - { - "invoice_id": 818, - "amount": "11.13", - "refunded": "0.00" - } - ], - "invoice_id": 818, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.13", - "applied": "11.13", - "refunded": "0.00", - "date": "2020-06-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 415, - "invoices": [ - { - "invoice_id": 819, - "amount": "12.81", - "refunded": "0.00" - } - ], - "invoice_id": 819, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.81", - "applied": "12.81", - "refunded": "0.00", - "date": "2020-05-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 416, - "invoices": [ - { - "invoice_id": 820, - "amount": "20.01", - "refunded": "0.00" - } - ], - "invoice_id": 820, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.01", - "applied": "20.01", - "refunded": "0.00", - "date": "2020-02-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 417, - "invoices": [ - { - "invoice_id": 821, - "amount": "25.11", - "refunded": "0.00" - } - ], - "invoice_id": 821, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "25.11", - "applied": "25.11", - "refunded": "0.00", - "date": "2020-03-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 418, - "invoices": [ - { - "invoice_id": 822, - "amount": "7.43", - "refunded": "0.00" - } - ], - "invoice_id": 822, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.43", - "applied": "7.43", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 419, - "invoices": [ - { - "invoice_id": 823, - "amount": "8.18", - "refunded": "0.00" - } - ], - "invoice_id": 823, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.18", - "applied": "8.18", - "refunded": "0.00", - "date": "2020-04-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 420, - "invoices": [ - { - "invoice_id": 824, - "amount": "2.23", - "refunded": "0.00" - } - ], - "invoice_id": 824, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.23", - "applied": "2.23", - "refunded": "0.00", - "date": "2020-04-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 421, - "invoices": [ - { - "invoice_id": 825, - "amount": "5.88", - "refunded": "0.00" - } - ], - "invoice_id": 825, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.88", - "applied": "5.88", - "refunded": "0.00", - "date": "2020-06-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 422, - "invoices": [ - { - "invoice_id": 826, - "amount": "2.43", - "refunded": "0.00" - } - ], - "invoice_id": 826, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.43", - "applied": "2.43", - "refunded": "0.00", - "date": "2020-05-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 423, - "invoices": [ - { - "invoice_id": 827, - "amount": "2.03", - "refunded": "0.00" - } - ], - "invoice_id": 827, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.03", - "applied": "2.03", - "refunded": "0.00", - "date": "2020-01-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 424, - "invoices": [ - { - "invoice_id": 828, - "amount": "5.45", - "refunded": "0.00" - } - ], - "invoice_id": 828, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.45", - "applied": "5.45", - "refunded": "0.00", - "date": "2020-04-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 425, - "invoices": [ - { - "invoice_id": 829, - "amount": "1.07", - "refunded": "0.00" - } - ], - "invoice_id": 829, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.07", - "applied": "1.07", - "refunded": "0.00", - "date": "2019-12-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 426, - "invoices": [ - { - "invoice_id": 830, - "amount": "13.24", - "refunded": "0.00" - } - ], - "invoice_id": 830, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.24", - "applied": "13.24", - "refunded": "0.00", - "date": "2020-05-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 427, - "invoices": [ - { - "invoice_id": 831, - "amount": "21.99", - "refunded": "0.00" - } - ], - "invoice_id": 831, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.99", - "applied": "21.99", - "refunded": "0.00", - "date": "2020-01-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 428, - "invoices": [ - { - "invoice_id": 832, - "amount": "0.10", - "refunded": "0.00" - } - ], - "invoice_id": 832, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.10", - "applied": "0.10", - "refunded": "0.00", - "date": "2020-01-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 429, - "invoices": [ - { - "invoice_id": 833, - "amount": "0.63", - "refunded": "0.00" - } - ], - "invoice_id": 833, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.63", - "applied": "0.63", - "refunded": "0.00", - "date": "2020-02-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 430, - "invoices": [ - { - "invoice_id": 834, - "amount": "24.09", - "refunded": "0.00" - } - ], - "invoice_id": 834, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.09", - "applied": "24.09", - "refunded": "0.00", - "date": "2020-02-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 431, - "invoices": [ - { - "invoice_id": 835, - "amount": "22.20", - "refunded": "0.00" - } - ], - "invoice_id": 835, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.20", - "applied": "22.20", - "refunded": "0.00", - "date": "2020-05-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 432, - "invoices": [ - { - "invoice_id": 836, - "amount": "24.61", - "refunded": "0.00" - } - ], - "invoice_id": 836, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.61", - "applied": "24.61", - "refunded": "0.00", - "date": "2020-04-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 433, - "invoices": [ - { - "invoice_id": 837, - "amount": "16.98", - "refunded": "0.00" - } - ], - "invoice_id": 837, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.98", - "applied": "16.98", - "refunded": "0.00", - "date": "2020-06-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 434, - "invoices": [ - { - "invoice_id": 838, - "amount": "13.36", - "refunded": "0.00" - } - ], - "invoice_id": 838, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.36", - "applied": "13.36", - "refunded": "0.00", - "date": "2020-02-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 435, - "invoices": [ - { - "invoice_id": 839, - "amount": "1.18", - "refunded": "0.00" - } - ], - "invoice_id": 839, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.18", - "applied": "1.18", - "refunded": "0.00", - "date": "2020-01-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 436, - "invoices": [ - { - "invoice_id": 840, - "amount": "0.96", - "refunded": "0.00" - } - ], - "invoice_id": 840, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.96", - "applied": "0.96", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 437, - "invoices": [ - { - "invoice_id": 841, - "amount": "6.27", - "refunded": "0.00" - } - ], - "invoice_id": 841, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.27", - "applied": "6.27", - "refunded": "0.00", - "date": "2020-01-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 438, - "invoices": [ - { - "invoice_id": 842, - "amount": "0.55", - "refunded": "0.00" - } - ], - "invoice_id": 842, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.55", - "applied": "0.55", - "refunded": "0.00", - "date": "2020-04-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 439, - "invoices": [ - { - "invoice_id": 843, - "amount": "0.43", - "refunded": "0.00" - } - ], - "invoice_id": 843, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.43", - "applied": "0.43", - "refunded": "0.00", - "date": "2020-02-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 440, - "invoices": [ - { - "invoice_id": 844, - "amount": "30.61", - "refunded": "0.00" - } - ], - "invoice_id": 844, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "30.61", - "applied": "30.61", - "refunded": "0.00", - "date": "2020-04-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 441, - "invoices": [ - { - "invoice_id": 845, - "amount": "1.53", - "refunded": "0.00" - } - ], - "invoice_id": 845, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.53", - "applied": "1.53", - "refunded": "0.00", - "date": "2019-12-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 442, - "invoices": [ - { - "invoice_id": 846, - "amount": "44.80", - "refunded": "0.00" - } - ], - "invoice_id": 846, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "44.80", - "applied": "44.80", - "refunded": "0.00", - "date": "2020-04-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 443, - "invoices": [ - { - "invoice_id": 847, - "amount": "1.18", - "refunded": "0.00" - } - ], - "invoice_id": 847, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.18", - "applied": "1.18", - "refunded": "0.00", - "date": "2020-02-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 444, - "invoices": [ - { - "invoice_id": 848, - "amount": "3.25", - "refunded": "0.00" - } - ], - "invoice_id": 848, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.25", - "applied": "3.25", - "refunded": "0.00", - "date": "2020-05-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 445, - "invoices": [ - { - "invoice_id": 849, - "amount": "1.08", - "refunded": "0.00" - } - ], - "invoice_id": 849, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.08", - "applied": "1.08", - "refunded": "0.00", - "date": "2020-05-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 446, - "invoices": [ - { - "invoice_id": 850, - "amount": "0.09", - "refunded": "0.00" - } - ], - "invoice_id": 850, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.09", - "applied": "0.09", - "refunded": "0.00", - "date": "2020-04-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 447, - "invoices": [ - { - "invoice_id": 851, - "amount": "4.03", - "refunded": "0.00" - } - ], - "invoice_id": 851, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.03", - "applied": "4.03", - "refunded": "0.00", - "date": "2020-02-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 448, - "invoices": [ - { - "invoice_id": 852, - "amount": "8.13", - "refunded": "0.00" - } - ], - "invoice_id": 852, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.13", - "applied": "8.13", - "refunded": "0.00", - "date": "2020-03-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 449, - "invoices": [ - { - "invoice_id": 853, - "amount": "11.16", - "refunded": "0.00" - } - ], - "invoice_id": 853, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.16", - "applied": "11.16", - "refunded": "0.00", - "date": "2020-02-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 450, - "invoices": [ - { - "invoice_id": 854, - "amount": "8.14", - "refunded": "0.00" - } - ], - "invoice_id": 854, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.14", - "applied": "8.14", - "refunded": "0.00", - "date": "2019-12-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 451, - "invoices": [ - { - "invoice_id": 855, - "amount": "3.61", - "refunded": "0.00" - } - ], - "invoice_id": 855, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.61", - "applied": "3.61", - "refunded": "0.00", - "date": "2019-12-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 452, - "invoices": [ - { - "invoice_id": 856, - "amount": "4.09", - "refunded": "0.00" - } - ], - "invoice_id": 856, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.09", - "applied": "4.09", - "refunded": "0.00", - "date": "2020-04-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 453, - "invoices": [ - { - "invoice_id": 857, - "amount": "28.70", - "refunded": "0.00" - } - ], - "invoice_id": 857, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "28.70", - "applied": "28.70", - "refunded": "0.00", - "date": "2020-05-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 454, - "invoices": [ - { - "invoice_id": 858, - "amount": "5.51", - "refunded": "0.00" - } - ], - "invoice_id": 858, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.51", - "applied": "5.51", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 455, - "invoices": [ - { - "invoice_id": 859, - "amount": "85.80", - "refunded": "0.00" - } - ], - "invoice_id": 859, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "85.80", - "applied": "85.80", - "refunded": "0.00", - "date": "2020-02-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 456, - "invoices": [ - { - "invoice_id": 860, - "amount": "0.00", - "refunded": "0.00" - } - ], - "invoice_id": 860, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.00", - "applied": "0.00", - "refunded": "0.00", - "date": "2020-03-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 457, - "invoices": [ - { - "invoice_id": 861, - "amount": "12.73", - "refunded": "0.00" - } - ], - "invoice_id": 861, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.73", - "applied": "12.73", - "refunded": "0.00", - "date": "2020-02-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 458, - "invoices": [ - { - "invoice_id": 862, - "amount": "11.52", - "refunded": "0.00" - } - ], - "invoice_id": 862, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.52", - "applied": "11.52", - "refunded": "0.00", - "date": "2020-03-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 459, - "invoices": [ - { - "invoice_id": 863, - "amount": "7.42", - "refunded": "0.00" - } - ], - "invoice_id": 863, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.42", - "applied": "7.42", - "refunded": "0.00", - "date": "2020-03-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 460, - "invoices": [ - { - "invoice_id": 864, - "amount": "1.01", - "refunded": "0.00" - } - ], - "invoice_id": 864, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.01", - "applied": "1.01", - "refunded": "0.00", - "date": "2020-02-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 461, - "invoices": [ - { - "invoice_id": 865, - "amount": "35.10", - "refunded": "0.00" - } - ], - "invoice_id": 865, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "35.10", - "applied": "35.10", - "refunded": "0.00", - "date": "2020-02-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 462, - "invoices": [ - { - "invoice_id": 866, - "amount": "21.95", - "refunded": "0.00" - } - ], - "invoice_id": 866, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.95", - "applied": "21.95", - "refunded": "0.00", - "date": "2020-04-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 463, - "invoices": [ - { - "invoice_id": 867, - "amount": "8.39", - "refunded": "0.00" - } - ], - "invoice_id": 867, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.39", - "applied": "8.39", - "refunded": "0.00", - "date": "2020-03-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 464, - "invoices": [ - { - "invoice_id": 868, - "amount": "2.50", - "refunded": "0.00" - } - ], - "invoice_id": 868, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.50", - "applied": "2.50", - "refunded": "0.00", - "date": "2020-05-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 465, - "invoices": [ - { - "invoice_id": 869, - "amount": "10.72", - "refunded": "0.00" - } - ], - "invoice_id": 869, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.72", - "applied": "10.72", - "refunded": "0.00", - "date": "2020-04-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 466, - "invoices": [ - { - "invoice_id": 870, - "amount": "9.49", - "refunded": "0.00" - } - ], - "invoice_id": 870, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.49", - "applied": "9.49", - "refunded": "0.00", - "date": "2020-03-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 467, - "invoices": [ - { - "invoice_id": 871, - "amount": "12.06", - "refunded": "0.00" - } - ], - "invoice_id": 871, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.06", - "applied": "12.06", - "refunded": "0.00", - "date": "2020-01-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 468, - "invoices": [ - { - "invoice_id": 872, - "amount": "10.37", - "refunded": "0.00" - } - ], - "invoice_id": 872, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.37", - "applied": "10.37", - "refunded": "0.00", - "date": "2020-03-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 469, - "invoices": [ - { - "invoice_id": 873, - "amount": "0.80", - "refunded": "0.00" - } - ], - "invoice_id": 873, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.80", - "applied": "0.80", - "refunded": "0.00", - "date": "2020-03-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 470, - "invoices": [ - { - "invoice_id": 874, - "amount": "10.88", - "refunded": "0.00" - } - ], - "invoice_id": 874, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.88", - "applied": "10.88", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 471, - "invoices": [ - { - "invoice_id": 875, - "amount": "3.26", - "refunded": "0.00" - } - ], - "invoice_id": 875, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.26", - "applied": "3.26", - "refunded": "0.00", - "date": "2020-03-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 472, - "invoices": [ - { - "invoice_id": 876, - "amount": "6.07", - "refunded": "0.00" - } - ], - "invoice_id": 876, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.07", - "applied": "6.07", - "refunded": "0.00", - "date": "2020-02-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 473, - "invoices": [ - { - "invoice_id": 877, - "amount": "6.12", - "refunded": "0.00" - } - ], - "invoice_id": 877, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.12", - "applied": "6.12", - "refunded": "0.00", - "date": "2020-03-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 474, - "invoices": [ - { - "invoice_id": 878, - "amount": "58.31", - "refunded": "0.00" - } - ], - "invoice_id": 878, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "58.31", - "applied": "58.31", - "refunded": "0.00", - "date": "2020-01-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 475, - "invoices": [ - { - "invoice_id": 879, - "amount": "12.67", - "refunded": "0.00" - } - ], - "invoice_id": 879, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.67", - "applied": "12.67", - "refunded": "0.00", - "date": "2020-01-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 476, - "invoices": [ - { - "invoice_id": 880, - "amount": "19.02", - "refunded": "0.00" - } - ], - "invoice_id": 880, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.02", - "applied": "19.02", - "refunded": "0.00", - "date": "2020-06-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 477, - "invoices": [ - { - "invoice_id": 881, - "amount": "6.41", - "refunded": "0.00" - } - ], - "invoice_id": 881, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.41", - "applied": "6.41", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 478, - "invoices": [ - { - "invoice_id": 882, - "amount": "0.12", - "refunded": "0.00" - } - ], - "invoice_id": 882, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.12", - "applied": "0.12", - "refunded": "0.00", - "date": "2020-02-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 479, - "invoices": [ - { - "invoice_id": 883, - "amount": "10.09", - "refunded": "0.00" - } - ], - "invoice_id": 883, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.09", - "applied": "10.09", - "refunded": "0.00", - "date": "2020-06-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 480, - "invoices": [ - { - "invoice_id": 884, - "amount": "0.56", - "refunded": "0.00" - } - ], - "invoice_id": 884, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.56", - "applied": "0.56", - "refunded": "0.00", - "date": "2020-04-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 481, - "invoices": [ - { - "invoice_id": 885, - "amount": "5.92", - "refunded": "0.00" - } - ], - "invoice_id": 885, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.92", - "applied": "5.92", - "refunded": "0.00", - "date": "2020-05-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 482, - "invoices": [ - { - "invoice_id": 886, - "amount": "19.24", - "refunded": "0.00" - } - ], - "invoice_id": 886, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.24", - "applied": "19.24", - "refunded": "0.00", - "date": "2020-01-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 483, - "invoices": [ - { - "invoice_id": 887, - "amount": "9.28", - "refunded": "0.00" - } - ], - "invoice_id": 887, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.28", - "applied": "9.28", - "refunded": "0.00", - "date": "2020-03-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 484, - "invoices": [ - { - "invoice_id": 888, - "amount": "40.22", - "refunded": "0.00" - } - ], - "invoice_id": 888, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "40.22", - "applied": "40.22", - "refunded": "0.00", - "date": "2020-06-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 485, - "invoices": [ - { - "invoice_id": 889, - "amount": "15.34", - "refunded": "0.00" - } - ], - "invoice_id": 889, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.34", - "applied": "15.34", - "refunded": "0.00", - "date": "2020-05-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 486, - "invoices": [ - { - "invoice_id": 890, - "amount": "0.65", - "refunded": "0.00" - } - ], - "invoice_id": 890, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.65", - "applied": "0.65", - "refunded": "0.00", - "date": "2020-05-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 487, - "invoices": [ - { - "invoice_id": 891, - "amount": "13.01", - "refunded": "0.00" - } - ], - "invoice_id": 891, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.01", - "applied": "13.01", - "refunded": "0.00", - "date": "2019-12-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 488, - "invoices": [ - { - "invoice_id": 892, - "amount": "2.08", - "refunded": "0.00" - } - ], - "invoice_id": 892, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.08", - "applied": "2.08", - "refunded": "0.00", - "date": "2020-05-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 489, - "invoices": [ - { - "invoice_id": 893, - "amount": "97.53", - "refunded": "0.00" - } - ], - "invoice_id": 893, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "97.53", - "applied": "97.53", - "refunded": "0.00", + "last_sent_date": null, + "due_date": "2020-04-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.92", + "balance": "25.92", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10505, + "quantity": 9, + "cost": 2.88, + "product_key": "sed", + "notes": "Deserunt voluptatem inventore aut nemo et sequi quos. Illum omnis fuga ipsa libero.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:21.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10506, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0149", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-13", + "last_sent_date": null, + "due_date": "2020-04-10", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.77", + "balance": "22.77", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10506, + "quantity": 3, + "cost": 7.59, + "product_key": "et", + "notes": "Maxime non perferendis quod id. Pariatur nulla error sed. Molestias sunt qui et ipsam magnam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10507, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0150", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-19", + "last_sent_date": null, + "due_date": "2020-08-17", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.83", + "balance": "25.83", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10507, + "quantity": 7, + "cost": 3.69, + "product_key": "mollitia", + "notes": "Consequatur tempore illum iste.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10508, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0151", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", "date": "2020-05-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 490, - "invoices": [ - { - "invoice_id": 894, - "amount": "1.51", - "refunded": "0.00" - } - ], - "invoice_id": 894, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.51", - "applied": "1.51", - "refunded": "0.00", - "date": "2019-12-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 491, - "invoices": [ - { - "invoice_id": 895, - "amount": "9.56", - "refunded": "0.00" - } - ], - "invoice_id": 895, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.56", - "applied": "9.56", - "refunded": "0.00", - "date": "2020-02-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 492, - "invoices": [ - { - "invoice_id": 896, - "amount": "14.48", - "refunded": "0.00" - } - ], - "invoice_id": 896, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.48", - "applied": "14.48", - "refunded": "0.00", - "date": "2020-01-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 493, - "invoices": [ - { - "invoice_id": 897, - "amount": "27.97", - "refunded": "0.00" - } - ], - "invoice_id": 897, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.97", - "applied": "27.97", - "refunded": "0.00", - "date": "2020-01-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 494, - "invoices": [ - { - "invoice_id": 898, - "amount": "4.29", - "refunded": "0.00" - } - ], - "invoice_id": 898, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.29", - "applied": "4.29", - "refunded": "0.00", - "date": "2020-06-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 495, - "invoices": [ - { - "invoice_id": 899, - "amount": "1.40", - "refunded": "0.00" - } - ], - "invoice_id": 899, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.40", - "applied": "1.40", - "refunded": "0.00", - "date": "2019-12-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 496, - "invoices": [ - { - "invoice_id": 900, - "amount": "2.89", - "refunded": "0.00" - } - ], - "invoice_id": 900, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.89", - "applied": "2.89", - "refunded": "0.00", - "date": "2020-03-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 497, - "invoices": [ - { - "invoice_id": 901, - "amount": "38.20", - "refunded": "0.00" - } - ], - "invoice_id": 901, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "38.20", - "applied": "38.20", - "refunded": "0.00", - "date": "2020-05-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 498, - "invoices": [ - { - "invoice_id": 902, - "amount": "31.03", - "refunded": "0.00" - } - ], - "invoice_id": 902, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.03", - "applied": "31.03", - "refunded": "0.00", - "date": "2019-12-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 499, - "invoices": [ - { - "invoice_id": 903, - "amount": "0.01", - "refunded": "0.00" - } - ], - "invoice_id": 903, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.01", - "applied": "0.01", - "refunded": "0.00", - "date": "2019-12-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 500, - "invoices": [ - { - "invoice_id": 904, - "amount": "5.19", - "refunded": "0.00" - } - ], - "invoice_id": 904, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.19", - "applied": "5.19", - "refunded": "0.00", - "date": "2020-01-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 501, - "invoices": [ - { - "invoice_id": 905, - "amount": "26.78", - "refunded": "0.00" - } - ], - "invoice_id": 905, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.78", - "applied": "26.78", - "refunded": "0.00", - "date": "2020-05-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 502, - "invoices": [ - { - "invoice_id": 906, - "amount": "34.59", - "refunded": "0.00" - } - ], - "invoice_id": 906, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.59", - "applied": "34.59", - "refunded": "0.00", - "date": "2020-05-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 503, - "invoices": [ - { - "invoice_id": 907, - "amount": "0.76", - "refunded": "0.00" - } - ], - "invoice_id": 907, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.76", - "applied": "0.76", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 504, - "invoices": [ - { - "invoice_id": 908, - "amount": "30.01", - "refunded": "0.00" - } - ], - "invoice_id": 908, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "30.01", - "applied": "30.01", - "refunded": "0.00", - "date": "2020-05-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 505, - "invoices": [ - { - "invoice_id": 909, - "amount": "58.79", - "refunded": "0.00" - } - ], - "invoice_id": 909, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "58.79", - "applied": "58.79", - "refunded": "0.00", - "date": "2020-03-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 506, - "invoices": [ - { - "invoice_id": 910, - "amount": "5.98", - "refunded": "0.00" - } - ], - "invoice_id": 910, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.98", - "applied": "5.98", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 507, - "invoices": [ - { - "invoice_id": 911, - "amount": "24.67", - "refunded": "0.00" - } - ], - "invoice_id": 911, - "company_id": 1, - "client_id": 17, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.67", - "applied": "24.67", - "refunded": "0.00", - "date": "2020-05-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 508, - "invoices": [ - { - "invoice_id": 1012, - "amount": "12.06", - "refunded": "0.00" - } - ], - "invoice_id": 1012, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.06", - "applied": "12.06", - "refunded": "0.00", - "date": "2020-01-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 509, - "invoices": [ - { - "invoice_id": 1013, - "amount": "69.66", - "refunded": "0.00" - } - ], - "invoice_id": 1013, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "69.66", - "applied": "69.66", - "refunded": "0.00", - "date": "2020-01-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 510, - "invoices": [ - { - "invoice_id": 1014, - "amount": "11.58", - "refunded": "0.00" - } - ], - "invoice_id": 1014, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.58", - "applied": "11.58", - "refunded": "0.00", - "date": "2020-01-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 511, - "invoices": [ - { - "invoice_id": 1015, - "amount": "1.59", - "refunded": "0.00" - } - ], - "invoice_id": 1015, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.59", - "applied": "1.59", - "refunded": "0.00", - "date": "2019-12-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 512, - "invoices": [ - { - "invoice_id": 1016, - "amount": "3.56", - "refunded": "0.00" - } - ], - "invoice_id": 1016, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.56", - "applied": "3.56", - "refunded": "0.00", - "date": "2019-12-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 513, - "invoices": [ - { - "invoice_id": 1017, - "amount": "4.92", - "refunded": "0.00" - } - ], - "invoice_id": 1017, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.92", - "applied": "4.92", - "refunded": "0.00", - "date": "2020-06-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 514, - "invoices": [ - { - "invoice_id": 1018, - "amount": "66.26", - "refunded": "0.00" - } - ], - "invoice_id": 1018, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "66.26", - "applied": "66.26", - "refunded": "0.00", - "date": "2020-03-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 515, - "invoices": [ - { - "invoice_id": 1019, - "amount": "1.91", - "refunded": "0.00" - } - ], - "invoice_id": 1019, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.91", - "applied": "1.91", - "refunded": "0.00", - "date": "2020-05-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 516, - "invoices": [ - { - "invoice_id": 1020, - "amount": "3.48", - "refunded": "0.00" - } - ], - "invoice_id": 1020, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.48", - "applied": "3.48", - "refunded": "0.00", - "date": "2020-03-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 517, - "invoices": [ - { - "invoice_id": 1021, - "amount": "23.71", - "refunded": "0.00" - } - ], - "invoice_id": 1021, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.71", - "applied": "23.71", - "refunded": "0.00", - "date": "2020-04-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 518, - "invoices": [ - { - "invoice_id": 1022, - "amount": "41.39", - "refunded": "0.00" - } - ], - "invoice_id": 1022, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "41.39", - "applied": "41.39", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 519, - "invoices": [ - { - "invoice_id": 1023, - "amount": "37.08", - "refunded": "0.00" - } - ], - "invoice_id": 1023, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "37.08", - "applied": "37.08", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 520, - "invoices": [ - { - "invoice_id": 1024, - "amount": "8.48", - "refunded": "0.00" - } - ], - "invoice_id": 1024, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.48", - "applied": "8.48", - "refunded": "0.00", - "date": "2019-12-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 521, - "invoices": [ - { - "invoice_id": 1025, - "amount": "1.97", - "refunded": "0.00" - } - ], - "invoice_id": 1025, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.97", - "applied": "1.97", - "refunded": "0.00", - "date": "2019-12-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 522, - "invoices": [ - { - "invoice_id": 1026, - "amount": "0.56", - "refunded": "0.00" - } - ], - "invoice_id": 1026, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.56", - "applied": "0.56", - "refunded": "0.00", - "date": "2020-05-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 523, - "invoices": [ - { - "invoice_id": 1027, - "amount": "5.16", - "refunded": "0.00" - } - ], - "invoice_id": 1027, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.16", - "applied": "5.16", - "refunded": "0.00", - "date": "2020-03-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 524, - "invoices": [ - { - "invoice_id": 1028, - "amount": "4.50", - "refunded": "0.00" - } - ], - "invoice_id": 1028, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.50", - "applied": "4.50", - "refunded": "0.00", - "date": "2020-04-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 525, - "invoices": [ - { - "invoice_id": 1029, - "amount": "79.61", - "refunded": "0.00" - } - ], - "invoice_id": 1029, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "79.61", - "applied": "79.61", - "refunded": "0.00", - "date": "2020-01-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 526, - "invoices": [ - { - "invoice_id": 1030, - "amount": "7.38", - "refunded": "0.00" - } - ], - "invoice_id": 1030, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.38", - "applied": "7.38", - "refunded": "0.00", - "date": "2020-06-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 527, - "invoices": [ - { - "invoice_id": 1031, - "amount": "13.30", - "refunded": "0.00" - } - ], - "invoice_id": 1031, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.30", - "applied": "13.30", - "refunded": "0.00", - "date": "2020-04-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 528, - "invoices": [ - { - "invoice_id": 1032, - "amount": "36.95", - "refunded": "0.00" - } - ], - "invoice_id": 1032, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "36.95", - "applied": "36.95", - "refunded": "0.00", - "date": "2020-06-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 529, - "invoices": [ - { - "invoice_id": 1033, - "amount": "0.14", - "refunded": "0.00" - } - ], - "invoice_id": 1033, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.14", - "applied": "0.14", - "refunded": "0.00", - "date": "2020-04-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 530, - "invoices": [ - { - "invoice_id": 1034, - "amount": "20.82", - "refunded": "0.00" - } - ], - "invoice_id": 1034, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.82", - "applied": "20.82", - "refunded": "0.00", - "date": "2020-05-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 531, - "invoices": [ - { - "invoice_id": 1035, - "amount": "16.02", - "refunded": "0.00" - } - ], - "invoice_id": 1035, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.02", - "applied": "16.02", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 532, - "invoices": [ - { - "invoice_id": 1036, - "amount": "3.83", - "refunded": "0.00" - } - ], - "invoice_id": 1036, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.83", - "applied": "3.83", - "refunded": "0.00", - "date": "2020-05-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 533, - "invoices": [ - { - "invoice_id": 1037, - "amount": "74.70", - "refunded": "0.00" - } - ], - "invoice_id": 1037, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "74.70", - "applied": "74.70", - "refunded": "0.00", - "date": "2020-02-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 534, - "invoices": [ - { - "invoice_id": 1038, - "amount": "1.84", - "refunded": "0.00" - } - ], - "invoice_id": 1038, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.84", - "applied": "1.84", - "refunded": "0.00", - "date": "2020-06-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 535, - "invoices": [ - { - "invoice_id": 1039, - "amount": "6.76", - "refunded": "0.00" - } - ], - "invoice_id": 1039, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.76", - "applied": "6.76", - "refunded": "0.00", - "date": "2020-03-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 536, - "invoices": [ - { - "invoice_id": 1040, - "amount": "2.49", - "refunded": "0.00" - } - ], - "invoice_id": 1040, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.49", - "applied": "2.49", - "refunded": "0.00", - "date": "2020-03-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 537, - "invoices": [ - { - "invoice_id": 1041, - "amount": "28.31", - "refunded": "0.00" - } - ], - "invoice_id": 1041, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "28.31", - "applied": "28.31", - "refunded": "0.00", - "date": "2020-06-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 538, - "invoices": [ - { - "invoice_id": 1042, - "amount": "19.44", - "refunded": "0.00" - } - ], - "invoice_id": 1042, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.44", - "applied": "19.44", - "refunded": "0.00", - "date": "2020-06-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 539, - "invoices": [ - { - "invoice_id": 1043, - "amount": "53.24", - "refunded": "0.00" - } - ], - "invoice_id": 1043, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "53.24", - "applied": "53.24", - "refunded": "0.00", - "date": "2020-05-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 540, - "invoices": [ - { - "invoice_id": 1044, - "amount": "0.55", - "refunded": "0.00" - } - ], - "invoice_id": 1044, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.55", - "applied": "0.55", - "refunded": "0.00", - "date": "2020-04-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 541, - "invoices": [ - { - "invoice_id": 1045, - "amount": "2.71", - "refunded": "0.00" - } - ], - "invoice_id": 1045, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.71", - "applied": "2.71", - "refunded": "0.00", - "date": "2020-01-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 542, - "invoices": [ - { - "invoice_id": 1046, - "amount": "5.03", - "refunded": "0.00" - } - ], - "invoice_id": 1046, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.03", - "applied": "5.03", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 543, - "invoices": [ - { - "invoice_id": 1047, - "amount": "17.76", - "refunded": "0.00" - } - ], - "invoice_id": 1047, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.76", - "applied": "17.76", - "refunded": "0.00", - "date": "2019-12-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 544, - "invoices": [ - { - "invoice_id": 1048, - "amount": "7.23", - "refunded": "0.00" - } - ], - "invoice_id": 1048, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.23", - "applied": "7.23", - "refunded": "0.00", - "date": "2019-12-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 545, - "invoices": [ - { - "invoice_id": 1049, - "amount": "2.54", - "refunded": "0.00" - } - ], - "invoice_id": 1049, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.54", - "applied": "2.54", - "refunded": "0.00", - "date": "2020-01-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 546, - "invoices": [ - { - "invoice_id": 1050, - "amount": "15.50", - "refunded": "0.00" - } - ], - "invoice_id": 1050, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.50", - "applied": "15.50", - "refunded": "0.00", - "date": "2020-05-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 547, - "invoices": [ - { - "invoice_id": 1051, - "amount": "47.12", - "refunded": "0.00" - } - ], - "invoice_id": 1051, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "47.12", - "applied": "47.12", - "refunded": "0.00", - "date": "2020-03-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 548, - "invoices": [ - { - "invoice_id": 1052, - "amount": "30.77", - "refunded": "0.00" - } - ], - "invoice_id": 1052, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "30.77", - "applied": "30.77", - "refunded": "0.00", - "date": "2020-05-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 549, - "invoices": [ - { - "invoice_id": 1053, - "amount": "5.87", - "refunded": "0.00" - } - ], - "invoice_id": 1053, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.87", - "applied": "5.87", - "refunded": "0.00", - "date": "2020-02-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 550, - "invoices": [ - { - "invoice_id": 1054, - "amount": "44.95", - "refunded": "0.00" - } - ], - "invoice_id": 1054, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "44.95", - "applied": "44.95", - "refunded": "0.00", - "date": "2020-01-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 551, - "invoices": [ - { - "invoice_id": 1055, - "amount": "6.31", - "refunded": "0.00" - } - ], - "invoice_id": 1055, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.31", - "applied": "6.31", - "refunded": "0.00", - "date": "2020-04-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 552, - "invoices": [ - { - "invoice_id": 1056, - "amount": "26.80", - "refunded": "0.00" - } - ], - "invoice_id": 1056, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.80", - "applied": "26.80", - "refunded": "0.00", - "date": "2019-12-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 553, - "invoices": [ - { - "invoice_id": 1057, - "amount": "2.27", - "refunded": "0.00" - } - ], - "invoice_id": 1057, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.27", - "applied": "2.27", - "refunded": "0.00", - "date": "2020-01-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 554, - "invoices": [ - { - "invoice_id": 1058, - "amount": "0.83", - "refunded": "0.00" - } - ], - "invoice_id": 1058, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.83", - "applied": "0.83", - "refunded": "0.00", - "date": "2020-04-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 555, - "invoices": [ - { - "invoice_id": 1059, - "amount": "32.72", - "refunded": "0.00" - } - ], - "invoice_id": 1059, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "32.72", - "applied": "32.72", - "refunded": "0.00", - "date": "2020-03-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 556, - "invoices": [ - { - "invoice_id": 1060, - "amount": "11.46", - "refunded": "0.00" - } - ], - "invoice_id": 1060, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.46", - "applied": "11.46", - "refunded": "0.00", - "date": "2019-12-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 557, - "invoices": [ - { - "invoice_id": 1061, - "amount": "62.46", - "refunded": "0.00" - } - ], - "invoice_id": 1061, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "62.46", - "applied": "62.46", - "refunded": "0.00", - "date": "2020-06-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 558, - "invoices": [ - { - "invoice_id": 1062, - "amount": "19.55", - "refunded": "0.00" - } - ], - "invoice_id": 1062, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.55", - "applied": "19.55", - "refunded": "0.00", - "date": "2020-05-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 559, - "invoices": [ - { - "invoice_id": 1063, - "amount": "22.44", - "refunded": "0.00" - } - ], - "invoice_id": 1063, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.44", - "applied": "22.44", - "refunded": "0.00", - "date": "2020-05-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 560, - "invoices": [ - { - "invoice_id": 1064, - "amount": "0.62", - "refunded": "0.00" - } - ], - "invoice_id": 1064, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.62", - "applied": "0.62", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 561, - "invoices": [ - { - "invoice_id": 1065, - "amount": "12.16", - "refunded": "0.00" - } - ], - "invoice_id": 1065, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.16", - "applied": "12.16", - "refunded": "0.00", - "date": "2020-02-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 562, - "invoices": [ - { - "invoice_id": 1066, - "amount": "27.87", - "refunded": "0.00" - } - ], - "invoice_id": 1066, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.87", - "applied": "27.87", - "refunded": "0.00", - "date": "2019-12-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 563, - "invoices": [ - { - "invoice_id": 1067, - "amount": "8.63", - "refunded": "0.00" - } - ], - "invoice_id": 1067, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.63", - "applied": "8.63", - "refunded": "0.00", - "date": "2020-06-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 564, - "invoices": [ - { - "invoice_id": 1068, - "amount": "8.32", - "refunded": "0.00" - } - ], - "invoice_id": 1068, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.32", - "applied": "8.32", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 565, - "invoices": [ - { - "invoice_id": 1069, - "amount": "8.47", - "refunded": "0.00" - } - ], - "invoice_id": 1069, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.47", - "applied": "8.47", - "refunded": "0.00", - "date": "2020-05-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 566, - "invoices": [ - { - "invoice_id": 1070, - "amount": "66.32", - "refunded": "0.00" - } - ], - "invoice_id": 1070, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "66.32", - "applied": "66.32", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 567, - "invoices": [ - { - "invoice_id": 1071, - "amount": "3.19", - "refunded": "0.00" - } - ], - "invoice_id": 1071, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.19", - "applied": "3.19", - "refunded": "0.00", - "date": "2020-01-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 568, - "invoices": [ - { - "invoice_id": 1072, - "amount": "3.14", - "refunded": "0.00" - } - ], - "invoice_id": 1072, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.14", - "applied": "3.14", - "refunded": "0.00", - "date": "2020-01-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 569, - "invoices": [ - { - "invoice_id": 1073, - "amount": "2.19", - "refunded": "0.00" - } - ], - "invoice_id": 1073, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.19", - "applied": "2.19", - "refunded": "0.00", - "date": "2019-12-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 570, - "invoices": [ - { - "invoice_id": 1074, - "amount": "14.12", - "refunded": "0.00" - } - ], - "invoice_id": 1074, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.12", - "applied": "14.12", - "refunded": "0.00", - "date": "2019-12-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 571, - "invoices": [ - { - "invoice_id": 1075, - "amount": "1.68", - "refunded": "0.00" - } - ], - "invoice_id": 1075, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.68", - "applied": "1.68", - "refunded": "0.00", - "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 572, - "invoices": [ - { - "invoice_id": 1076, - "amount": "9.98", - "refunded": "0.00" - } - ], - "invoice_id": 1076, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.98", - "applied": "9.98", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 573, - "invoices": [ - { - "invoice_id": 1077, - "amount": "2.07", - "refunded": "0.00" - } - ], - "invoice_id": 1077, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.07", - "applied": "2.07", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 574, - "invoices": [ - { - "invoice_id": 1078, - "amount": "30.65", - "refunded": "0.00" - } - ], - "invoice_id": 1078, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "30.65", - "applied": "30.65", - "refunded": "0.00", - "date": "2020-02-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 575, - "invoices": [ - { - "invoice_id": 1079, - "amount": "17.15", - "refunded": "0.00" - } - ], - "invoice_id": 1079, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.15", - "applied": "17.15", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 576, - "invoices": [ - { - "invoice_id": 1080, - "amount": "6.61", - "refunded": "0.00" - } - ], - "invoice_id": 1080, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.61", - "applied": "6.61", - "refunded": "0.00", - "date": "2020-05-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 577, - "invoices": [ - { - "invoice_id": 1081, - "amount": "6.18", - "refunded": "0.00" - } - ], - "invoice_id": 1081, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.18", - "applied": "6.18", - "refunded": "0.00", - "date": "2020-03-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 578, - "invoices": [ - { - "invoice_id": 1082, - "amount": "27.81", - "refunded": "0.00" - } - ], - "invoice_id": 1082, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.81", - "applied": "27.81", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 579, - "invoices": [ - { - "invoice_id": 1083, - "amount": "14.09", - "refunded": "0.00" - } - ], - "invoice_id": 1083, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.09", - "applied": "14.09", - "refunded": "0.00", - "date": "2019-12-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 580, - "invoices": [ - { - "invoice_id": 1084, - "amount": "4.32", - "refunded": "0.00" - } - ], - "invoice_id": 1084, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.32", - "applied": "4.32", - "refunded": "0.00", - "date": "2020-03-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 581, - "invoices": [ - { - "invoice_id": 1085, - "amount": "9.67", - "refunded": "0.00" - } - ], - "invoice_id": 1085, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.67", - "applied": "9.67", - "refunded": "0.00", - "date": "2020-05-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 582, - "invoices": [ - { - "invoice_id": 1086, - "amount": "0.85", - "refunded": "0.00" - } - ], - "invoice_id": 1086, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.85", - "applied": "0.85", - "refunded": "0.00", - "date": "2020-01-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 583, - "invoices": [ - { - "invoice_id": 1087, - "amount": "45.69", - "refunded": "0.00" - } - ], - "invoice_id": 1087, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "45.69", - "applied": "45.69", - "refunded": "0.00", - "date": "2020-02-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 584, - "invoices": [ - { - "invoice_id": 1088, - "amount": "14.34", - "refunded": "0.00" - } - ], - "invoice_id": 1088, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.34", - "applied": "14.34", - "refunded": "0.00", - "date": "2020-05-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 585, - "invoices": [ - { - "invoice_id": 1089, - "amount": "2.09", - "refunded": "0.00" - } - ], - "invoice_id": 1089, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.09", - "applied": "2.09", - "refunded": "0.00", - "date": "2019-12-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 586, - "invoices": [ - { - "invoice_id": 1090, - "amount": "33.72", - "refunded": "0.00" - } - ], - "invoice_id": 1090, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.72", - "applied": "33.72", - "refunded": "0.00", - "date": "2020-06-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 587, - "invoices": [ - { - "invoice_id": 1091, - "amount": "27.30", - "refunded": "0.00" - } - ], - "invoice_id": 1091, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.30", - "applied": "27.30", - "refunded": "0.00", - "date": "2019-12-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 588, - "invoices": [ - { - "invoice_id": 1092, - "amount": "2.76", - "refunded": "0.00" - } - ], - "invoice_id": 1092, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.76", - "applied": "2.76", - "refunded": "0.00", - "date": "2019-12-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 589, - "invoices": [ - { - "invoice_id": 1093, - "amount": "18.43", - "refunded": "0.00" - } - ], - "invoice_id": 1093, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.43", - "applied": "18.43", - "refunded": "0.00", - "date": "2020-05-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 590, - "invoices": [ - { - "invoice_id": 1094, - "amount": "5.80", - "refunded": "0.00" - } - ], - "invoice_id": 1094, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.80", - "applied": "5.80", - "refunded": "0.00", - "date": "2019-12-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 591, - "invoices": [ - { - "invoice_id": 1095, - "amount": "8.13", - "refunded": "0.00" - } - ], - "invoice_id": 1095, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.13", - "applied": "8.13", - "refunded": "0.00", - "date": "2020-02-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 592, - "invoices": [ - { - "invoice_id": 1096, - "amount": "8.52", - "refunded": "0.00" - } - ], - "invoice_id": 1096, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.52", - "applied": "8.52", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 593, - "invoices": [ - { - "invoice_id": 1097, - "amount": "1.67", - "refunded": "0.00" - } - ], - "invoice_id": 1097, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.67", - "applied": "1.67", - "refunded": "0.00", - "date": "2020-05-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 594, - "invoices": [ - { - "invoice_id": 1098, - "amount": "16.80", - "refunded": "0.00" - } - ], - "invoice_id": 1098, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.80", - "applied": "16.80", - "refunded": "0.00", - "date": "2020-06-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 595, - "invoices": [ - { - "invoice_id": 1099, - "amount": "20.55", - "refunded": "0.00" - } - ], - "invoice_id": 1099, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.55", - "applied": "20.55", - "refunded": "0.00", - "date": "2020-03-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 596, - "invoices": [ - { - "invoice_id": 1100, - "amount": "17.96", - "refunded": "0.00" - } - ], - "invoice_id": 1100, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.96", - "applied": "17.96", - "refunded": "0.00", - "date": "2020-02-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 597, - "invoices": [ - { - "invoice_id": 1101, - "amount": "0.66", - "refunded": "0.00" - } - ], - "invoice_id": 1101, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.66", - "applied": "0.66", - "refunded": "0.00", - "date": "2020-05-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 598, - "invoices": [ - { - "invoice_id": 1102, - "amount": "0.69", - "refunded": "0.00" - } - ], - "invoice_id": 1102, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.69", - "applied": "0.69", - "refunded": "0.00", - "date": "2020-03-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 599, - "invoices": [ - { - "invoice_id": 1103, - "amount": "20.76", - "refunded": "0.00" - } - ], - "invoice_id": 1103, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.76", - "applied": "20.76", - "refunded": "0.00", - "date": "2020-01-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 600, - "invoices": [ - { - "invoice_id": 1104, - "amount": "10.51", - "refunded": "0.00" - } - ], - "invoice_id": 1104, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.51", - "applied": "10.51", - "refunded": "0.00", - "date": "2020-05-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 601, - "invoices": [ - { - "invoice_id": 1105, - "amount": "2.70", - "refunded": "0.00" - } - ], - "invoice_id": 1105, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.70", - "applied": "2.70", - "refunded": "0.00", - "date": "2020-06-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 602, - "invoices": [ - { - "invoice_id": 1106, - "amount": "12.60", - "refunded": "0.00" - } - ], - "invoice_id": 1106, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.60", - "applied": "12.60", - "refunded": "0.00", - "date": "2020-05-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 603, - "invoices": [ - { - "invoice_id": 1107, - "amount": "5.97", - "refunded": "0.00" - } - ], - "invoice_id": 1107, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.97", - "applied": "5.97", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 604, - "invoices": [ - { - "invoice_id": 1108, - "amount": "2.49", - "refunded": "0.00" - } - ], - "invoice_id": 1108, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.49", - "applied": "2.49", - "refunded": "0.00", - "date": "2020-02-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 605, - "invoices": [ - { - "invoice_id": 1109, - "amount": "3.76", - "refunded": "0.00" - } - ], - "invoice_id": 1109, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.76", - "applied": "3.76", - "refunded": "0.00", - "date": "2020-05-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 606, - "invoices": [ - { - "invoice_id": 1110, - "amount": "21.05", - "refunded": "0.00" - } - ], - "invoice_id": 1110, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.05", - "applied": "21.05", - "refunded": "0.00", - "date": "2020-01-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 607, - "invoices": [ - { - "invoice_id": 1111, - "amount": "11.54", - "refunded": "0.00" - } - ], - "invoice_id": 1111, - "company_id": 1, - "client_id": 18, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.54", - "applied": "11.54", - "refunded": "0.00", - "date": "2020-01-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 608, - "invoices": [ - { - "invoice_id": 1212, - "amount": "10.37", - "refunded": "0.00" - } - ], - "invoice_id": 1212, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.37", - "applied": "10.37", - "refunded": "0.00", - "date": "2020-03-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 609, - "invoices": [ - { - "invoice_id": 1213, - "amount": "9.32", - "refunded": "0.00" - } - ], - "invoice_id": 1213, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.32", - "applied": "9.32", - "refunded": "0.00", - "date": "2020-04-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 610, - "invoices": [ - { - "invoice_id": 1214, - "amount": "11.62", - "refunded": "0.00" - } - ], - "invoice_id": 1214, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.62", - "applied": "11.62", - "refunded": "0.00", - "date": "2020-03-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 611, - "invoices": [ - { - "invoice_id": 1215, - "amount": "1.36", - "refunded": "0.00" - } - ], - "invoice_id": 1215, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.36", - "applied": "1.36", - "refunded": "0.00", - "date": "2020-05-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 612, - "invoices": [ - { - "invoice_id": 1216, - "amount": "14.93", - "refunded": "0.00" - } - ], - "invoice_id": 1216, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.93", - "applied": "14.93", - "refunded": "0.00", - "date": "2020-02-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 613, - "invoices": [ - { - "invoice_id": 1217, - "amount": "21.25", - "refunded": "0.00" - } - ], - "invoice_id": 1217, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.25", - "applied": "21.25", - "refunded": "0.00", - "date": "2020-05-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 614, - "invoices": [ - { - "invoice_id": 1218, - "amount": "8.47", - "refunded": "0.00" - } - ], - "invoice_id": 1218, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.47", - "applied": "8.47", - "refunded": "0.00", - "date": "2020-01-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 615, - "invoices": [ - { - "invoice_id": 1219, - "amount": "0.02", - "refunded": "0.00" - } - ], - "invoice_id": 1219, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.02", - "applied": "0.02", - "refunded": "0.00", - "date": "2020-04-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 616, - "invoices": [ - { - "invoice_id": 1220, - "amount": "5.52", - "refunded": "0.00" - } - ], - "invoice_id": 1220, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.52", - "applied": "5.52", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 617, - "invoices": [ - { - "invoice_id": 1221, - "amount": "45.32", - "refunded": "0.00" - } - ], - "invoice_id": 1221, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "45.32", - "applied": "45.32", - "refunded": "0.00", - "date": "2020-04-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 618, - "invoices": [ - { - "invoice_id": 1222, - "amount": "1.71", - "refunded": "0.00" - } - ], - "invoice_id": 1222, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.71", - "applied": "1.71", - "refunded": "0.00", - "date": "2020-02-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 619, - "invoices": [ - { - "invoice_id": 1223, - "amount": "2.46", - "refunded": "0.00" - } - ], - "invoice_id": 1223, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.46", - "applied": "2.46", - "refunded": "0.00", - "date": "2020-02-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 620, - "invoices": [ - { - "invoice_id": 1224, - "amount": "5.49", - "refunded": "0.00" - } - ], - "invoice_id": 1224, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.49", - "applied": "5.49", - "refunded": "0.00", - "date": "2020-03-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 621, - "invoices": [ - { - "invoice_id": 1225, - "amount": "26.87", - "refunded": "0.00" - } - ], - "invoice_id": 1225, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.87", - "applied": "26.87", - "refunded": "0.00", - "date": "2019-12-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 622, - "invoices": [ - { - "invoice_id": 1226, - "amount": "2.50", - "refunded": "0.00" - } - ], - "invoice_id": 1226, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.50", - "applied": "2.50", - "refunded": "0.00", - "date": "2020-04-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 623, - "invoices": [ - { - "invoice_id": 1227, - "amount": "0.07", - "refunded": "0.00" - } - ], - "invoice_id": 1227, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.07", - "applied": "0.07", - "refunded": "0.00", - "date": "2020-05-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 624, - "invoices": [ - { - "invoice_id": 1228, - "amount": "41.95", - "refunded": "0.00" - } - ], - "invoice_id": 1228, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "41.95", - "applied": "41.95", - "refunded": "0.00", - "date": "2020-02-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 625, - "invoices": [ - { - "invoice_id": 1229, - "amount": "3.06", - "refunded": "0.00" - } - ], - "invoice_id": 1229, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, + "last_sent_date": null, + "due_date": "2020-05-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.53", + "balance": "19.53", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10508, + "quantity": 7, + "cost": 2.79, + "product_key": "ipsam", + "notes": "Voluptate reprehenderit sed dolores eos voluptatem. Qui odit inventore omnis quam voluptas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10509, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0152", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-05", + "last_sent_date": null, + "due_date": "2020-09-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "40.45", + "balance": "40.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10509, + "quantity": 5, + "cost": 8.09, + "product_key": "officia", + "notes": "Sunt perferendis quas neque magnam repudiandae. Qui facilis eum reiciendis ducimus et necessitatibus omnis. Sed provident possimus distinctio sunt similique impedit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10510, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0153", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-06", + "last_sent_date": null, + "due_date": "2020-09-19", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "93.50", + "balance": "93.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10510, + "quantity": 10, + "cost": 9.35, + "product_key": "quod", + "notes": "Dolor et architecto rem qui amet sunt fugiat. Aperiam hic veritatis quis est laboriosam molestiae minus. Eveniet adipisci ducimus eum illo et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10511, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0154", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-30", + "last_sent_date": null, + "due_date": "2020-04-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, "amount": "3.06", - "applied": "3.06", - "refunded": "0.00", - "date": "2020-06-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 626, - "invoices": [ - { - "invoice_id": 1230, - "amount": "1.35", - "refunded": "0.00" - } - ], - "invoice_id": 1230, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.35", - "applied": "1.35", - "refunded": "0.00", - "date": "2019-12-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 627, - "invoices": [ - { - "invoice_id": 1231, - "amount": "5.58", - "refunded": "0.00" - } - ], - "invoice_id": 1231, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.58", - "applied": "5.58", - "refunded": "0.00", - "date": "2020-02-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 628, - "invoices": [ - { - "invoice_id": 1232, - "amount": "44.72", - "refunded": "0.00" - } - ], - "invoice_id": 1232, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "44.72", - "applied": "44.72", - "refunded": "0.00", - "date": "2020-01-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 629, - "invoices": [ - { - "invoice_id": 1233, - "amount": "1.28", - "refunded": "0.00" - } - ], - "invoice_id": 1233, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.28", - "applied": "1.28", - "refunded": "0.00", - "date": "2020-06-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 630, - "invoices": [ - { - "invoice_id": 1234, - "amount": "6.33", - "refunded": "0.00" - } - ], - "invoice_id": 1234, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.33", - "applied": "6.33", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 631, - "invoices": [ - { - "invoice_id": 1235, - "amount": "30.03", - "refunded": "0.00" - } - ], - "invoice_id": 1235, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "30.03", - "applied": "30.03", - "refunded": "0.00", - "date": "2019-12-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 632, - "invoices": [ - { - "invoice_id": 1236, - "amount": "14.04", - "refunded": "0.00" - } - ], - "invoice_id": 1236, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.04", - "applied": "14.04", - "refunded": "0.00", - "date": "2020-06-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 633, - "invoices": [ - { - "invoice_id": 1237, - "amount": "1.58", - "refunded": "0.00" - } - ], - "invoice_id": 1237, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.58", - "applied": "1.58", - "refunded": "0.00", - "date": "2020-02-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 634, - "invoices": [ - { - "invoice_id": 1238, - "amount": "32.82", - "refunded": "0.00" - } - ], - "invoice_id": 1238, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "32.82", - "applied": "32.82", - "refunded": "0.00", - "date": "2019-12-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 635, - "invoices": [ - { - "invoice_id": 1239, - "amount": "11.14", - "refunded": "0.00" - } - ], - "invoice_id": 1239, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.14", - "applied": "11.14", - "refunded": "0.00", - "date": "2020-02-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 636, - "invoices": [ - { - "invoice_id": 1240, - "amount": "9.92", - "refunded": "0.00" - } - ], - "invoice_id": 1240, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.92", - "applied": "9.92", - "refunded": "0.00", - "date": "2020-02-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 637, - "invoices": [ - { - "invoice_id": 1241, - "amount": "10.58", - "refunded": "0.00" - } - ], - "invoice_id": 1241, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.58", - "applied": "10.58", - "refunded": "0.00", - "date": "2020-02-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 638, - "invoices": [ - { - "invoice_id": 1242, - "amount": "63.33", - "refunded": "0.00" - } - ], - "invoice_id": 1242, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "63.33", - "applied": "63.33", - "refunded": "0.00", - "date": "2020-02-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 639, - "invoices": [ - { - "invoice_id": 1243, - "amount": "4.31", - "refunded": "0.00" - } - ], - "invoice_id": 1243, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.31", - "applied": "4.31", - "refunded": "0.00", - "date": "2019-12-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 640, - "invoices": [ - { - "invoice_id": 1244, - "amount": "3.00", - "refunded": "0.00" - } - ], - "invoice_id": 1244, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.00", - "applied": "3.00", - "refunded": "0.00", - "date": "2020-01-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 641, - "invoices": [ - { - "invoice_id": 1245, - "amount": "1.07", - "refunded": "0.00" - } - ], - "invoice_id": 1245, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.07", - "applied": "1.07", - "refunded": "0.00", - "date": "2020-06-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 642, - "invoices": [ - { - "invoice_id": 1246, - "amount": "3.70", - "refunded": "0.00" - } - ], - "invoice_id": 1246, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.70", - "applied": "3.70", - "refunded": "0.00", - "date": "2020-06-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 643, - "invoices": [ - { - "invoice_id": 1247, - "amount": "38.93", - "refunded": "0.00" - } - ], - "invoice_id": 1247, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "38.93", - "applied": "38.93", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 644, - "invoices": [ - { - "invoice_id": 1248, - "amount": "5.06", - "refunded": "0.00" - } - ], - "invoice_id": 1248, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.06", - "applied": "5.06", - "refunded": "0.00", - "date": "2020-01-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 645, - "invoices": [ - { - "invoice_id": 1249, - "amount": "7.84", - "refunded": "0.00" - } - ], - "invoice_id": 1249, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.84", - "applied": "7.84", - "refunded": "0.00", - "date": "2020-02-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 646, - "invoices": [ - { - "invoice_id": 1250, - "amount": "19.10", - "refunded": "0.00" - } - ], - "invoice_id": 1250, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.10", - "applied": "19.10", - "refunded": "0.00", - "date": "2020-03-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 647, - "invoices": [ - { - "invoice_id": 1251, - "amount": "6.84", - "refunded": "0.00" - } - ], - "invoice_id": 1251, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.84", - "applied": "6.84", - "refunded": "0.00", - "date": "2019-12-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 648, - "invoices": [ - { - "invoice_id": 1252, - "amount": "13.07", - "refunded": "0.00" - } - ], - "invoice_id": 1252, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.07", - "applied": "13.07", - "refunded": "0.00", - "date": "2020-04-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 649, - "invoices": [ - { - "invoice_id": 1253, - "amount": "10.98", - "refunded": "0.00" - } - ], - "invoice_id": 1253, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.98", - "applied": "10.98", - "refunded": "0.00", - "date": "2020-03-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 650, - "invoices": [ - { - "invoice_id": 1254, - "amount": "22.17", - "refunded": "0.00" - } - ], - "invoice_id": 1254, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.17", - "applied": "22.17", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 651, - "invoices": [ - { - "invoice_id": 1255, - "amount": "27.46", - "refunded": "0.00" - } - ], - "invoice_id": 1255, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.46", - "applied": "27.46", - "refunded": "0.00", - "date": "2020-01-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 652, - "invoices": [ - { - "invoice_id": 1256, - "amount": "4.55", - "refunded": "0.00" - } - ], - "invoice_id": 1256, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.55", - "applied": "4.55", - "refunded": "0.00", - "date": "2019-12-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 653, - "invoices": [ - { - "invoice_id": 1257, - "amount": "4.05", - "refunded": "0.00" - } - ], - "invoice_id": 1257, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.05", - "applied": "4.05", - "refunded": "0.00", - "date": "2019-12-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 654, - "invoices": [ - { - "invoice_id": 1258, - "amount": "50.20", - "refunded": "0.00" - } - ], - "invoice_id": 1258, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "50.20", - "applied": "50.20", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 655, - "invoices": [ - { - "invoice_id": 1259, - "amount": "17.88", - "refunded": "0.00" - } - ], - "invoice_id": 1259, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.88", - "applied": "17.88", - "refunded": "0.00", - "date": "2019-12-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 656, - "invoices": [ - { - "invoice_id": 1260, - "amount": "39.13", - "refunded": "0.00" - } - ], - "invoice_id": 1260, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "39.13", - "applied": "39.13", - "refunded": "0.00", - "date": "2020-03-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 657, - "invoices": [ - { - "invoice_id": 1261, - "amount": "2.92", - "refunded": "0.00" - } - ], - "invoice_id": 1261, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.92", - "applied": "2.92", - "refunded": "0.00", - "date": "2020-02-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 658, - "invoices": [ - { - "invoice_id": 1262, - "amount": "95.07", - "refunded": "0.00" - } - ], - "invoice_id": 1262, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "95.07", - "applied": "95.07", - "refunded": "0.00", - "date": "2020-06-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 659, - "invoices": [ - { - "invoice_id": 1263, - "amount": "5.34", - "refunded": "0.00" - } - ], - "invoice_id": 1263, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.34", - "applied": "5.34", - "refunded": "0.00", - "date": "2020-02-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 660, - "invoices": [ - { - "invoice_id": 1264, - "amount": "6.09", - "refunded": "0.00" - } - ], - "invoice_id": 1264, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.09", - "applied": "6.09", - "refunded": "0.00", - "date": "2020-04-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 661, - "invoices": [ - { - "invoice_id": 1265, - "amount": "0.91", - "refunded": "0.00" - } - ], - "invoice_id": 1265, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.91", - "applied": "0.91", - "refunded": "0.00", - "date": "2020-01-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 662, - "invoices": [ - { - "invoice_id": 1266, - "amount": "7.72", - "refunded": "0.00" - } - ], - "invoice_id": 1266, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.72", - "applied": "7.72", - "refunded": "0.00", - "date": "2020-01-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 663, - "invoices": [ - { - "invoice_id": 1267, - "amount": "8.36", - "refunded": "0.00" - } - ], - "invoice_id": 1267, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.36", - "applied": "8.36", - "refunded": "0.00", - "date": "2020-03-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 664, - "invoices": [ - { - "invoice_id": 1268, - "amount": "4.65", - "refunded": "0.00" - } - ], - "invoice_id": 1268, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.65", - "applied": "4.65", - "refunded": "0.00", - "date": "2020-04-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 665, - "invoices": [ - { - "invoice_id": 1269, - "amount": "3.53", - "refunded": "0.00" - } - ], - "invoice_id": 1269, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.53", - "applied": "3.53", - "refunded": "0.00", - "date": "2020-05-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 666, - "invoices": [ - { - "invoice_id": 1270, - "amount": "8.26", - "refunded": "0.00" - } - ], - "invoice_id": 1270, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.26", - "applied": "8.26", - "refunded": "0.00", - "date": "2019-12-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 667, - "invoices": [ - { - "invoice_id": 1271, - "amount": "21.09", - "refunded": "0.00" - } - ], - "invoice_id": 1271, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.09", - "applied": "21.09", - "refunded": "0.00", - "date": "2020-04-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 668, - "invoices": [ - { - "invoice_id": 1272, - "amount": "47.56", - "refunded": "0.00" - } - ], - "invoice_id": 1272, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "47.56", - "applied": "47.56", - "refunded": "0.00", - "date": "2020-03-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 669, - "invoices": [ - { - "invoice_id": 1273, - "amount": "10.78", - "refunded": "0.00" - } - ], - "invoice_id": 1273, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.78", - "applied": "10.78", - "refunded": "0.00", - "date": "2020-04-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 670, - "invoices": [ - { - "invoice_id": 1274, - "amount": "0.71", - "refunded": "0.00" - } - ], - "invoice_id": 1274, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.71", - "applied": "0.71", - "refunded": "0.00", - "date": "2020-02-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 671, - "invoices": [ - { - "invoice_id": 1275, - "amount": "64.93", - "refunded": "0.00" - } - ], - "invoice_id": 1275, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "64.93", - "applied": "64.93", - "refunded": "0.00", - "date": "2020-04-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 672, - "invoices": [ - { - "invoice_id": 1276, - "amount": "4.25", - "refunded": "0.00" - } - ], - "invoice_id": 1276, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.25", - "applied": "4.25", - "refunded": "0.00", - "date": "2020-02-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 673, - "invoices": [ - { - "invoice_id": 1277, - "amount": "0.49", - "refunded": "0.00" - } - ], - "invoice_id": 1277, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.49", - "applied": "0.49", - "refunded": "0.00", - "date": "2020-01-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 674, - "invoices": [ - { - "invoice_id": 1278, - "amount": "2.67", - "refunded": "0.00" - } - ], - "invoice_id": 1278, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.67", - "applied": "2.67", - "refunded": "0.00", - "date": "2020-03-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 675, - "invoices": [ - { - "invoice_id": 1279, - "amount": "5.18", - "refunded": "0.00" - } - ], - "invoice_id": 1279, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.18", - "applied": "5.18", - "refunded": "0.00", - "date": "2020-03-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 676, - "invoices": [ - { - "invoice_id": 1280, - "amount": "11.14", - "refunded": "0.00" - } - ], - "invoice_id": 1280, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.14", - "applied": "11.14", - "refunded": "0.00", - "date": "2020-05-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 677, - "invoices": [ - { - "invoice_id": 1281, - "amount": "18.29", - "refunded": "0.00" - } - ], - "invoice_id": 1281, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.29", - "applied": "18.29", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 678, - "invoices": [ - { - "invoice_id": 1282, - "amount": "0.10", - "refunded": "0.00" - } - ], - "invoice_id": 1282, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.10", - "applied": "0.10", - "refunded": "0.00", - "date": "2020-04-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 679, - "invoices": [ - { - "invoice_id": 1283, - "amount": "19.69", - "refunded": "0.00" - } - ], - "invoice_id": 1283, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.69", - "applied": "19.69", - "refunded": "0.00", - "date": "2020-04-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 680, - "invoices": [ - { - "invoice_id": 1284, - "amount": "7.55", - "refunded": "0.00" - } - ], - "invoice_id": 1284, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.55", - "applied": "7.55", - "refunded": "0.00", - "date": "2020-06-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 681, - "invoices": [ - { - "invoice_id": 1285, - "amount": "9.33", - "refunded": "0.00" - } - ], - "invoice_id": 1285, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.33", - "applied": "9.33", - "refunded": "0.00", - "date": "2020-06-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 682, - "invoices": [ - { - "invoice_id": 1286, - "amount": "21.14", - "refunded": "0.00" - } - ], - "invoice_id": 1286, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.14", - "applied": "21.14", - "refunded": "0.00", - "date": "2020-02-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 683, - "invoices": [ - { - "invoice_id": 1287, - "amount": "11.39", - "refunded": "0.00" - } - ], - "invoice_id": 1287, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.39", - "applied": "11.39", - "refunded": "0.00", - "date": "2020-05-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 684, - "invoices": [ - { - "invoice_id": 1288, - "amount": "4.57", - "refunded": "0.00" - } - ], - "invoice_id": 1288, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.57", - "applied": "4.57", - "refunded": "0.00", - "date": "2020-04-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 685, - "invoices": [ - { - "invoice_id": 1289, - "amount": "5.89", - "refunded": "0.00" - } - ], - "invoice_id": 1289, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.89", - "applied": "5.89", - "refunded": "0.00", - "date": "2020-02-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 686, - "invoices": [ - { - "invoice_id": 1290, - "amount": "1.52", - "refunded": "0.00" - } - ], - "invoice_id": 1290, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.52", - "applied": "1.52", - "refunded": "0.00", - "date": "2020-02-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 687, - "invoices": [ - { - "invoice_id": 1291, - "amount": "10.39", - "refunded": "0.00" - } - ], - "invoice_id": 1291, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.39", - "applied": "10.39", - "refunded": "0.00", - "date": "2019-12-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 688, - "invoices": [ - { - "invoice_id": 1292, - "amount": "41.24", - "refunded": "0.00" - } - ], - "invoice_id": 1292, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "41.24", - "applied": "41.24", - "refunded": "0.00", - "date": "2020-05-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 689, - "invoices": [ - { - "invoice_id": 1293, - "amount": "23.70", - "refunded": "0.00" - } - ], - "invoice_id": 1293, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.70", - "applied": "23.70", - "refunded": "0.00", - "date": "2020-03-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 690, - "invoices": [ - { - "invoice_id": 1294, - "amount": "6.04", - "refunded": "0.00" - } - ], - "invoice_id": 1294, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.04", - "applied": "6.04", - "refunded": "0.00", - "date": "2020-02-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 691, - "invoices": [ - { - "invoice_id": 1295, - "amount": "1.91", - "refunded": "0.00" - } - ], - "invoice_id": 1295, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.91", - "applied": "1.91", - "refunded": "0.00", - "date": "2020-01-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 692, - "invoices": [ - { - "invoice_id": 1296, - "amount": "13.57", - "refunded": "0.00" - } - ], - "invoice_id": 1296, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.57", - "applied": "13.57", - "refunded": "0.00", - "date": "2019-12-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 693, - "invoices": [ - { - "invoice_id": 1297, - "amount": "3.44", - "refunded": "0.00" - } - ], - "invoice_id": 1297, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.44", - "applied": "3.44", - "refunded": "0.00", - "date": "2020-01-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 694, - "invoices": [ - { - "invoice_id": 1298, - "amount": "2.90", - "refunded": "0.00" - } - ], - "invoice_id": 1298, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.90", - "applied": "2.90", - "refunded": "0.00", - "date": "2020-02-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 695, - "invoices": [ - { - "invoice_id": 1299, - "amount": "13.68", - "refunded": "0.00" - } - ], - "invoice_id": 1299, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.68", - "applied": "13.68", - "refunded": "0.00", - "date": "2020-03-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 696, - "invoices": [ - { - "invoice_id": 1300, - "amount": "10.26", - "refunded": "0.00" - } - ], - "invoice_id": 1300, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.26", - "applied": "10.26", - "refunded": "0.00", - "date": "2020-03-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 697, - "invoices": [ - { - "invoice_id": 1301, - "amount": "12.32", - "refunded": "0.00" - } - ], - "invoice_id": 1301, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.32", - "applied": "12.32", - "refunded": "0.00", - "date": "2020-02-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 698, - "invoices": [ - { - "invoice_id": 1302, - "amount": "1.57", - "refunded": "0.00" - } - ], - "invoice_id": 1302, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.57", - "applied": "1.57", - "refunded": "0.00", - "date": "2019-12-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 699, - "invoices": [ - { - "invoice_id": 1303, - "amount": "2.61", - "refunded": "0.00" - } - ], - "invoice_id": 1303, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.61", - "applied": "2.61", - "refunded": "0.00", - "date": "2020-04-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 700, - "invoices": [ - { - "invoice_id": 1304, - "amount": "1.47", - "refunded": "0.00" - } - ], - "invoice_id": 1304, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.47", - "applied": "1.47", - "refunded": "0.00", - "date": "2020-03-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 701, - "invoices": [ - { - "invoice_id": 1305, - "amount": "54.92", - "refunded": "0.00" - } - ], - "invoice_id": 1305, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "54.92", - "applied": "54.92", - "refunded": "0.00", - "date": "2020-02-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 702, - "invoices": [ - { - "invoice_id": 1306, - "amount": "2.46", - "refunded": "0.00" - } - ], - "invoice_id": 1306, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.46", - "applied": "2.46", - "refunded": "0.00", - "date": "2020-03-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 703, - "invoices": [ - { - "invoice_id": 1307, - "amount": "2.69", - "refunded": "0.00" - } - ], - "invoice_id": 1307, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.69", - "applied": "2.69", - "refunded": "0.00", - "date": "2019-12-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 704, - "invoices": [ - { - "invoice_id": 1308, - "amount": "0.12", - "refunded": "0.00" - } - ], - "invoice_id": 1308, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.12", - "applied": "0.12", - "refunded": "0.00", - "date": "2019-12-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 705, - "invoices": [ - { - "invoice_id": 1309, - "amount": "3.81", - "refunded": "0.00" - } - ], - "invoice_id": 1309, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.81", - "applied": "3.81", - "refunded": "0.00", - "date": "2019-12-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 706, - "invoices": [ - { - "invoice_id": 1310, - "amount": "4.50", - "refunded": "0.00" - } - ], - "invoice_id": 1310, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.50", - "applied": "4.50", - "refunded": "0.00", - "date": "2019-12-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 707, - "invoices": [ - { - "invoice_id": 1311, - "amount": "19.50", - "refunded": "0.00" - } - ], - "invoice_id": 1311, - "company_id": 1, - "client_id": 19, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.50", - "applied": "19.50", - "refunded": "0.00", - "date": "2019-12-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 708, - "invoices": [ - { - "invoice_id": 1412, - "amount": "4.84", - "refunded": "0.00" - } - ], - "invoice_id": 1412, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.84", - "applied": "4.84", - "refunded": "0.00", - "date": "2020-03-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 709, - "invoices": [ - { - "invoice_id": 1413, - "amount": "1.10", - "refunded": "0.00" - } - ], - "invoice_id": 1413, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.10", - "applied": "1.10", - "refunded": "0.00", - "date": "2020-01-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 710, - "invoices": [ - { - "invoice_id": 1414, - "amount": "6.25", - "refunded": "0.00" - } - ], - "invoice_id": 1414, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.25", - "applied": "6.25", - "refunded": "0.00", - "date": "2020-03-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 711, - "invoices": [ - { - "invoice_id": 1415, - "amount": "4.96", - "refunded": "0.00" - } - ], - "invoice_id": 1415, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.96", - "applied": "4.96", - "refunded": "0.00", - "date": "2020-03-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 712, - "invoices": [ - { - "invoice_id": 1416, - "amount": "5.67", - "refunded": "0.00" - } - ], - "invoice_id": 1416, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.67", - "applied": "5.67", - "refunded": "0.00", - "date": "2020-02-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 713, - "invoices": [ - { - "invoice_id": 1417, - "amount": "5.19", - "refunded": "0.00" - } - ], - "invoice_id": 1417, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.19", - "applied": "5.19", - "refunded": "0.00", - "date": "2020-05-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 714, - "invoices": [ - { - "invoice_id": 1418, - "amount": "12.57", - "refunded": "0.00" - } - ], - "invoice_id": 1418, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.57", - "applied": "12.57", - "refunded": "0.00", - "date": "2019-12-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 715, - "invoices": [ - { - "invoice_id": 1419, - "amount": "12.72", - "refunded": "0.00" - } - ], - "invoice_id": 1419, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.72", - "applied": "12.72", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 716, - "invoices": [ - { - "invoice_id": 1420, - "amount": "0.24", - "refunded": "0.00" - } - ], - "invoice_id": 1420, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.24", - "applied": "0.24", - "refunded": "0.00", - "date": "2020-05-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 717, - "invoices": [ - { - "invoice_id": 1421, - "amount": "4.20", - "refunded": "0.00" - } - ], - "invoice_id": 1421, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.20", - "applied": "4.20", - "refunded": "0.00", - "date": "2020-05-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 718, - "invoices": [ - { - "invoice_id": 1422, - "amount": "13.46", - "refunded": "0.00" - } - ], - "invoice_id": 1422, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.46", - "applied": "13.46", - "refunded": "0.00", - "date": "2020-03-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 719, - "invoices": [ - { - "invoice_id": 1423, - "amount": "21.80", - "refunded": "0.00" - } - ], - "invoice_id": 1423, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.80", - "applied": "21.80", - "refunded": "0.00", - "date": "2019-12-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 720, - "invoices": [ - { - "invoice_id": 1424, - "amount": "3.28", - "refunded": "0.00" - } - ], - "invoice_id": 1424, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.28", - "applied": "3.28", - "refunded": "0.00", - "date": "2020-04-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 721, - "invoices": [ - { - "invoice_id": 1425, - "amount": "9.90", - "refunded": "0.00" - } - ], - "invoice_id": 1425, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.90", - "applied": "9.90", - "refunded": "0.00", - "date": "2020-06-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 722, - "invoices": [ - { - "invoice_id": 1426, - "amount": "3.00", - "refunded": "0.00" - } - ], - "invoice_id": 1426, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.00", - "applied": "3.00", - "refunded": "0.00", - "date": "2020-06-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 723, - "invoices": [ - { - "invoice_id": 1427, - "amount": "4.01", - "refunded": "0.00" - } - ], - "invoice_id": 1427, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.01", - "applied": "4.01", - "refunded": "0.00", - "date": "2020-03-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 724, - "invoices": [ - { - "invoice_id": 1428, - "amount": "33.01", - "refunded": "0.00" - } - ], - "invoice_id": 1428, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.01", - "applied": "33.01", - "refunded": "0.00", - "date": "2019-12-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 725, - "invoices": [ - { - "invoice_id": 1429, - "amount": "8.97", - "refunded": "0.00" - } - ], - "invoice_id": 1429, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.97", - "applied": "8.97", - "refunded": "0.00", - "date": "2020-03-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 726, - "invoices": [ - { - "invoice_id": 1430, - "amount": "20.38", - "refunded": "0.00" - } - ], - "invoice_id": 1430, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.38", - "applied": "20.38", - "refunded": "0.00", - "date": "2020-05-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 727, - "invoices": [ - { - "invoice_id": 1431, - "amount": "7.89", - "refunded": "0.00" - } - ], - "invoice_id": 1431, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.89", - "applied": "7.89", - "refunded": "0.00", - "date": "2020-03-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 728, - "invoices": [ - { - "invoice_id": 1432, - "amount": "24.33", - "refunded": "0.00" - } - ], - "invoice_id": 1432, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.33", - "applied": "24.33", - "refunded": "0.00", - "date": "2020-05-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 729, - "invoices": [ - { - "invoice_id": 1433, - "amount": "0.95", - "refunded": "0.00" - } - ], - "invoice_id": 1433, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.95", - "applied": "0.95", - "refunded": "0.00", - "date": "2020-03-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 730, - "invoices": [ - { - "invoice_id": 1434, - "amount": "0.24", - "refunded": "0.00" - } - ], - "invoice_id": 1434, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.24", - "applied": "0.24", - "refunded": "0.00", - "date": "2020-04-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 731, - "invoices": [ - { - "invoice_id": 1435, - "amount": "2.76", - "refunded": "0.00" - } - ], - "invoice_id": 1435, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.76", - "applied": "2.76", - "refunded": "0.00", - "date": "2019-12-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 732, - "invoices": [ - { - "invoice_id": 1436, - "amount": "2.22", - "refunded": "0.00" - } - ], - "invoice_id": 1436, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.22", - "applied": "2.22", - "refunded": "0.00", - "date": "2020-03-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 733, - "invoices": [ - { - "invoice_id": 1437, - "amount": "3.81", - "refunded": "0.00" - } - ], - "invoice_id": 1437, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.81", - "applied": "3.81", - "refunded": "0.00", - "date": "2019-12-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 734, - "invoices": [ - { - "invoice_id": 1438, - "amount": "13.87", - "refunded": "0.00" - } - ], - "invoice_id": 1438, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.87", - "applied": "13.87", - "refunded": "0.00", - "date": "2020-01-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 735, - "invoices": [ - { - "invoice_id": 1439, - "amount": "22.66", - "refunded": "0.00" - } - ], - "invoice_id": 1439, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.66", - "applied": "22.66", - "refunded": "0.00", - "date": "2020-05-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 736, - "invoices": [ - { - "invoice_id": 1440, - "amount": "0.24", - "refunded": "0.00" - } - ], - "invoice_id": 1440, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.24", - "applied": "0.24", - "refunded": "0.00", - "date": "2019-12-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 737, - "invoices": [ - { - "invoice_id": 1441, - "amount": "18.52", - "refunded": "0.00" - } - ], - "invoice_id": 1441, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.52", - "applied": "18.52", - "refunded": "0.00", - "date": "2019-12-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 738, - "invoices": [ - { - "invoice_id": 1442, - "amount": "22.51", - "refunded": "0.00" - } - ], - "invoice_id": 1442, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.51", - "applied": "22.51", - "refunded": "0.00", - "date": "2020-01-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 739, - "invoices": [ - { - "invoice_id": 1443, - "amount": "33.79", - "refunded": "0.00" - } - ], - "invoice_id": 1443, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.79", - "applied": "33.79", - "refunded": "0.00", - "date": "2020-05-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 740, - "invoices": [ - { - "invoice_id": 1444, - "amount": "38.46", - "refunded": "0.00" - } - ], - "invoice_id": 1444, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "38.46", - "applied": "38.46", - "refunded": "0.00", - "date": "2020-02-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 741, - "invoices": [ - { - "invoice_id": 1445, - "amount": "30.35", - "refunded": "0.00" - } - ], - "invoice_id": 1445, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "30.35", - "applied": "30.35", - "refunded": "0.00", - "date": "2020-02-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 742, - "invoices": [ - { - "invoice_id": 1446, - "amount": "2.05", - "refunded": "0.00" - } - ], - "invoice_id": 1446, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.05", - "applied": "2.05", - "refunded": "0.00", - "date": "2020-01-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 743, - "invoices": [ - { - "invoice_id": 1447, - "amount": "10.37", - "refunded": "0.00" - } - ], - "invoice_id": 1447, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.37", - "applied": "10.37", - "refunded": "0.00", - "date": "2020-06-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 744, - "invoices": [ - { - "invoice_id": 1448, - "amount": "32.76", - "refunded": "0.00" - } - ], - "invoice_id": 1448, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "32.76", - "applied": "32.76", - "refunded": "0.00", - "date": "2020-03-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 745, - "invoices": [ - { - "invoice_id": 1449, - "amount": "19.48", - "refunded": "0.00" - } - ], - "invoice_id": 1449, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.48", - "applied": "19.48", - "refunded": "0.00", - "date": "2020-01-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 746, - "invoices": [ - { - "invoice_id": 1450, - "amount": "6.93", - "refunded": "0.00" - } - ], - "invoice_id": 1450, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.93", - "applied": "6.93", - "refunded": "0.00", - "date": "2020-01-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 747, - "invoices": [ - { - "invoice_id": 1451, - "amount": "1.61", - "refunded": "0.00" - } - ], - "invoice_id": 1451, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.61", - "applied": "1.61", - "refunded": "0.00", - "date": "2019-12-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 748, - "invoices": [ - { - "invoice_id": 1452, - "amount": "5.55", - "refunded": "0.00" - } - ], - "invoice_id": 1452, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.55", - "applied": "5.55", - "refunded": "0.00", - "date": "2020-05-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 749, - "invoices": [ - { - "invoice_id": 1453, - "amount": "18.64", - "refunded": "0.00" - } - ], - "invoice_id": 1453, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.64", - "applied": "18.64", - "refunded": "0.00", - "date": "2020-04-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 750, - "invoices": [ - { - "invoice_id": 1454, - "amount": "2.52", - "refunded": "0.00" - } - ], - "invoice_id": 1454, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.52", - "applied": "2.52", - "refunded": "0.00", - "date": "2019-12-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 751, - "invoices": [ - { - "invoice_id": 1455, - "amount": "40.55", - "refunded": "0.00" - } - ], - "invoice_id": 1455, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "40.55", - "applied": "40.55", - "refunded": "0.00", - "date": "2020-01-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 752, - "invoices": [ - { - "invoice_id": 1456, - "amount": "4.38", - "refunded": "0.00" - } - ], - "invoice_id": 1456, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.38", - "applied": "4.38", - "refunded": "0.00", - "date": "2020-01-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 753, - "invoices": [ - { - "invoice_id": 1457, - "amount": "9.31", - "refunded": "0.00" - } - ], - "invoice_id": 1457, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.31", - "applied": "9.31", - "refunded": "0.00", - "date": "2020-05-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 754, - "invoices": [ - { - "invoice_id": 1458, - "amount": "33.66", - "refunded": "0.00" - } - ], - "invoice_id": 1458, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.66", - "applied": "33.66", - "refunded": "0.00", - "date": "2020-02-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 755, - "invoices": [ - { - "invoice_id": 1459, - "amount": "1.78", - "refunded": "0.00" - } - ], - "invoice_id": 1459, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.78", - "applied": "1.78", - "refunded": "0.00", - "date": "2020-06-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 756, - "invoices": [ - { - "invoice_id": 1460, - "amount": "13.94", - "refunded": "0.00" - } - ], - "invoice_id": 1460, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.94", - "applied": "13.94", - "refunded": "0.00", - "date": "2020-05-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 757, - "invoices": [ - { - "invoice_id": 1461, - "amount": "15.86", - "refunded": "0.00" - } - ], - "invoice_id": 1461, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.86", - "applied": "15.86", - "refunded": "0.00", - "date": "2020-04-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 758, - "invoices": [ - { - "invoice_id": 1462, - "amount": "0.53", - "refunded": "0.00" - } - ], - "invoice_id": 1462, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.53", - "applied": "0.53", - "refunded": "0.00", - "date": "2020-01-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 759, - "invoices": [ - { - "invoice_id": 1463, - "amount": "32.01", - "refunded": "0.00" - } - ], - "invoice_id": 1463, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "32.01", - "applied": "32.01", - "refunded": "0.00", - "date": "2019-12-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 760, - "invoices": [ - { - "invoice_id": 1464, - "amount": "3.63", - "refunded": "0.00" - } - ], - "invoice_id": 1464, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.63", - "applied": "3.63", - "refunded": "0.00", - "date": "2019-12-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 761, - "invoices": [ - { - "invoice_id": 1465, - "amount": "31.92", - "refunded": "0.00" - } - ], - "invoice_id": 1465, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.92", - "applied": "31.92", - "refunded": "0.00", - "date": "2020-01-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 762, - "invoices": [ - { - "invoice_id": 1466, - "amount": "17.23", - "refunded": "0.00" - } - ], - "invoice_id": 1466, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.23", - "applied": "17.23", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 763, - "invoices": [ - { - "invoice_id": 1467, - "amount": "4.14", - "refunded": "0.00" - } - ], - "invoice_id": 1467, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.14", - "applied": "4.14", - "refunded": "0.00", - "date": "2020-01-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 764, - "invoices": [ - { - "invoice_id": 1468, - "amount": "43.42", - "refunded": "0.00" - } - ], - "invoice_id": 1468, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "43.42", - "applied": "43.42", - "refunded": "0.00", - "date": "2020-02-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 765, - "invoices": [ - { - "invoice_id": 1469, - "amount": "0.26", - "refunded": "0.00" - } - ], - "invoice_id": 1469, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.26", - "applied": "0.26", - "refunded": "0.00", - "date": "2019-12-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 766, - "invoices": [ - { - "invoice_id": 1470, - "amount": "10.31", - "refunded": "0.00" - } - ], - "invoice_id": 1470, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.31", - "applied": "10.31", - "refunded": "0.00", - "date": "2019-12-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 767, - "invoices": [ - { - "invoice_id": 1471, - "amount": "23.97", - "refunded": "0.00" - } - ], - "invoice_id": 1471, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.97", - "applied": "23.97", - "refunded": "0.00", - "date": "2020-06-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 768, - "invoices": [ - { - "invoice_id": 1472, - "amount": "2.96", - "refunded": "0.00" - } - ], - "invoice_id": 1472, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.96", - "applied": "2.96", - "refunded": "0.00", - "date": "2020-06-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 769, - "invoices": [ - { - "invoice_id": 1473, - "amount": "1.88", - "refunded": "0.00" - } - ], - "invoice_id": 1473, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.88", - "applied": "1.88", - "refunded": "0.00", - "date": "2020-03-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 770, - "invoices": [ - { - "invoice_id": 1474, - "amount": "20.25", - "refunded": "0.00" - } - ], - "invoice_id": 1474, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.25", - "applied": "20.25", - "refunded": "0.00", - "date": "2020-03-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 771, - "invoices": [ - { - "invoice_id": 1475, - "amount": "5.72", - "refunded": "0.00" - } - ], - "invoice_id": 1475, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.72", - "applied": "5.72", - "refunded": "0.00", - "date": "2020-06-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 772, - "invoices": [ - { - "invoice_id": 1476, - "amount": "2.07", - "refunded": "0.00" - } - ], - "invoice_id": 1476, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.07", - "applied": "2.07", - "refunded": "0.00", - "date": "2019-12-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 773, - "invoices": [ - { - "invoice_id": 1477, - "amount": "9.14", - "refunded": "0.00" - } - ], - "invoice_id": 1477, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.14", - "applied": "9.14", - "refunded": "0.00", - "date": "2020-05-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 774, - "invoices": [ - { - "invoice_id": 1478, - "amount": "13.87", - "refunded": "0.00" - } - ], - "invoice_id": 1478, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.87", - "applied": "13.87", - "refunded": "0.00", - "date": "2020-01-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 775, - "invoices": [ - { - "invoice_id": 1479, - "amount": "2.22", - "refunded": "0.00" - } - ], - "invoice_id": 1479, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.22", - "applied": "2.22", - "refunded": "0.00", - "date": "2019-12-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 776, - "invoices": [ - { - "invoice_id": 1480, - "amount": "14.07", - "refunded": "0.00" - } - ], - "invoice_id": 1480, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.07", - "applied": "14.07", - "refunded": "0.00", - "date": "2020-04-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 777, - "invoices": [ - { - "invoice_id": 1481, - "amount": "0.93", - "refunded": "0.00" - } - ], - "invoice_id": 1481, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.93", - "applied": "0.93", - "refunded": "0.00", - "date": "2020-03-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 778, - "invoices": [ - { - "invoice_id": 1482, - "amount": "33.50", - "refunded": "0.00" - } - ], - "invoice_id": 1482, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.50", - "applied": "33.50", - "refunded": "0.00", - "date": "2020-05-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 779, - "invoices": [ - { - "invoice_id": 1483, - "amount": "19.97", - "refunded": "0.00" - } - ], - "invoice_id": 1483, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.97", - "applied": "19.97", - "refunded": "0.00", - "date": "2020-04-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 780, - "invoices": [ - { - "invoice_id": 1484, - "amount": "13.04", - "refunded": "0.00" - } - ], - "invoice_id": 1484, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.04", - "applied": "13.04", - "refunded": "0.00", - "date": "2020-06-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 781, - "invoices": [ - { - "invoice_id": 1485, - "amount": "7.96", - "refunded": "0.00" - } - ], - "invoice_id": 1485, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.96", - "applied": "7.96", - "refunded": "0.00", - "date": "2020-05-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 782, - "invoices": [ - { - "invoice_id": 1486, - "amount": "5.47", - "refunded": "0.00" - } - ], - "invoice_id": 1486, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.47", - "applied": "5.47", - "refunded": "0.00", - "date": "2020-02-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 783, - "invoices": [ - { - "invoice_id": 1487, - "amount": "0.21", - "refunded": "0.00" - } - ], - "invoice_id": 1487, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.21", - "applied": "0.21", - "refunded": "0.00", - "date": "2020-03-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 784, - "invoices": [ - { - "invoice_id": 1488, - "amount": "32.00", - "refunded": "0.00" - } - ], - "invoice_id": 1488, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "32.00", - "applied": "32.00", - "refunded": "0.00", - "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 785, - "invoices": [ - { - "invoice_id": 1489, - "amount": "10.01", - "refunded": "0.00" - } - ], - "invoice_id": 1489, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.01", - "applied": "10.01", - "refunded": "0.00", - "date": "2020-06-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 786, - "invoices": [ - { - "invoice_id": 1490, - "amount": "3.08", - "refunded": "0.00" - } - ], - "invoice_id": 1490, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.08", - "applied": "3.08", - "refunded": "0.00", - "date": "2020-04-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 787, - "invoices": [ - { - "invoice_id": 1491, - "amount": "26.55", - "refunded": "0.00" - } - ], - "invoice_id": 1491, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.55", - "applied": "26.55", - "refunded": "0.00", - "date": "2020-06-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 788, - "invoices": [ - { - "invoice_id": 1492, - "amount": "28.12", - "refunded": "0.00" - } - ], - "invoice_id": 1492, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "28.12", - "applied": "28.12", - "refunded": "0.00", - "date": "2020-04-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 789, - "invoices": [ - { - "invoice_id": 1493, - "amount": "13.82", - "refunded": "0.00" - } - ], - "invoice_id": 1493, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.82", - "applied": "13.82", - "refunded": "0.00", - "date": "2020-06-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 790, - "invoices": [ - { - "invoice_id": 1494, - "amount": "21.71", - "refunded": "0.00" - } - ], - "invoice_id": 1494, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.71", - "applied": "21.71", - "refunded": "0.00", - "date": "2020-04-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 791, - "invoices": [ - { - "invoice_id": 1495, - "amount": "37.51", - "refunded": "0.00" - } - ], - "invoice_id": 1495, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "37.51", - "applied": "37.51", - "refunded": "0.00", - "date": "2020-03-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 792, - "invoices": [ - { - "invoice_id": 1496, - "amount": "3.64", - "refunded": "0.00" - } - ], - "invoice_id": 1496, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.64", - "applied": "3.64", - "refunded": "0.00", - "date": "2020-03-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 793, - "invoices": [ - { - "invoice_id": 1497, - "amount": "1.22", - "refunded": "0.00" - } - ], - "invoice_id": 1497, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.22", - "applied": "1.22", - "refunded": "0.00", - "date": "2020-03-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 794, - "invoices": [ - { - "invoice_id": 1498, - "amount": "5.89", - "refunded": "0.00" - } - ], - "invoice_id": 1498, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.89", - "applied": "5.89", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 795, - "invoices": [ - { - "invoice_id": 1499, - "amount": "22.05", - "refunded": "0.00" - } - ], - "invoice_id": 1499, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.05", - "applied": "22.05", - "refunded": "0.00", - "date": "2020-04-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 796, - "invoices": [ - { - "invoice_id": 1500, - "amount": "3.08", - "refunded": "0.00" - } - ], - "invoice_id": 1500, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.08", - "applied": "3.08", - "refunded": "0.00", - "date": "2020-03-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 797, - "invoices": [ - { - "invoice_id": 1501, - "amount": "52.55", - "refunded": "0.00" - } - ], - "invoice_id": 1501, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "52.55", - "applied": "52.55", - "refunded": "0.00", - "date": "2019-12-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 798, - "invoices": [ - { - "invoice_id": 1502, - "amount": "4.96", - "refunded": "0.00" - } - ], - "invoice_id": 1502, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.96", - "applied": "4.96", - "refunded": "0.00", - "date": "2020-02-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 799, - "invoices": [ - { - "invoice_id": 1503, - "amount": "9.44", - "refunded": "0.00" - } - ], - "invoice_id": 1503, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.44", - "applied": "9.44", - "refunded": "0.00", - "date": "2020-03-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 800, - "invoices": [ - { - "invoice_id": 1504, - "amount": "14.52", - "refunded": "0.00" - } - ], - "invoice_id": 1504, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.52", - "applied": "14.52", - "refunded": "0.00", - "date": "2020-06-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 801, - "invoices": [ - { - "invoice_id": 1505, - "amount": "23.08", - "refunded": "0.00" - } - ], - "invoice_id": 1505, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.08", - "applied": "23.08", - "refunded": "0.00", - "date": "2020-03-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 802, - "invoices": [ - { - "invoice_id": 1506, - "amount": "17.45", - "refunded": "0.00" - } - ], - "invoice_id": 1506, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.45", - "applied": "17.45", - "refunded": "0.00", - "date": "2020-05-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 803, - "invoices": [ - { - "invoice_id": 1507, - "amount": "1.91", - "refunded": "0.00" - } - ], - "invoice_id": 1507, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.91", - "applied": "1.91", - "refunded": "0.00", - "date": "2020-03-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 804, - "invoices": [ - { - "invoice_id": 1508, - "amount": "2.77", - "refunded": "0.00" - } - ], - "invoice_id": 1508, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.77", - "applied": "2.77", - "refunded": "0.00", - "date": "2019-12-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 805, - "invoices": [ - { - "invoice_id": 1509, - "amount": "2.50", - "refunded": "0.00" - } - ], - "invoice_id": 1509, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.50", - "applied": "2.50", - "refunded": "0.00", - "date": "2020-01-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 806, - "invoices": [ - { - "invoice_id": 1510, - "amount": "0.60", - "refunded": "0.00" - } - ], - "invoice_id": 1510, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.60", - "applied": "0.60", - "refunded": "0.00", - "date": "2020-04-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 807, - "invoices": [ - { - "invoice_id": 1511, - "amount": "45.54", - "refunded": "0.00" - } - ], - "invoice_id": 1511, - "company_id": 1, - "client_id": 20, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "45.54", - "applied": "45.54", - "refunded": "0.00", - "date": "2020-02-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 808, - "invoices": [ - { - "invoice_id": 1612, - "amount": "17.78", - "refunded": "0.00" - } - ], - "invoice_id": 1612, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.78", - "applied": "17.78", - "refunded": "0.00", - "date": "2020-05-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 809, - "invoices": [ - { - "invoice_id": 1613, - "amount": "4.67", - "refunded": "0.00" - } - ], - "invoice_id": 1613, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.67", - "applied": "4.67", - "refunded": "0.00", - "date": "2019-12-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 810, - "invoices": [ - { - "invoice_id": 1614, - "amount": "18.82", - "refunded": "0.00" - } - ], - "invoice_id": 1614, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.82", - "applied": "18.82", - "refunded": "0.00", - "date": "2020-05-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 811, - "invoices": [ - { - "invoice_id": 1615, - "amount": "11.16", - "refunded": "0.00" - } - ], - "invoice_id": 1615, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.16", - "applied": "11.16", - "refunded": "0.00", - "date": "2020-03-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 812, - "invoices": [ - { - "invoice_id": 1616, - "amount": "22.40", - "refunded": "0.00" - } - ], - "invoice_id": 1616, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.40", - "applied": "22.40", - "refunded": "0.00", - "date": "2019-12-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 813, - "invoices": [ - { - "invoice_id": 1617, - "amount": "4.61", - "refunded": "0.00" - } - ], - "invoice_id": 1617, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.61", - "applied": "4.61", - "refunded": "0.00", - "date": "2020-01-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 814, - "invoices": [ - { - "invoice_id": 1618, - "amount": "10.28", - "refunded": "0.00" - } - ], - "invoice_id": 1618, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.28", - "applied": "10.28", - "refunded": "0.00", - "date": "2020-01-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 815, - "invoices": [ - { - "invoice_id": 1619, - "amount": "40.57", - "refunded": "0.00" - } - ], - "invoice_id": 1619, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "40.57", - "applied": "40.57", - "refunded": "0.00", - "date": "2020-03-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 816, - "invoices": [ - { - "invoice_id": 1620, - "amount": "3.90", - "refunded": "0.00" - } - ], - "invoice_id": 1620, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.90", - "applied": "3.90", - "refunded": "0.00", - "date": "2020-03-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 817, - "invoices": [ - { - "invoice_id": 1621, - "amount": "15.15", - "refunded": "0.00" - } - ], - "invoice_id": 1621, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.15", - "applied": "15.15", - "refunded": "0.00", - "date": "2020-01-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 818, - "invoices": [ - { - "invoice_id": 1622, - "amount": "15.57", - "refunded": "0.00" - } - ], - "invoice_id": 1622, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.57", - "applied": "15.57", - "refunded": "0.00", - "date": "2020-02-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 819, - "invoices": [ - { - "invoice_id": 1623, - "amount": "31.91", - "refunded": "0.00" - } - ], - "invoice_id": 1623, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.91", - "applied": "31.91", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 820, - "invoices": [ - { - "invoice_id": 1624, - "amount": "67.43", - "refunded": "0.00" - } - ], - "invoice_id": 1624, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "67.43", - "applied": "67.43", - "refunded": "0.00", - "date": "2020-03-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 821, - "invoices": [ - { - "invoice_id": 1625, - "amount": "0.96", - "refunded": "0.00" - } - ], - "invoice_id": 1625, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.96", - "applied": "0.96", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 822, - "invoices": [ - { - "invoice_id": 1626, - "amount": "26.06", - "refunded": "0.00" - } - ], - "invoice_id": 1626, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.06", - "applied": "26.06", - "refunded": "0.00", - "date": "2020-06-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 823, - "invoices": [ - { - "invoice_id": 1627, - "amount": "0.71", - "refunded": "0.00" - } - ], - "invoice_id": 1627, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.71", - "applied": "0.71", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 824, - "invoices": [ - { - "invoice_id": 1628, - "amount": "47.44", - "refunded": "0.00" - } - ], - "invoice_id": 1628, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "47.44", - "applied": "47.44", - "refunded": "0.00", - "date": "2020-01-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 825, - "invoices": [ - { - "invoice_id": 1629, - "amount": "0.16", - "refunded": "0.00" - } - ], - "invoice_id": 1629, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.16", - "applied": "0.16", - "refunded": "0.00", - "date": "2020-01-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 826, - "invoices": [ - { - "invoice_id": 1630, - "amount": "63.33", - "refunded": "0.00" - } - ], - "invoice_id": 1630, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "63.33", - "applied": "63.33", - "refunded": "0.00", - "date": "2019-12-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 827, - "invoices": [ - { - "invoice_id": 1631, - "amount": "33.67", - "refunded": "0.00" - } - ], - "invoice_id": 1631, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.67", - "applied": "33.67", - "refunded": "0.00", - "date": "2020-01-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 828, - "invoices": [ - { - "invoice_id": 1632, - "amount": "6.19", - "refunded": "0.00" - } - ], - "invoice_id": 1632, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.19", - "applied": "6.19", - "refunded": "0.00", - "date": "2020-06-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 829, - "invoices": [ - { - "invoice_id": 1633, - "amount": "31.22", - "refunded": "0.00" - } - ], - "invoice_id": 1633, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.22", - "applied": "31.22", - "refunded": "0.00", - "date": "2019-12-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 830, - "invoices": [ - { - "invoice_id": 1634, - "amount": "7.01", - "refunded": "0.00" - } - ], - "invoice_id": 1634, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.01", - "applied": "7.01", - "refunded": "0.00", - "date": "2020-01-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 831, - "invoices": [ - { - "invoice_id": 1635, - "amount": "8.36", - "refunded": "0.00" - } - ], - "invoice_id": 1635, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.36", - "applied": "8.36", - "refunded": "0.00", - "date": "2020-06-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 832, - "invoices": [ - { - "invoice_id": 1636, - "amount": "73.70", - "refunded": "0.00" - } - ], - "invoice_id": 1636, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "73.70", - "applied": "73.70", - "refunded": "0.00", - "date": "2019-12-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 833, - "invoices": [ - { - "invoice_id": 1637, - "amount": "5.72", - "refunded": "0.00" - } - ], - "invoice_id": 1637, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.72", - "applied": "5.72", - "refunded": "0.00", - "date": "2020-04-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 834, - "invoices": [ - { - "invoice_id": 1638, - "amount": "27.95", - "refunded": "0.00" - } - ], - "invoice_id": 1638, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.95", - "applied": "27.95", - "refunded": "0.00", - "date": "2020-02-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 835, - "invoices": [ - { - "invoice_id": 1639, - "amount": "51.80", - "refunded": "0.00" - } - ], - "invoice_id": 1639, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "51.80", - "applied": "51.80", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 836, - "invoices": [ - { - "invoice_id": 1640, - "amount": "26.43", - "refunded": "0.00" - } - ], - "invoice_id": 1640, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.43", - "applied": "26.43", - "refunded": "0.00", - "date": "2020-03-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 837, - "invoices": [ - { - "invoice_id": 1641, - "amount": "18.11", - "refunded": "0.00" - } - ], - "invoice_id": 1641, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.11", - "applied": "18.11", - "refunded": "0.00", - "date": "2020-06-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 838, - "invoices": [ - { - "invoice_id": 1642, - "amount": "5.45", - "refunded": "0.00" - } - ], - "invoice_id": 1642, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.45", - "applied": "5.45", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 839, - "invoices": [ - { - "invoice_id": 1643, - "amount": "1.77", - "refunded": "0.00" - } - ], - "invoice_id": 1643, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.77", - "applied": "1.77", - "refunded": "0.00", - "date": "2020-01-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 840, - "invoices": [ - { - "invoice_id": 1644, - "amount": "7.24", - "refunded": "0.00" - } - ], - "invoice_id": 1644, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.24", - "applied": "7.24", - "refunded": "0.00", - "date": "2020-04-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 841, - "invoices": [ - { - "invoice_id": 1645, - "amount": "10.95", - "refunded": "0.00" - } - ], - "invoice_id": 1645, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.95", - "applied": "10.95", - "refunded": "0.00", - "date": "2020-05-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 842, - "invoices": [ - { - "invoice_id": 1646, - "amount": "2.69", - "refunded": "0.00" - } - ], - "invoice_id": 1646, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.69", - "applied": "2.69", - "refunded": "0.00", - "date": "2020-06-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 843, - "invoices": [ - { - "invoice_id": 1647, - "amount": "16.30", - "refunded": "0.00" - } - ], - "invoice_id": 1647, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.30", - "applied": "16.30", - "refunded": "0.00", - "date": "2020-05-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 844, - "invoices": [ - { - "invoice_id": 1648, - "amount": "5.58", - "refunded": "0.00" - } - ], - "invoice_id": 1648, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.58", - "applied": "5.58", - "refunded": "0.00", - "date": "2020-05-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 845, - "invoices": [ - { - "invoice_id": 1649, - "amount": "2.94", - "refunded": "0.00" - } - ], - "invoice_id": 1649, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.94", - "applied": "2.94", - "refunded": "0.00", - "date": "2020-04-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 846, - "invoices": [ - { - "invoice_id": 1650, - "amount": "1.67", - "refunded": "0.00" - } - ], - "invoice_id": 1650, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.67", - "applied": "1.67", - "refunded": "0.00", - "date": "2020-03-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 847, - "invoices": [ - { - "invoice_id": 1651, - "amount": "8.65", - "refunded": "0.00" - } - ], - "invoice_id": 1651, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.65", - "applied": "8.65", - "refunded": "0.00", - "date": "2020-05-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 848, - "invoices": [ - { - "invoice_id": 1652, - "amount": "25.45", - "refunded": "0.00" - } - ], - "invoice_id": 1652, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "25.45", - "applied": "25.45", - "refunded": "0.00", - "date": "2020-04-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 849, - "invoices": [ - { - "invoice_id": 1653, - "amount": "2.99", - "refunded": "0.00" - } - ], - "invoice_id": 1653, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.99", - "applied": "2.99", - "refunded": "0.00", - "date": "2020-02-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 850, - "invoices": [ - { - "invoice_id": 1654, - "amount": "13.37", - "refunded": "0.00" - } - ], - "invoice_id": 1654, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.37", - "applied": "13.37", - "refunded": "0.00", - "date": "2020-06-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 851, - "invoices": [ - { - "invoice_id": 1655, - "amount": "7.35", - "refunded": "0.00" - } - ], - "invoice_id": 1655, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.35", - "applied": "7.35", - "refunded": "0.00", - "date": "2020-04-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 852, - "invoices": [ - { - "invoice_id": 1656, - "amount": "11.74", - "refunded": "0.00" - } - ], - "invoice_id": 1656, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.74", - "applied": "11.74", - "refunded": "0.00", - "date": "2020-02-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 853, - "invoices": [ - { - "invoice_id": 1657, - "amount": "2.63", - "refunded": "0.00" - } - ], - "invoice_id": 1657, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.63", - "applied": "2.63", - "refunded": "0.00", - "date": "2019-12-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 854, - "invoices": [ - { - "invoice_id": 1658, - "amount": "2.14", - "refunded": "0.00" - } - ], - "invoice_id": 1658, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.14", - "applied": "2.14", - "refunded": "0.00", - "date": "2020-04-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 855, - "invoices": [ - { - "invoice_id": 1659, - "amount": "0.40", - "refunded": "0.00" - } - ], - "invoice_id": 1659, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.40", - "applied": "0.40", - "refunded": "0.00", - "date": "2020-03-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 856, - "invoices": [ - { - "invoice_id": 1660, - "amount": "9.61", - "refunded": "0.00" - } - ], - "invoice_id": 1660, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.61", - "applied": "9.61", - "refunded": "0.00", - "date": "2020-04-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 857, - "invoices": [ - { - "invoice_id": 1661, - "amount": "42.53", - "refunded": "0.00" - } - ], - "invoice_id": 1661, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "42.53", - "applied": "42.53", - "refunded": "0.00", - "date": "2020-03-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 858, - "invoices": [ - { - "invoice_id": 1662, - "amount": "4.13", - "refunded": "0.00" - } - ], - "invoice_id": 1662, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.13", - "applied": "4.13", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 859, - "invoices": [ - { - "invoice_id": 1663, - "amount": "11.39", - "refunded": "0.00" - } - ], - "invoice_id": 1663, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.39", - "applied": "11.39", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 860, - "invoices": [ - { - "invoice_id": 1664, - "amount": "2.61", - "refunded": "0.00" - } - ], - "invoice_id": 1664, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.61", - "applied": "2.61", - "refunded": "0.00", - "date": "2020-05-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 861, - "invoices": [ - { - "invoice_id": 1665, - "amount": "20.84", - "refunded": "0.00" - } - ], - "invoice_id": 1665, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.84", - "applied": "20.84", - "refunded": "0.00", - "date": "2019-12-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 862, - "invoices": [ - { - "invoice_id": 1666, - "amount": "0.12", - "refunded": "0.00" - } - ], - "invoice_id": 1666, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.12", - "applied": "0.12", - "refunded": "0.00", - "date": "2020-04-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 863, - "invoices": [ - { - "invoice_id": 1667, - "amount": "1.81", - "refunded": "0.00" - } - ], - "invoice_id": 1667, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.81", - "applied": "1.81", - "refunded": "0.00", - "date": "2020-03-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 864, - "invoices": [ - { - "invoice_id": 1668, - "amount": "3.37", - "refunded": "0.00" - } - ], - "invoice_id": 1668, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.37", - "applied": "3.37", - "refunded": "0.00", - "date": "2020-06-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 865, - "invoices": [ - { - "invoice_id": 1669, - "amount": "34.03", - "refunded": "0.00" - } - ], - "invoice_id": 1669, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.03", - "applied": "34.03", - "refunded": "0.00", - "date": "2019-12-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 866, - "invoices": [ - { - "invoice_id": 1670, - "amount": "14.93", - "refunded": "0.00" - } - ], - "invoice_id": 1670, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.93", - "applied": "14.93", - "refunded": "0.00", - "date": "2020-01-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 867, - "invoices": [ - { - "invoice_id": 1671, - "amount": "3.11", - "refunded": "0.00" - } - ], - "invoice_id": 1671, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.11", - "applied": "3.11", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 868, - "invoices": [ - { - "invoice_id": 1672, - "amount": "8.80", - "refunded": "0.00" - } - ], - "invoice_id": 1672, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.80", - "applied": "8.80", - "refunded": "0.00", - "date": "2020-03-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 869, - "invoices": [ - { - "invoice_id": 1673, - "amount": "0.68", - "refunded": "0.00" - } - ], - "invoice_id": 1673, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.68", - "applied": "0.68", - "refunded": "0.00", - "date": "2020-03-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 870, - "invoices": [ - { - "invoice_id": 1674, - "amount": "2.39", - "refunded": "0.00" - } - ], - "invoice_id": 1674, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.39", - "applied": "2.39", - "refunded": "0.00", - "date": "2019-12-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 871, - "invoices": [ - { - "invoice_id": 1675, - "amount": "26.18", - "refunded": "0.00" - } - ], - "invoice_id": 1675, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.18", - "applied": "26.18", - "refunded": "0.00", - "date": "2019-12-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 872, - "invoices": [ - { - "invoice_id": 1676, - "amount": "45.42", - "refunded": "0.00" - } - ], - "invoice_id": 1676, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "45.42", - "applied": "45.42", - "refunded": "0.00", - "date": "2020-01-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 873, - "invoices": [ - { - "invoice_id": 1677, - "amount": "11.38", - "refunded": "0.00" - } - ], - "invoice_id": 1677, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.38", - "applied": "11.38", - "refunded": "0.00", - "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 874, - "invoices": [ - { - "invoice_id": 1678, - "amount": "1.30", - "refunded": "0.00" - } - ], - "invoice_id": 1678, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.30", - "applied": "1.30", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 875, - "invoices": [ - { - "invoice_id": 1679, - "amount": "18.22", - "refunded": "0.00" - } - ], - "invoice_id": 1679, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.22", - "applied": "18.22", - "refunded": "0.00", - "date": "2020-05-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 876, - "invoices": [ - { - "invoice_id": 1680, - "amount": "8.27", - "refunded": "0.00" - } - ], - "invoice_id": 1680, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.27", - "applied": "8.27", - "refunded": "0.00", - "date": "2020-04-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 877, - "invoices": [ - { - "invoice_id": 1681, - "amount": "8.78", - "refunded": "0.00" - } - ], - "invoice_id": 1681, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.78", - "applied": "8.78", - "refunded": "0.00", - "date": "2020-02-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 878, - "invoices": [ - { - "invoice_id": 1682, - "amount": "20.32", - "refunded": "0.00" - } - ], - "invoice_id": 1682, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.32", - "applied": "20.32", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 879, - "invoices": [ - { - "invoice_id": 1683, - "amount": "1.33", - "refunded": "0.00" - } - ], - "invoice_id": 1683, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.33", - "applied": "1.33", - "refunded": "0.00", - "date": "2020-02-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 880, - "invoices": [ - { - "invoice_id": 1684, - "amount": "0.71", - "refunded": "0.00" - } - ], - "invoice_id": 1684, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.71", - "applied": "0.71", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 881, - "invoices": [ - { - "invoice_id": 1685, - "amount": "25.50", - "refunded": "0.00" - } - ], - "invoice_id": 1685, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "25.50", - "applied": "25.50", - "refunded": "0.00", - "date": "2020-01-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 882, - "invoices": [ - { - "invoice_id": 1686, - "amount": "26.54", - "refunded": "0.00" - } - ], - "invoice_id": 1686, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.54", - "applied": "26.54", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 883, - "invoices": [ - { - "invoice_id": 1687, - "amount": "0.62", - "refunded": "0.00" - } - ], - "invoice_id": 1687, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.62", - "applied": "0.62", - "refunded": "0.00", - "date": "2020-04-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 884, - "invoices": [ - { - "invoice_id": 1688, - "amount": "2.20", - "refunded": "0.00" - } - ], - "invoice_id": 1688, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.20", - "applied": "2.20", - "refunded": "0.00", - "date": "2020-06-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 885, - "invoices": [ - { - "invoice_id": 1689, - "amount": "55.79", - "refunded": "0.00" - } - ], - "invoice_id": 1689, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "55.79", - "applied": "55.79", - "refunded": "0.00", - "date": "2019-12-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 886, - "invoices": [ - { - "invoice_id": 1690, - "amount": "6.59", - "refunded": "0.00" - } - ], - "invoice_id": 1690, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.59", - "applied": "6.59", - "refunded": "0.00", - "date": "2019-12-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 887, - "invoices": [ - { - "invoice_id": 1691, - "amount": "9.08", - "refunded": "0.00" - } - ], - "invoice_id": 1691, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.08", - "applied": "9.08", - "refunded": "0.00", - "date": "2020-06-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 888, - "invoices": [ - { - "invoice_id": 1692, - "amount": "0.86", - "refunded": "0.00" - } - ], - "invoice_id": 1692, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.86", - "applied": "0.86", - "refunded": "0.00", - "date": "2020-03-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 889, - "invoices": [ - { - "invoice_id": 1693, - "amount": "0.00", - "refunded": "0.00" - } - ], - "invoice_id": 1693, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.00", - "applied": "0.00", - "refunded": "0.00", - "date": "2020-04-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 890, - "invoices": [ - { - "invoice_id": 1694, - "amount": "2.67", - "refunded": "0.00" - } - ], - "invoice_id": 1694, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.67", - "applied": "2.67", - "refunded": "0.00", - "date": "2020-02-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 891, - "invoices": [ - { - "invoice_id": 1695, - "amount": "5.61", - "refunded": "0.00" - } - ], - "invoice_id": 1695, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.61", - "applied": "5.61", - "refunded": "0.00", - "date": "2020-02-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 892, - "invoices": [ - { - "invoice_id": 1696, - "amount": "66.25", - "refunded": "0.00" - } - ], - "invoice_id": 1696, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "66.25", - "applied": "66.25", - "refunded": "0.00", - "date": "2020-01-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 893, - "invoices": [ - { - "invoice_id": 1697, - "amount": "13.15", - "refunded": "0.00" - } - ], - "invoice_id": 1697, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.15", - "applied": "13.15", - "refunded": "0.00", - "date": "2020-03-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 894, - "invoices": [ - { - "invoice_id": 1698, - "amount": "1.68", - "refunded": "0.00" - } - ], - "invoice_id": 1698, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.68", - "applied": "1.68", - "refunded": "0.00", - "date": "2020-03-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 895, - "invoices": [ - { - "invoice_id": 1699, - "amount": "1.39", - "refunded": "0.00" - } - ], - "invoice_id": 1699, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.39", - "applied": "1.39", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 896, - "invoices": [ - { - "invoice_id": 1700, - "amount": "8.76", - "refunded": "0.00" - } - ], - "invoice_id": 1700, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.76", - "applied": "8.76", - "refunded": "0.00", - "date": "2020-05-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 897, - "invoices": [ - { - "invoice_id": 1701, - "amount": "7.82", - "refunded": "0.00" - } - ], - "invoice_id": 1701, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.82", - "applied": "7.82", - "refunded": "0.00", - "date": "2020-05-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 898, - "invoices": [ - { - "invoice_id": 1702, - "amount": "4.01", - "refunded": "0.00" - } - ], - "invoice_id": 1702, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.01", - "applied": "4.01", - "refunded": "0.00", - "date": "2020-04-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 899, - "invoices": [ - { - "invoice_id": 1703, - "amount": "39.77", - "refunded": "0.00" - } - ], - "invoice_id": 1703, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "39.77", - "applied": "39.77", - "refunded": "0.00", - "date": "2020-06-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 900, - "invoices": [ - { - "invoice_id": 1704, - "amount": "13.60", - "refunded": "0.00" - } - ], - "invoice_id": 1704, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.60", - "applied": "13.60", - "refunded": "0.00", - "date": "2020-03-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 901, - "invoices": [ - { - "invoice_id": 1705, - "amount": "23.29", - "refunded": "0.00" - } - ], - "invoice_id": 1705, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.29", - "applied": "23.29", - "refunded": "0.00", - "date": "2020-05-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 902, - "invoices": [ - { - "invoice_id": 1706, - "amount": "18.10", - "refunded": "0.00" - } - ], - "invoice_id": 1706, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.10", - "applied": "18.10", - "refunded": "0.00", - "date": "2020-03-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 903, - "invoices": [ - { - "invoice_id": 1707, - "amount": "7.17", - "refunded": "0.00" - } - ], - "invoice_id": 1707, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.17", - "applied": "7.17", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 904, - "invoices": [ - { - "invoice_id": 1708, - "amount": "27.63", - "refunded": "0.00" - } - ], - "invoice_id": 1708, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.63", - "applied": "27.63", - "refunded": "0.00", - "date": "2020-04-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 905, - "invoices": [ - { - "invoice_id": 1709, - "amount": "0.66", - "refunded": "0.00" - } - ], - "invoice_id": 1709, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.66", - "applied": "0.66", - "refunded": "0.00", - "date": "2020-03-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 906, - "invoices": [ - { - "invoice_id": 1710, - "amount": "9.82", - "refunded": "0.00" - } - ], - "invoice_id": 1710, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.82", - "applied": "9.82", - "refunded": "0.00", - "date": "2020-01-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 907, - "invoices": [ - { - "invoice_id": 1711, - "amount": "9.96", - "refunded": "0.00" - } - ], - "invoice_id": 1711, - "company_id": 1, - "client_id": 21, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.96", - "applied": "9.96", - "refunded": "0.00", - "date": "2020-01-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 908, - "invoices": [ - { - "invoice_id": 1812, - "amount": "0.24", - "refunded": "0.00" - } - ], - "invoice_id": 1812, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.24", - "applied": "0.24", - "refunded": "0.00", - "date": "2020-04-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 909, - "invoices": [ - { - "invoice_id": 1813, - "amount": "29.84", - "refunded": "0.00" - } - ], - "invoice_id": 1813, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "29.84", - "applied": "29.84", - "refunded": "0.00", - "date": "2020-06-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 910, - "invoices": [ - { - "invoice_id": 1814, - "amount": "5.51", - "refunded": "0.00" - } - ], - "invoice_id": 1814, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.51", - "applied": "5.51", - "refunded": "0.00", - "date": "2020-06-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 911, - "invoices": [ - { - "invoice_id": 1815, - "amount": "1.95", - "refunded": "0.00" - } - ], - "invoice_id": 1815, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.95", - "applied": "1.95", - "refunded": "0.00", - "date": "2020-02-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 912, - "invoices": [ - { - "invoice_id": 1816, - "amount": "8.04", - "refunded": "0.00" - } - ], - "invoice_id": 1816, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.04", - "applied": "8.04", - "refunded": "0.00", - "date": "2020-01-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 913, - "invoices": [ - { - "invoice_id": 1817, - "amount": "33.91", - "refunded": "0.00" - } - ], - "invoice_id": 1817, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.91", - "applied": "33.91", - "refunded": "0.00", - "date": "2020-01-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 914, - "invoices": [ - { - "invoice_id": 1818, - "amount": "0.87", - "refunded": "0.00" - } - ], - "invoice_id": 1818, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.87", - "applied": "0.87", - "refunded": "0.00", - "date": "2020-02-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 915, - "invoices": [ - { - "invoice_id": 1819, - "amount": "1.68", - "refunded": "0.00" - } - ], - "invoice_id": 1819, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.68", - "applied": "1.68", - "refunded": "0.00", - "date": "2020-04-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 916, - "invoices": [ - { - "invoice_id": 1820, - "amount": "30.44", - "refunded": "0.00" - } - ], - "invoice_id": 1820, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "30.44", - "applied": "30.44", - "refunded": "0.00", - "date": "2020-04-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 917, - "invoices": [ - { - "invoice_id": 1821, - "amount": "14.85", - "refunded": "0.00" - } - ], - "invoice_id": 1821, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.85", - "applied": "14.85", - "refunded": "0.00", - "date": "2020-06-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 918, - "invoices": [ - { - "invoice_id": 1822, - "amount": "26.74", - "refunded": "0.00" - } - ], - "invoice_id": 1822, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.74", - "applied": "26.74", - "refunded": "0.00", - "date": "2020-04-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 919, - "invoices": [ - { - "invoice_id": 1823, - "amount": "8.08", - "refunded": "0.00" - } - ], - "invoice_id": 1823, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.08", - "applied": "8.08", - "refunded": "0.00", - "date": "2020-05-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 920, - "invoices": [ - { - "invoice_id": 1824, - "amount": "39.26", - "refunded": "0.00" - } - ], - "invoice_id": 1824, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "39.26", - "applied": "39.26", - "refunded": "0.00", - "date": "2020-01-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 921, - "invoices": [ - { - "invoice_id": 1825, - "amount": "5.46", - "refunded": "0.00" - } - ], - "invoice_id": 1825, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.46", - "applied": "5.46", - "refunded": "0.00", - "date": "2020-05-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 922, - "invoices": [ - { - "invoice_id": 1826, - "amount": "8.69", - "refunded": "0.00" - } - ], - "invoice_id": 1826, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.69", - "applied": "8.69", - "refunded": "0.00", - "date": "2020-02-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 923, - "invoices": [ - { - "invoice_id": 1827, - "amount": "76.03", - "refunded": "0.00" - } - ], - "invoice_id": 1827, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "76.03", - "applied": "76.03", - "refunded": "0.00", - "date": "2020-03-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 924, - "invoices": [ - { - "invoice_id": 1828, - "amount": "65.13", - "refunded": "0.00" - } - ], - "invoice_id": 1828, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "65.13", - "applied": "65.13", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 925, - "invoices": [ - { - "invoice_id": 1829, - "amount": "26.20", - "refunded": "0.00" - } - ], - "invoice_id": 1829, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.20", - "applied": "26.20", - "refunded": "0.00", - "date": "2020-04-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 926, - "invoices": [ - { - "invoice_id": 1830, - "amount": "29.61", - "refunded": "0.00" - } - ], - "invoice_id": 1830, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "29.61", - "applied": "29.61", - "refunded": "0.00", - "date": "2019-12-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 927, - "invoices": [ - { - "invoice_id": 1831, - "amount": "6.64", - "refunded": "0.00" - } - ], - "invoice_id": 1831, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.64", - "applied": "6.64", - "refunded": "0.00", - "date": "2020-04-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 928, - "invoices": [ - { - "invoice_id": 1832, - "amount": "38.63", - "refunded": "0.00" - } - ], - "invoice_id": 1832, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "38.63", - "applied": "38.63", - "refunded": "0.00", - "date": "2020-04-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 929, - "invoices": [ - { - "invoice_id": 1833, - "amount": "31.89", - "refunded": "0.00" - } - ], - "invoice_id": 1833, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.89", - "applied": "31.89", - "refunded": "0.00", - "date": "2020-06-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 930, - "invoices": [ - { - "invoice_id": 1834, - "amount": "1.78", - "refunded": "0.00" - } - ], - "invoice_id": 1834, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.78", - "applied": "1.78", - "refunded": "0.00", - "date": "2019-12-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 931, - "invoices": [ - { - "invoice_id": 1835, - "amount": "61.26", - "refunded": "0.00" - } - ], - "invoice_id": 1835, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "61.26", - "applied": "61.26", - "refunded": "0.00", - "date": "2020-04-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 932, - "invoices": [ - { - "invoice_id": 1836, - "amount": "67.74", - "refunded": "0.00" - } - ], - "invoice_id": 1836, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "67.74", - "applied": "67.74", - "refunded": "0.00", - "date": "2019-12-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 933, - "invoices": [ - { - "invoice_id": 1837, - "amount": "11.32", - "refunded": "0.00" - } - ], - "invoice_id": 1837, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.32", - "applied": "11.32", - "refunded": "0.00", - "date": "2020-06-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 934, - "invoices": [ - { - "invoice_id": 1838, - "amount": "11.63", - "refunded": "0.00" - } - ], - "invoice_id": 1838, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.63", - "applied": "11.63", - "refunded": "0.00", - "date": "2020-06-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 935, - "invoices": [ - { - "invoice_id": 1839, - "amount": "6.65", - "refunded": "0.00" - } - ], - "invoice_id": 1839, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.65", - "applied": "6.65", - "refunded": "0.00", - "date": "2020-03-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 936, - "invoices": [ - { - "invoice_id": 1840, - "amount": "0.25", - "refunded": "0.00" - } - ], - "invoice_id": 1840, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.25", - "applied": "0.25", - "refunded": "0.00", - "date": "2020-01-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 937, - "invoices": [ - { - "invoice_id": 1841, - "amount": "1.32", - "refunded": "0.00" - } - ], - "invoice_id": 1841, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.32", - "applied": "1.32", - "refunded": "0.00", - "date": "2020-02-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 938, - "invoices": [ - { - "invoice_id": 1842, - "amount": "5.00", - "refunded": "0.00" - } - ], - "invoice_id": 1842, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.00", - "applied": "5.00", - "refunded": "0.00", - "date": "2020-02-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 939, - "invoices": [ - { - "invoice_id": 1843, - "amount": "4.03", - "refunded": "0.00" - } - ], - "invoice_id": 1843, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.03", - "applied": "4.03", - "refunded": "0.00", - "date": "2019-12-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 940, - "invoices": [ - { - "invoice_id": 1844, - "amount": "9.77", - "refunded": "0.00" - } - ], - "invoice_id": 1844, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.77", - "applied": "9.77", - "refunded": "0.00", - "date": "2020-03-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 941, - "invoices": [ - { - "invoice_id": 1845, - "amount": "7.28", - "refunded": "0.00" - } - ], - "invoice_id": 1845, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.28", - "applied": "7.28", - "refunded": "0.00", - "date": "2020-01-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 942, - "invoices": [ - { - "invoice_id": 1846, - "amount": "37.60", - "refunded": "0.00" - } - ], - "invoice_id": 1846, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "37.60", - "applied": "37.60", - "refunded": "0.00", - "date": "2019-12-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 943, - "invoices": [ - { - "invoice_id": 1847, - "amount": "2.39", - "refunded": "0.00" - } - ], - "invoice_id": 1847, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.39", - "applied": "2.39", - "refunded": "0.00", - "date": "2019-12-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 944, - "invoices": [ - { - "invoice_id": 1848, - "amount": "16.41", - "refunded": "0.00" - } - ], - "invoice_id": 1848, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.41", - "applied": "16.41", - "refunded": "0.00", - "date": "2020-03-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 945, - "invoices": [ - { - "invoice_id": 1849, - "amount": "1.23", - "refunded": "0.00" - } - ], - "invoice_id": 1849, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.23", - "applied": "1.23", - "refunded": "0.00", - "date": "2020-05-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 946, - "invoices": [ - { - "invoice_id": 1850, - "amount": "31.79", - "refunded": "0.00" - } - ], - "invoice_id": 1850, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.79", - "applied": "31.79", - "refunded": "0.00", - "date": "2020-03-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 947, - "invoices": [ - { - "invoice_id": 1851, - "amount": "8.43", - "refunded": "0.00" - } - ], - "invoice_id": 1851, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.43", - "applied": "8.43", - "refunded": "0.00", - "date": "2020-05-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 948, - "invoices": [ - { - "invoice_id": 1852, - "amount": "8.84", - "refunded": "0.00" - } - ], - "invoice_id": 1852, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.84", - "applied": "8.84", - "refunded": "0.00", - "date": "2020-04-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 949, - "invoices": [ - { - "invoice_id": 1853, - "amount": "2.51", - "refunded": "0.00" - } - ], - "invoice_id": 1853, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.51", - "applied": "2.51", - "refunded": "0.00", - "date": "2020-04-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 950, - "invoices": [ - { - "invoice_id": 1854, - "amount": "2.96", - "refunded": "0.00" - } - ], - "invoice_id": 1854, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.96", - "applied": "2.96", - "refunded": "0.00", - "date": "2020-05-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 951, - "invoices": [ - { - "invoice_id": 1855, - "amount": "1.41", - "refunded": "0.00" - } - ], - "invoice_id": 1855, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.41", - "applied": "1.41", - "refunded": "0.00", - "date": "2019-12-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 952, - "invoices": [ - { - "invoice_id": 1856, - "amount": "36.91", - "refunded": "0.00" - } - ], - "invoice_id": 1856, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "36.91", - "applied": "36.91", - "refunded": "0.00", - "date": "2020-02-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 953, - "invoices": [ - { - "invoice_id": 1857, - "amount": "12.08", - "refunded": "0.00" - } - ], - "invoice_id": 1857, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.08", - "applied": "12.08", - "refunded": "0.00", - "date": "2020-02-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 954, - "invoices": [ - { - "invoice_id": 1858, - "amount": "34.64", - "refunded": "0.00" - } - ], - "invoice_id": 1858, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.64", - "applied": "34.64", - "refunded": "0.00", - "date": "2019-12-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 955, - "invoices": [ - { - "invoice_id": 1859, - "amount": "11.67", - "refunded": "0.00" - } - ], - "invoice_id": 1859, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.67", - "applied": "11.67", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 956, - "invoices": [ - { - "invoice_id": 1860, - "amount": "5.55", - "refunded": "0.00" - } - ], - "invoice_id": 1860, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.55", - "applied": "5.55", - "refunded": "0.00", - "date": "2020-01-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 957, - "invoices": [ - { - "invoice_id": 1861, - "amount": "7.40", - "refunded": "0.00" - } - ], - "invoice_id": 1861, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.40", - "applied": "7.40", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 958, - "invoices": [ - { - "invoice_id": 1862, - "amount": "34.94", - "refunded": "0.00" - } - ], - "invoice_id": 1862, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.94", - "applied": "34.94", - "refunded": "0.00", - "date": "2020-06-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 959, - "invoices": [ - { - "invoice_id": 1863, - "amount": "1.71", - "refunded": "0.00" - } - ], - "invoice_id": 1863, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, + "balance": "3.06", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10511, + "quantity": 1, + "cost": 3.06, + "product_key": "repellat", + "notes": "Quasi cum rerum animi laudantium sunt ad aliquid sit. Saepe qui eos ut vero cupiditate pariatur sint. Beatae minima delectus enim sint voluptatem doloremque. Voluptas ratione asperiores magnam. Sed alias sit ullam eum iure. Voluptates quia dolores id sunt.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10512, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0155", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-26", + "last_sent_date": null, + "due_date": "2020-06-16", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, "amount": "1.71", - "applied": "1.71", - "refunded": "0.00", - "date": "2020-06-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 960, - "invoices": [ - { - "invoice_id": 1864, - "amount": "24.52", - "refunded": "0.00" - } - ], - "invoice_id": 1864, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.52", - "applied": "24.52", - "refunded": "0.00", - "date": "2019-12-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 961, - "invoices": [ - { - "invoice_id": 1865, - "amount": "34.12", - "refunded": "0.00" - } - ], - "invoice_id": 1865, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.12", - "applied": "34.12", - "refunded": "0.00", - "date": "2020-01-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 962, - "invoices": [ - { - "invoice_id": 1866, - "amount": "2.66", - "refunded": "0.00" - } - ], - "invoice_id": 1866, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.66", - "applied": "2.66", - "refunded": "0.00", - "date": "2019-12-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 963, - "invoices": [ - { - "invoice_id": 1867, - "amount": "3.07", - "refunded": "0.00" - } - ], - "invoice_id": 1867, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.07", - "applied": "3.07", - "refunded": "0.00", - "date": "2019-12-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 964, - "invoices": [ - { - "invoice_id": 1868, - "amount": "1.59", - "refunded": "0.00" - } - ], - "invoice_id": 1868, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.59", - "applied": "1.59", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 965, - "invoices": [ - { - "invoice_id": 1869, - "amount": "26.06", - "refunded": "0.00" - } - ], - "invoice_id": 1869, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.06", - "applied": "26.06", - "refunded": "0.00", - "date": "2020-05-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 966, - "invoices": [ - { - "invoice_id": 1870, - "amount": "7.40", - "refunded": "0.00" - } - ], - "invoice_id": 1870, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.40", - "applied": "7.40", - "refunded": "0.00", - "date": "2020-05-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 967, - "invoices": [ - { - "invoice_id": 1871, - "amount": "28.15", - "refunded": "0.00" - } - ], - "invoice_id": 1871, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "28.15", - "applied": "28.15", - "refunded": "0.00", - "date": "2020-06-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 968, - "invoices": [ - { - "invoice_id": 1872, - "amount": "9.10", - "refunded": "0.00" - } - ], - "invoice_id": 1872, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.10", - "applied": "9.10", - "refunded": "0.00", - "date": "2020-04-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 969, - "invoices": [ - { - "invoice_id": 1873, - "amount": "8.39", - "refunded": "0.00" - } - ], - "invoice_id": 1873, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.39", - "applied": "8.39", - "refunded": "0.00", - "date": "2020-01-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 970, - "invoices": [ - { - "invoice_id": 1874, - "amount": "12.31", - "refunded": "0.00" - } - ], - "invoice_id": 1874, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.31", - "applied": "12.31", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 971, - "invoices": [ - { - "invoice_id": 1875, - "amount": "11.37", - "refunded": "0.00" - } - ], - "invoice_id": 1875, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.37", - "applied": "11.37", - "refunded": "0.00", - "date": "2020-03-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 972, - "invoices": [ - { - "invoice_id": 1876, - "amount": "13.02", - "refunded": "0.00" - } - ], - "invoice_id": 1876, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.02", - "applied": "13.02", - "refunded": "0.00", - "date": "2020-05-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 973, - "invoices": [ - { - "invoice_id": 1877, - "amount": "7.16", - "refunded": "0.00" - } - ], - "invoice_id": 1877, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.16", - "applied": "7.16", - "refunded": "0.00", - "date": "2020-01-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 974, - "invoices": [ - { - "invoice_id": 1878, - "amount": "38.23", - "refunded": "0.00" - } - ], - "invoice_id": 1878, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "38.23", - "applied": "38.23", - "refunded": "0.00", - "date": "2020-05-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 975, - "invoices": [ - { - "invoice_id": 1879, - "amount": "33.80", - "refunded": "0.00" - } - ], - "invoice_id": 1879, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.80", - "applied": "33.80", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 976, - "invoices": [ - { - "invoice_id": 1880, - "amount": "9.41", - "refunded": "0.00" - } - ], - "invoice_id": 1880, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.41", - "applied": "9.41", - "refunded": "0.00", - "date": "2019-12-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 977, - "invoices": [ - { - "invoice_id": 1881, - "amount": "17.47", - "refunded": "0.00" - } - ], - "invoice_id": 1881, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.47", - "applied": "17.47", - "refunded": "0.00", - "date": "2020-02-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 978, - "invoices": [ - { - "invoice_id": 1882, - "amount": "26.94", - "refunded": "0.00" - } - ], - "invoice_id": 1882, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.94", - "applied": "26.94", - "refunded": "0.00", - "date": "2020-05-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 979, - "invoices": [ - { - "invoice_id": 1883, - "amount": "49.09", - "refunded": "0.00" - } - ], - "invoice_id": 1883, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "49.09", - "applied": "49.09", - "refunded": "0.00", - "date": "2020-06-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 980, - "invoices": [ - { - "invoice_id": 1884, - "amount": "0.51", - "refunded": "0.00" - } - ], - "invoice_id": 1884, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.51", - "applied": "0.51", - "refunded": "0.00", - "date": "2020-01-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 981, - "invoices": [ - { - "invoice_id": 1885, - "amount": "0.73", - "refunded": "0.00" - } - ], - "invoice_id": 1885, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.73", - "applied": "0.73", - "refunded": "0.00", - "date": "2020-03-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 982, - "invoices": [ - { - "invoice_id": 1886, - "amount": "5.22", - "refunded": "0.00" - } - ], - "invoice_id": 1886, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.22", - "applied": "5.22", - "refunded": "0.00", - "date": "2020-04-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 983, - "invoices": [ - { - "invoice_id": 1887, - "amount": "19.56", - "refunded": "0.00" - } - ], - "invoice_id": 1887, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.56", - "applied": "19.56", - "refunded": "0.00", - "date": "2020-04-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 984, - "invoices": [ - { - "invoice_id": 1888, - "amount": "1.98", - "refunded": "0.00" - } - ], - "invoice_id": 1888, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.98", - "applied": "1.98", - "refunded": "0.00", - "date": "2020-01-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 985, - "invoices": [ - { - "invoice_id": 1889, - "amount": "3.59", - "refunded": "0.00" - } - ], - "invoice_id": 1889, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.59", - "applied": "3.59", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 986, - "invoices": [ - { - "invoice_id": 1890, - "amount": "0.07", - "refunded": "0.00" - } - ], - "invoice_id": 1890, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.07", - "applied": "0.07", - "refunded": "0.00", - "date": "2020-06-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 987, - "invoices": [ - { - "invoice_id": 1891, - "amount": "2.32", - "refunded": "0.00" - } - ], - "invoice_id": 1891, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.32", - "applied": "2.32", - "refunded": "0.00", - "date": "2020-05-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 988, - "invoices": [ - { - "invoice_id": 1892, - "amount": "39.50", - "refunded": "0.00" - } - ], - "invoice_id": 1892, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "39.50", - "applied": "39.50", - "refunded": "0.00", - "date": "2020-01-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 989, - "invoices": [ - { - "invoice_id": 1893, - "amount": "34.22", - "refunded": "0.00" - } - ], - "invoice_id": 1893, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.22", - "applied": "34.22", - "refunded": "0.00", - "date": "2019-12-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 990, - "invoices": [ - { - "invoice_id": 1894, - "amount": "0.17", - "refunded": "0.00" - } - ], - "invoice_id": 1894, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.17", - "applied": "0.17", - "refunded": "0.00", - "date": "2019-12-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 991, - "invoices": [ - { - "invoice_id": 1895, - "amount": "1.05", - "refunded": "0.00" - } - ], - "invoice_id": 1895, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.05", - "applied": "1.05", - "refunded": "0.00", - "date": "2020-03-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 992, - "invoices": [ - { - "invoice_id": 1896, - "amount": "2.03", - "refunded": "0.00" - } - ], - "invoice_id": 1896, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.03", - "applied": "2.03", - "refunded": "0.00", - "date": "2020-04-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 993, - "invoices": [ - { - "invoice_id": 1897, - "amount": "3.19", - "refunded": "0.00" - } - ], - "invoice_id": 1897, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.19", - "applied": "3.19", - "refunded": "0.00", - "date": "2020-01-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 994, - "invoices": [ - { - "invoice_id": 1898, - "amount": "20.86", - "refunded": "0.00" - } - ], - "invoice_id": 1898, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.86", - "applied": "20.86", - "refunded": "0.00", - "date": "2020-04-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 995, - "invoices": [ - { - "invoice_id": 1899, - "amount": "20.48", - "refunded": "0.00" - } - ], - "invoice_id": 1899, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.48", - "applied": "20.48", - "refunded": "0.00", - "date": "2020-03-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 996, - "invoices": [ - { - "invoice_id": 1900, - "amount": "5.17", - "refunded": "0.00" - } - ], - "invoice_id": 1900, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.17", - "applied": "5.17", - "refunded": "0.00", - "date": "2020-04-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 997, - "invoices": [ - { - "invoice_id": 1901, - "amount": "17.80", - "refunded": "0.00" - } - ], - "invoice_id": 1901, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.80", - "applied": "17.80", - "refunded": "0.00", - "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 998, - "invoices": [ - { - "invoice_id": 1902, - "amount": "34.68", - "refunded": "0.00" - } - ], - "invoice_id": 1902, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.68", - "applied": "34.68", - "refunded": "0.00", - "date": "2020-06-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 999, - "invoices": [ - { - "invoice_id": 1903, - "amount": "73.31", - "refunded": "0.00" - } - ], - "invoice_id": 1903, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "73.31", - "applied": "73.31", - "refunded": "0.00", - "date": "2020-04-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1000, - "invoices": [ - { - "invoice_id": 1904, - "amount": "4.63", - "refunded": "0.00" - } - ], - "invoice_id": 1904, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.63", - "applied": "4.63", - "refunded": "0.00", - "date": "2020-03-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1001, - "invoices": [ - { - "invoice_id": 1905, - "amount": "11.10", - "refunded": "0.00" - } - ], - "invoice_id": 1905, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.10", - "applied": "11.10", - "refunded": "0.00", - "date": "2019-12-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1002, - "invoices": [ - { - "invoice_id": 1906, - "amount": "3.89", - "refunded": "0.00" - } - ], - "invoice_id": 1906, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.89", - "applied": "3.89", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1003, - "invoices": [ - { - "invoice_id": 1907, - "amount": "33.98", - "refunded": "0.00" - } - ], - "invoice_id": 1907, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.98", - "applied": "33.98", - "refunded": "0.00", - "date": "2019-12-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1004, - "invoices": [ - { - "invoice_id": 1908, - "amount": "32.34", - "refunded": "0.00" - } - ], - "invoice_id": 1908, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "32.34", - "applied": "32.34", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1005, - "invoices": [ - { - "invoice_id": 1909, - "amount": "0.63", - "refunded": "0.00" - } - ], - "invoice_id": 1909, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.63", - "applied": "0.63", - "refunded": "0.00", - "date": "2019-12-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1006, - "invoices": [ - { - "invoice_id": 1910, - "amount": "0.20", - "refunded": "0.00" - } - ], - "invoice_id": 1910, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.20", - "applied": "0.20", - "refunded": "0.00", - "date": "2020-04-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1007, - "invoices": [ - { - "invoice_id": 1911, - "amount": "41.52", - "refunded": "0.00" - } - ], - "invoice_id": 1911, - "company_id": 1, - "client_id": 22, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "41.52", - "applied": "41.52", - "refunded": "0.00", - "date": "2020-03-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1008, - "invoices": [ - { - "invoice_id": 2012, - "amount": "16.42", - "refunded": "0.00" - } - ], - "invoice_id": 2012, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.42", - "applied": "16.42", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1009, - "invoices": [ - { - "invoice_id": 2013, - "amount": "30.79", - "refunded": "0.00" - } - ], - "invoice_id": 2013, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "30.79", - "applied": "30.79", - "refunded": "0.00", - "date": "2020-04-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1010, - "invoices": [ - { - "invoice_id": 2014, - "amount": "24.58", - "refunded": "0.00" - } - ], - "invoice_id": 2014, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.58", - "applied": "24.58", - "refunded": "0.00", - "date": "2020-03-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1011, - "invoices": [ - { - "invoice_id": 2015, - "amount": "10.85", - "refunded": "0.00" - } - ], - "invoice_id": 2015, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.85", - "applied": "10.85", - "refunded": "0.00", - "date": "2020-02-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1012, - "invoices": [ - { - "invoice_id": 2016, - "amount": "11.55", - "refunded": "0.00" - } - ], - "invoice_id": 2016, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.55", - "applied": "11.55", - "refunded": "0.00", - "date": "2020-03-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1013, - "invoices": [ - { - "invoice_id": 2017, - "amount": "26.49", - "refunded": "0.00" - } - ], - "invoice_id": 2017, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.49", - "applied": "26.49", - "refunded": "0.00", - "date": "2020-03-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1014, - "invoices": [ - { - "invoice_id": 2018, - "amount": "7.42", - "refunded": "0.00" - } - ], - "invoice_id": 2018, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.42", - "applied": "7.42", - "refunded": "0.00", - "date": "2020-06-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1015, - "invoices": [ - { - "invoice_id": 2019, - "amount": "10.95", - "refunded": "0.00" - } - ], - "invoice_id": 2019, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.95", - "applied": "10.95", - "refunded": "0.00", - "date": "2020-01-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1016, - "invoices": [ - { - "invoice_id": 2020, - "amount": "16.04", - "refunded": "0.00" - } - ], - "invoice_id": 2020, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.04", - "applied": "16.04", - "refunded": "0.00", - "date": "2020-06-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1017, - "invoices": [ - { - "invoice_id": 2021, - "amount": "34.06", - "refunded": "0.00" - } - ], - "invoice_id": 2021, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.06", - "applied": "34.06", - "refunded": "0.00", - "date": "2019-12-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1018, - "invoices": [ - { - "invoice_id": 2022, - "amount": "15.89", - "refunded": "0.00" - } - ], - "invoice_id": 2022, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.89", - "applied": "15.89", - "refunded": "0.00", - "date": "2020-02-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1019, - "invoices": [ - { - "invoice_id": 2023, - "amount": "13.98", - "refunded": "0.00" - } - ], - "invoice_id": 2023, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.98", - "applied": "13.98", - "refunded": "0.00", - "date": "2020-04-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1020, - "invoices": [ - { - "invoice_id": 2024, - "amount": "33.05", - "refunded": "0.00" - } - ], - "invoice_id": 2024, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "33.05", - "applied": "33.05", - "refunded": "0.00", - "date": "2020-01-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1021, - "invoices": [ - { - "invoice_id": 2025, - "amount": "0.40", - "refunded": "0.00" - } - ], - "invoice_id": 2025, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.40", - "applied": "0.40", - "refunded": "0.00", - "date": "2019-12-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1022, - "invoices": [ - { - "invoice_id": 2026, - "amount": "0.77", - "refunded": "0.00" - } - ], - "invoice_id": 2026, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.77", - "applied": "0.77", - "refunded": "0.00", - "date": "2020-02-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1023, - "invoices": [ - { - "invoice_id": 2027, - "amount": "19.02", - "refunded": "0.00" - } - ], - "invoice_id": 2027, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.02", - "applied": "19.02", - "refunded": "0.00", - "date": "2020-06-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1024, - "invoices": [ - { - "invoice_id": 2028, - "amount": "2.51", - "refunded": "0.00" - } - ], - "invoice_id": 2028, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.51", - "applied": "2.51", - "refunded": "0.00", - "date": "2020-04-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1025, - "invoices": [ - { - "invoice_id": 2029, - "amount": "14.55", - "refunded": "0.00" - } - ], - "invoice_id": 2029, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.55", - "applied": "14.55", - "refunded": "0.00", - "date": "2020-05-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1026, - "invoices": [ - { - "invoice_id": 2030, - "amount": "3.65", - "refunded": "0.00" - } - ], - "invoice_id": 2030, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.65", - "applied": "3.65", - "refunded": "0.00", - "date": "2019-12-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1027, - "invoices": [ - { - "invoice_id": 2031, - "amount": "1.43", - "refunded": "0.00" - } - ], - "invoice_id": 2031, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.43", - "applied": "1.43", - "refunded": "0.00", - "date": "2020-04-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1028, - "invoices": [ - { - "invoice_id": 2032, - "amount": "6.95", - "refunded": "0.00" - } - ], - "invoice_id": 2032, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.95", - "applied": "6.95", - "refunded": "0.00", - "date": "2020-01-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1029, - "invoices": [ - { - "invoice_id": 2033, - "amount": "2.53", - "refunded": "0.00" - } - ], - "invoice_id": 2033, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.53", - "applied": "2.53", - "refunded": "0.00", - "date": "2020-01-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1030, - "invoices": [ - { - "invoice_id": 2034, - "amount": "3.50", - "refunded": "0.00" - } - ], - "invoice_id": 2034, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.50", - "applied": "3.50", - "refunded": "0.00", - "date": "2019-12-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1031, - "invoices": [ - { - "invoice_id": 2035, - "amount": "38.69", - "refunded": "0.00" - } - ], - "invoice_id": 2035, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "38.69", - "applied": "38.69", - "refunded": "0.00", - "date": "2020-02-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1032, - "invoices": [ - { - "invoice_id": 2036, - "amount": "4.41", - "refunded": "0.00" - } - ], - "invoice_id": 2036, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.41", - "applied": "4.41", - "refunded": "0.00", - "date": "2020-04-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1033, - "invoices": [ - { - "invoice_id": 2037, - "amount": "3.58", - "refunded": "0.00" - } - ], - "invoice_id": 2037, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.58", - "applied": "3.58", - "refunded": "0.00", - "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1034, - "invoices": [ - { - "invoice_id": 2038, - "amount": "1.27", - "refunded": "0.00" - } - ], - "invoice_id": 2038, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.27", - "applied": "1.27", - "refunded": "0.00", - "date": "2020-02-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1035, - "invoices": [ - { - "invoice_id": 2039, - "amount": "8.71", - "refunded": "0.00" - } - ], - "invoice_id": 2039, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.71", - "applied": "8.71", - "refunded": "0.00", - "date": "2019-12-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1036, - "invoices": [ - { - "invoice_id": 2040, - "amount": "17.26", - "refunded": "0.00" - } - ], - "invoice_id": 2040, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.26", - "applied": "17.26", - "refunded": "0.00", - "date": "2019-12-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1037, - "invoices": [ - { - "invoice_id": 2041, - "amount": "5.90", - "refunded": "0.00" - } - ], - "invoice_id": 2041, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.90", - "applied": "5.90", - "refunded": "0.00", - "date": "2020-02-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1038, - "invoices": [ - { - "invoice_id": 2042, - "amount": "26.23", - "refunded": "0.00" - } - ], - "invoice_id": 2042, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.23", - "applied": "26.23", - "refunded": "0.00", - "date": "2020-03-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1039, - "invoices": [ - { - "invoice_id": 2043, - "amount": "8.12", - "refunded": "0.00" - } - ], - "invoice_id": 2043, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.12", - "applied": "8.12", - "refunded": "0.00", - "date": "2020-06-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1040, - "invoices": [ - { - "invoice_id": 2044, - "amount": "17.04", - "refunded": "0.00" - } - ], - "invoice_id": 2044, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.04", - "applied": "17.04", - "refunded": "0.00", - "date": "2020-05-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1041, - "invoices": [ - { - "invoice_id": 2045, - "amount": "5.02", - "refunded": "0.00" - } - ], - "invoice_id": 2045, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.02", - "applied": "5.02", - "refunded": "0.00", - "date": "2020-03-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1042, - "invoices": [ - { - "invoice_id": 2046, - "amount": "3.13", - "refunded": "0.00" - } - ], - "invoice_id": 2046, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.13", - "applied": "3.13", - "refunded": "0.00", - "date": "2020-02-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1043, - "invoices": [ - { - "invoice_id": 2047, - "amount": "29.88", - "refunded": "0.00" - } - ], - "invoice_id": 2047, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "29.88", - "applied": "29.88", - "refunded": "0.00", - "date": "2020-05-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1044, - "invoices": [ - { - "invoice_id": 2048, - "amount": "6.61", - "refunded": "0.00" - } - ], - "invoice_id": 2048, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.61", - "applied": "6.61", - "refunded": "0.00", - "date": "2019-12-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1045, - "invoices": [ - { - "invoice_id": 2049, - "amount": "3.34", - "refunded": "0.00" - } - ], - "invoice_id": 2049, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.34", - "applied": "3.34", - "refunded": "0.00", - "date": "2020-01-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1046, - "invoices": [ - { - "invoice_id": 2050, - "amount": "14.92", - "refunded": "0.00" - } - ], - "invoice_id": 2050, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.92", - "applied": "14.92", - "refunded": "0.00", - "date": "2020-03-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1047, - "invoices": [ - { - "invoice_id": 2051, - "amount": "5.47", - "refunded": "0.00" - } - ], - "invoice_id": 2051, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.47", - "applied": "5.47", - "refunded": "0.00", - "date": "2020-05-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1048, - "invoices": [ - { - "invoice_id": 2052, - "amount": "12.73", - "refunded": "0.00" - } - ], - "invoice_id": 2052, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.73", - "applied": "12.73", - "refunded": "0.00", - "date": "2020-05-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1049, - "invoices": [ - { - "invoice_id": 2053, - "amount": "42.68", - "refunded": "0.00" - } - ], - "invoice_id": 2053, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "42.68", - "applied": "42.68", - "refunded": "0.00", - "date": "2020-03-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1050, - "invoices": [ - { - "invoice_id": 2054, - "amount": "5.19", - "refunded": "0.00" - } - ], - "invoice_id": 2054, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.19", - "applied": "5.19", - "refunded": "0.00", - "date": "2020-02-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1051, - "invoices": [ - { - "invoice_id": 2055, - "amount": "8.38", - "refunded": "0.00" - } - ], - "invoice_id": 2055, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.38", - "applied": "8.38", - "refunded": "0.00", - "date": "2020-02-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1052, - "invoices": [ - { - "invoice_id": 2056, - "amount": "11.23", - "refunded": "0.00" - } - ], - "invoice_id": 2056, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.23", - "applied": "11.23", - "refunded": "0.00", - "date": "2020-06-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1053, - "invoices": [ - { - "invoice_id": 2057, - "amount": "5.09", - "refunded": "0.00" - } - ], - "invoice_id": 2057, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.09", - "applied": "5.09", - "refunded": "0.00", - "date": "2020-02-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1054, - "invoices": [ - { - "invoice_id": 2058, - "amount": "6.81", - "refunded": "0.00" - } - ], - "invoice_id": 2058, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.81", - "applied": "6.81", - "refunded": "0.00", - "date": "2020-04-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1055, - "invoices": [ - { - "invoice_id": 2059, - "amount": "4.65", - "refunded": "0.00" - } - ], - "invoice_id": 2059, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.65", - "applied": "4.65", - "refunded": "0.00", - "date": "2020-01-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1056, - "invoices": [ - { - "invoice_id": 2060, - "amount": "11.73", - "refunded": "0.00" - } - ], - "invoice_id": 2060, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.73", - "applied": "11.73", - "refunded": "0.00", - "date": "2020-01-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1057, - "invoices": [ - { - "invoice_id": 2061, - "amount": "15.83", - "refunded": "0.00" - } - ], - "invoice_id": 2061, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.83", - "applied": "15.83", - "refunded": "0.00", - "date": "2020-01-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1058, - "invoices": [ - { - "invoice_id": 2062, - "amount": "9.87", - "refunded": "0.00" - } - ], - "invoice_id": 2062, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.87", - "applied": "9.87", - "refunded": "0.00", - "date": "2020-06-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1059, - "invoices": [ - { - "invoice_id": 2063, - "amount": "0.95", - "refunded": "0.00" - } - ], - "invoice_id": 2063, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.95", - "applied": "0.95", - "refunded": "0.00", - "date": "2020-03-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1060, - "invoices": [ - { - "invoice_id": 2064, - "amount": "34.57", - "refunded": "0.00" - } - ], - "invoice_id": 2064, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.57", - "applied": "34.57", - "refunded": "0.00", - "date": "2019-12-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1061, - "invoices": [ - { - "invoice_id": 2065, - "amount": "29.19", - "refunded": "0.00" - } - ], - "invoice_id": 2065, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "29.19", - "applied": "29.19", - "refunded": "0.00", - "date": "2019-12-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1062, - "invoices": [ - { - "invoice_id": 2066, - "amount": "19.44", - "refunded": "0.00" - } - ], - "invoice_id": 2066, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.44", - "applied": "19.44", - "refunded": "0.00", - "date": "2020-05-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1063, - "invoices": [ - { - "invoice_id": 2067, - "amount": "16.13", - "refunded": "0.00" - } - ], - "invoice_id": 2067, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.13", - "applied": "16.13", - "refunded": "0.00", - "date": "2020-04-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1064, - "invoices": [ - { - "invoice_id": 2068, - "amount": "32.36", - "refunded": "0.00" - } - ], - "invoice_id": 2068, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "32.36", - "applied": "32.36", - "refunded": "0.00", - "date": "2020-06-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1065, - "invoices": [ - { - "invoice_id": 2069, - "amount": "0.96", - "refunded": "0.00" - } - ], - "invoice_id": 2069, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.96", - "applied": "0.96", - "refunded": "0.00", - "date": "2020-02-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1066, - "invoices": [ - { - "invoice_id": 2070, - "amount": "14.74", - "refunded": "0.00" - } - ], - "invoice_id": 2070, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.74", - "applied": "14.74", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1067, - "invoices": [ - { - "invoice_id": 2071, - "amount": "26.57", - "refunded": "0.00" - } - ], - "invoice_id": 2071, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "26.57", - "applied": "26.57", - "refunded": "0.00", - "date": "2020-02-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1068, - "invoices": [ - { - "invoice_id": 2072, - "amount": "6.53", - "refunded": "0.00" - } - ], - "invoice_id": 2072, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.53", - "applied": "6.53", - "refunded": "0.00", - "date": "2020-05-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1069, - "invoices": [ - { - "invoice_id": 2073, - "amount": "22.60", - "refunded": "0.00" - } - ], - "invoice_id": 2073, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.60", - "applied": "22.60", - "refunded": "0.00", - "date": "2020-01-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1070, - "invoices": [ - { - "invoice_id": 2074, - "amount": "3.33", - "refunded": "0.00" - } - ], - "invoice_id": 2074, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.33", - "applied": "3.33", - "refunded": "0.00", - "date": "2020-06-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1071, - "invoices": [ - { - "invoice_id": 2075, - "amount": "0.00", - "refunded": "0.00" - } - ], - "invoice_id": 2075, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.00", - "applied": "0.00", - "refunded": "0.00", - "date": "2020-02-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1072, - "invoices": [ - { - "invoice_id": 2076, - "amount": "5.77", - "refunded": "0.00" - } - ], - "invoice_id": 2076, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.77", - "applied": "5.77", - "refunded": "0.00", - "date": "2020-01-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1073, - "invoices": [ - { - "invoice_id": 2077, - "amount": "56.27", - "refunded": "0.00" - } - ], - "invoice_id": 2077, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "56.27", - "applied": "56.27", - "refunded": "0.00", - "date": "2020-04-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1074, - "invoices": [ - { - "invoice_id": 2078, - "amount": "31.10", - "refunded": "0.00" - } - ], - "invoice_id": 2078, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.10", - "applied": "31.10", - "refunded": "0.00", - "date": "2020-02-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1075, - "invoices": [ - { - "invoice_id": 2079, - "amount": "15.18", - "refunded": "0.00" - } - ], - "invoice_id": 2079, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.18", - "applied": "15.18", - "refunded": "0.00", - "date": "2020-04-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1076, - "invoices": [ - { - "invoice_id": 2080, - "amount": "23.55", - "refunded": "0.00" - } - ], - "invoice_id": 2080, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.55", - "applied": "23.55", - "refunded": "0.00", - "date": "2019-12-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1077, - "invoices": [ - { - "invoice_id": 2081, - "amount": "8.80", - "refunded": "0.00" - } - ], - "invoice_id": 2081, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.80", - "applied": "8.80", - "refunded": "0.00", - "date": "2019-12-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1078, - "invoices": [ - { - "invoice_id": 2082, - "amount": "21.03", - "refunded": "0.00" - } - ], - "invoice_id": 2082, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.03", - "applied": "21.03", - "refunded": "0.00", - "date": "2020-05-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1079, - "invoices": [ - { - "invoice_id": 2083, - "amount": "5.83", - "refunded": "0.00" - } - ], - "invoice_id": 2083, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.83", - "applied": "5.83", - "refunded": "0.00", - "date": "2020-03-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1080, - "invoices": [ - { - "invoice_id": 2084, - "amount": "2.24", - "refunded": "0.00" - } - ], - "invoice_id": 2084, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.24", - "applied": "2.24", - "refunded": "0.00", - "date": "2020-04-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1081, - "invoices": [ - { - "invoice_id": 2085, - "amount": "2.04", - "refunded": "0.00" - } - ], - "invoice_id": 2085, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.04", - "applied": "2.04", - "refunded": "0.00", - "date": "2020-06-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1082, - "invoices": [ - { - "invoice_id": 2086, - "amount": "11.01", - "refunded": "0.00" - } - ], - "invoice_id": 2086, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.01", - "applied": "11.01", - "refunded": "0.00", - "date": "2020-04-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1083, - "invoices": [ - { - "invoice_id": 2087, - "amount": "1.03", - "refunded": "0.00" - } - ], - "invoice_id": 2087, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.03", - "applied": "1.03", - "refunded": "0.00", - "date": "2020-06-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1084, - "invoices": [ - { - "invoice_id": 2088, - "amount": "2.14", - "refunded": "0.00" - } - ], - "invoice_id": 2088, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.14", - "applied": "2.14", - "refunded": "0.00", - "date": "2020-04-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1085, - "invoices": [ - { - "invoice_id": 2089, - "amount": "8.24", - "refunded": "0.00" - } - ], - "invoice_id": 2089, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.24", - "applied": "8.24", - "refunded": "0.00", - "date": "2019-12-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1086, - "invoices": [ - { - "invoice_id": 2090, - "amount": "15.53", - "refunded": "0.00" - } - ], - "invoice_id": 2090, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.53", - "applied": "15.53", - "refunded": "0.00", - "date": "2020-05-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1087, - "invoices": [ - { - "invoice_id": 2091, - "amount": "22.27", - "refunded": "0.00" - } - ], - "invoice_id": 2091, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.27", - "applied": "22.27", - "refunded": "0.00", - "date": "2020-05-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1088, - "invoices": [ - { - "invoice_id": 2092, - "amount": "0.57", - "refunded": "0.00" - } - ], - "invoice_id": 2092, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.57", - "applied": "0.57", - "refunded": "0.00", - "date": "2020-03-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1089, - "invoices": [ - { - "invoice_id": 2093, - "amount": "20.00", - "refunded": "0.00" - } - ], - "invoice_id": 2093, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.00", - "applied": "20.00", - "refunded": "0.00", - "date": "2020-01-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1090, - "invoices": [ - { - "invoice_id": 2094, - "amount": "17.91", - "refunded": "0.00" - } - ], - "invoice_id": 2094, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.91", - "applied": "17.91", - "refunded": "0.00", - "date": "2020-03-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1091, - "invoices": [ - { - "invoice_id": 2095, - "amount": "8.97", - "refunded": "0.00" - } - ], - "invoice_id": 2095, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.97", - "applied": "8.97", - "refunded": "0.00", - "date": "2020-01-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1092, - "invoices": [ - { - "invoice_id": 2096, - "amount": "38.59", - "refunded": "0.00" - } - ], - "invoice_id": 2096, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "38.59", - "applied": "38.59", - "refunded": "0.00", - "date": "2020-01-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1093, - "invoices": [ - { - "invoice_id": 2097, - "amount": "82.89", - "refunded": "0.00" - } - ], - "invoice_id": 2097, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "82.89", - "applied": "82.89", - "refunded": "0.00", - "date": "2020-03-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1094, - "invoices": [ - { - "invoice_id": 2098, - "amount": "10.33", - "refunded": "0.00" - } - ], - "invoice_id": 2098, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.33", - "applied": "10.33", - "refunded": "0.00", - "date": "2020-01-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1095, - "invoices": [ - { - "invoice_id": 2099, - "amount": "15.54", - "refunded": "0.00" - } - ], - "invoice_id": 2099, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "15.54", - "applied": "15.54", - "refunded": "0.00", - "date": "2019-12-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1096, - "invoices": [ - { - "invoice_id": 2100, - "amount": "2.64", - "refunded": "0.00" - } - ], - "invoice_id": 2100, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.64", - "applied": "2.64", - "refunded": "0.00", - "date": "2020-01-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1097, - "invoices": [ - { - "invoice_id": 2101, - "amount": "22.68", - "refunded": "0.00" - } - ], - "invoice_id": 2101, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.68", - "applied": "22.68", - "refunded": "0.00", - "date": "2020-02-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1098, - "invoices": [ - { - "invoice_id": 2102, - "amount": "25.10", - "refunded": "0.00" - } - ], - "invoice_id": 2102, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "25.10", - "applied": "25.10", - "refunded": "0.00", - "date": "2019-12-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1099, - "invoices": [ - { - "invoice_id": 2103, - "amount": "29.07", - "refunded": "0.00" - } - ], - "invoice_id": 2103, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "29.07", - "applied": "29.07", - "refunded": "0.00", - "date": "2020-01-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1100, - "invoices": [ - { - "invoice_id": 2104, - "amount": "5.87", - "refunded": "0.00" - } - ], - "invoice_id": 2104, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.87", - "applied": "5.87", - "refunded": "0.00", - "date": "2020-05-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1101, - "invoices": [ - { - "invoice_id": 2105, - "amount": "17.16", - "refunded": "0.00" - } - ], - "invoice_id": 2105, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.16", - "applied": "17.16", - "refunded": "0.00", - "date": "2020-01-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1102, - "invoices": [ - { - "invoice_id": 2106, - "amount": "19.75", - "refunded": "0.00" - } - ], - "invoice_id": 2106, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.75", - "applied": "19.75", - "refunded": "0.00", - "date": "2020-03-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1103, - "invoices": [ - { - "invoice_id": 2107, - "amount": "39.11", - "refunded": "0.00" - } - ], - "invoice_id": 2107, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "39.11", - "applied": "39.11", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1104, - "invoices": [ - { - "invoice_id": 2108, - "amount": "0.73", - "refunded": "0.00" - } - ], - "invoice_id": 2108, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.73", - "applied": "0.73", - "refunded": "0.00", - "date": "2020-05-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1105, - "invoices": [ - { - "invoice_id": 2109, - "amount": "53.03", - "refunded": "0.00" - } - ], - "invoice_id": 2109, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "53.03", - "applied": "53.03", - "refunded": "0.00", - "date": "2020-04-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1106, - "invoices": [ - { - "invoice_id": 2110, - "amount": "20.74", - "refunded": "0.00" - } - ], - "invoice_id": 2110, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.74", - "applied": "20.74", - "refunded": "0.00", - "date": "2020-04-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1107, - "invoices": [ - { - "invoice_id": 2111, - "amount": "25.12", - "refunded": "0.00" - } - ], - "invoice_id": 2111, - "company_id": 1, - "client_id": 23, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "25.12", - "applied": "25.12", - "refunded": "0.00", - "date": "2020-02-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1108, - "invoices": [ - { - "invoice_id": 2212, - "amount": "6.26", - "refunded": "0.00" - } - ], - "invoice_id": 2212, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.26", - "applied": "6.26", - "refunded": "0.00", - "date": "2020-04-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1109, - "invoices": [ - { - "invoice_id": 2213, - "amount": "4.53", - "refunded": "0.00" - } - ], - "invoice_id": 2213, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.53", - "applied": "4.53", - "refunded": "0.00", - "date": "2020-05-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1110, - "invoices": [ - { - "invoice_id": 2214, - "amount": "2.70", - "refunded": "0.00" - } - ], - "invoice_id": 2214, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.70", - "applied": "2.70", - "refunded": "0.00", - "date": "2020-04-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1111, - "invoices": [ - { - "invoice_id": 2215, - "amount": "7.32", - "refunded": "0.00" - } - ], - "invoice_id": 2215, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.32", - "applied": "7.32", - "refunded": "0.00", - "date": "2020-06-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1112, - "invoices": [ - { - "invoice_id": 2216, - "amount": "9.58", - "refunded": "0.00" - } - ], - "invoice_id": 2216, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.58", - "applied": "9.58", - "refunded": "0.00", - "date": "2020-02-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1113, - "invoices": [ - { - "invoice_id": 2217, - "amount": "7.94", - "refunded": "0.00" - } - ], - "invoice_id": 2217, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.94", - "applied": "7.94", - "refunded": "0.00", - "date": "2020-02-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1114, - "invoices": [ - { - "invoice_id": 2218, - "amount": "3.43", - "refunded": "0.00" - } - ], - "invoice_id": 2218, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.43", - "applied": "3.43", - "refunded": "0.00", - "date": "2020-03-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1115, - "invoices": [ - { - "invoice_id": 2219, - "amount": "9.63", - "refunded": "0.00" - } - ], - "invoice_id": 2219, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.63", - "applied": "9.63", - "refunded": "0.00", - "date": "2020-03-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1116, - "invoices": [ - { - "invoice_id": 2220, - "amount": "0.11", - "refunded": "0.00" - } - ], - "invoice_id": 2220, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.11", - "applied": "0.11", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1117, - "invoices": [ - { - "invoice_id": 2221, - "amount": "43.76", - "refunded": "0.00" - } - ], - "invoice_id": 2221, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "43.76", - "applied": "43.76", - "refunded": "0.00", - "date": "2020-04-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1118, - "invoices": [ - { - "invoice_id": 2222, - "amount": "0.64", - "refunded": "0.00" - } - ], - "invoice_id": 2222, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.64", - "applied": "0.64", - "refunded": "0.00", - "date": "2020-05-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1119, - "invoices": [ - { - "invoice_id": 2223, - "amount": "37.48", - "refunded": "0.00" - } - ], - "invoice_id": 2223, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "37.48", - "applied": "37.48", - "refunded": "0.00", - "date": "2020-01-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1120, - "invoices": [ - { - "invoice_id": 2224, - "amount": "4.07", - "refunded": "0.00" - } - ], - "invoice_id": 2224, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.07", - "applied": "4.07", - "refunded": "0.00", - "date": "2019-12-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1121, - "invoices": [ - { - "invoice_id": 2225, - "amount": "5.33", - "refunded": "0.00" - } - ], - "invoice_id": 2225, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.33", - "applied": "5.33", - "refunded": "0.00", - "date": "2020-01-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1122, - "invoices": [ - { - "invoice_id": 2226, - "amount": "3.96", - "refunded": "0.00" - } - ], - "invoice_id": 2226, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.96", - "applied": "3.96", - "refunded": "0.00", - "date": "2019-12-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1123, - "invoices": [ - { - "invoice_id": 2227, - "amount": "12.18", - "refunded": "0.00" - } - ], - "invoice_id": 2227, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.18", - "applied": "12.18", - "refunded": "0.00", - "date": "2019-12-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1124, - "invoices": [ - { - "invoice_id": 2228, - "amount": "36.38", - "refunded": "0.00" - } - ], - "invoice_id": 2228, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "36.38", - "applied": "36.38", - "refunded": "0.00", - "date": "2019-12-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1125, - "invoices": [ - { - "invoice_id": 2229, - "amount": "23.37", - "refunded": "0.00" - } - ], - "invoice_id": 2229, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.37", - "applied": "23.37", - "refunded": "0.00", - "date": "2020-01-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1126, - "invoices": [ - { - "invoice_id": 2230, - "amount": "12.92", - "refunded": "0.00" - } - ], - "invoice_id": 2230, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.92", - "applied": "12.92", - "refunded": "0.00", - "date": "2019-12-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1127, - "invoices": [ - { - "invoice_id": 2231, - "amount": "2.47", - "refunded": "0.00" - } - ], - "invoice_id": 2231, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.47", - "applied": "2.47", - "refunded": "0.00", - "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1128, - "invoices": [ - { - "invoice_id": 2232, - "amount": "13.73", - "refunded": "0.00" - } - ], - "invoice_id": 2232, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.73", - "applied": "13.73", - "refunded": "0.00", - "date": "2020-03-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1129, - "invoices": [ - { - "invoice_id": 2233, - "amount": "34.87", - "refunded": "0.00" - } - ], - "invoice_id": 2233, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "34.87", - "applied": "34.87", - "refunded": "0.00", - "date": "2019-12-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1130, - "invoices": [ - { - "invoice_id": 2234, - "amount": "22.93", - "refunded": "0.00" - } - ], - "invoice_id": 2234, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.93", - "applied": "22.93", - "refunded": "0.00", - "date": "2020-03-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1131, - "invoices": [ - { - "invoice_id": 2235, - "amount": "54.25", - "refunded": "0.00" - } - ], - "invoice_id": 2235, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "54.25", - "applied": "54.25", - "refunded": "0.00", - "date": "2020-04-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1132, - "invoices": [ - { - "invoice_id": 2236, - "amount": "28.33", - "refunded": "0.00" - } - ], - "invoice_id": 2236, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "28.33", - "applied": "28.33", - "refunded": "0.00", - "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1133, - "invoices": [ - { - "invoice_id": 2237, - "amount": "16.00", - "refunded": "0.00" - } - ], - "invoice_id": 2237, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.00", - "applied": "16.00", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1134, - "invoices": [ - { - "invoice_id": 2238, - "amount": "6.37", - "refunded": "0.00" - } - ], - "invoice_id": 2238, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.37", - "applied": "6.37", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1135, - "invoices": [ - { - "invoice_id": 2239, - "amount": "1.46", - "refunded": "0.00" - } - ], - "invoice_id": 2239, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.46", - "applied": "1.46", - "refunded": "0.00", - "date": "2020-01-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1136, - "invoices": [ - { - "invoice_id": 2240, - "amount": "0.97", - "refunded": "0.00" - } - ], - "invoice_id": 2240, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.97", - "applied": "0.97", - "refunded": "0.00", - "date": "2020-06-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1137, - "invoices": [ - { - "invoice_id": 2241, - "amount": "6.43", - "refunded": "0.00" - } - ], - "invoice_id": 2241, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.43", - "applied": "6.43", - "refunded": "0.00", - "date": "2020-02-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1138, - "invoices": [ - { - "invoice_id": 2242, - "amount": "57.13", - "refunded": "0.00" - } - ], - "invoice_id": 2242, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "57.13", - "applied": "57.13", - "refunded": "0.00", - "date": "2020-06-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1139, - "invoices": [ - { - "invoice_id": 2243, - "amount": "6.45", - "refunded": "0.00" - } - ], - "invoice_id": 2243, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.45", - "applied": "6.45", - "refunded": "0.00", - "date": "2020-03-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1140, - "invoices": [ - { - "invoice_id": 2244, - "amount": "5.61", - "refunded": "0.00" - } - ], - "invoice_id": 2244, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.61", - "applied": "5.61", - "refunded": "0.00", - "date": "2020-01-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1141, - "invoices": [ - { - "invoice_id": 2245, - "amount": "3.21", - "refunded": "0.00" - } - ], - "invoice_id": 2245, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.21", - "applied": "3.21", - "refunded": "0.00", - "date": "2020-04-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1142, - "invoices": [ - { - "invoice_id": 2246, - "amount": "20.15", - "refunded": "0.00" - } - ], - "invoice_id": 2246, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.15", - "applied": "20.15", - "refunded": "0.00", - "date": "2020-03-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1143, - "invoices": [ - { - "invoice_id": 2247, - "amount": "18.66", - "refunded": "0.00" - } - ], - "invoice_id": 2247, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.66", - "applied": "18.66", - "refunded": "0.00", - "date": "2020-01-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1144, - "invoices": [ - { - "invoice_id": 2248, - "amount": "12.83", - "refunded": "0.00" - } - ], - "invoice_id": 2248, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.83", - "applied": "12.83", - "refunded": "0.00", - "date": "2020-03-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1145, - "invoices": [ - { - "invoice_id": 2249, - "amount": "29.83", - "refunded": "0.00" - } - ], - "invoice_id": 2249, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "29.83", - "applied": "29.83", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1146, - "invoices": [ - { - "invoice_id": 2250, - "amount": "7.61", - "refunded": "0.00" - } - ], - "invoice_id": 2250, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.61", - "applied": "7.61", - "refunded": "0.00", - "date": "2020-05-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1147, - "invoices": [ - { - "invoice_id": 2251, - "amount": "53.31", - "refunded": "0.00" - } - ], - "invoice_id": 2251, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "53.31", - "applied": "53.31", - "refunded": "0.00", - "date": "2020-06-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1148, - "invoices": [ - { - "invoice_id": 2252, - "amount": "5.43", - "refunded": "0.00" - } - ], - "invoice_id": 2252, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.43", - "applied": "5.43", - "refunded": "0.00", - "date": "2020-02-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1149, - "invoices": [ - { - "invoice_id": 2253, - "amount": "63.41", - "refunded": "0.00" - } - ], - "invoice_id": 2253, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "63.41", - "applied": "63.41", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1150, - "invoices": [ - { - "invoice_id": 2254, - "amount": "6.09", - "refunded": "0.00" - } - ], - "invoice_id": 2254, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.09", - "applied": "6.09", - "refunded": "0.00", - "date": "2020-03-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1151, - "invoices": [ - { - "invoice_id": 2255, - "amount": "5.53", - "refunded": "0.00" - } - ], - "invoice_id": 2255, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.53", - "applied": "5.53", - "refunded": "0.00", - "date": "2020-03-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1152, - "invoices": [ - { - "invoice_id": 2256, - "amount": "5.04", - "refunded": "0.00" - } - ], - "invoice_id": 2256, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.04", - "applied": "5.04", - "refunded": "0.00", - "date": "2020-02-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1153, - "invoices": [ - { - "invoice_id": 2257, - "amount": "2.30", - "refunded": "0.00" - } - ], - "invoice_id": 2257, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.30", - "applied": "2.30", - "refunded": "0.00", - "date": "2020-05-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1154, - "invoices": [ - { - "invoice_id": 2258, - "amount": "18.78", - "refunded": "0.00" - } - ], - "invoice_id": 2258, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.78", - "applied": "18.78", - "refunded": "0.00", - "date": "2020-06-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1155, - "invoices": [ - { - "invoice_id": 2259, - "amount": "2.74", - "refunded": "0.00" - } - ], - "invoice_id": 2259, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.74", - "applied": "2.74", - "refunded": "0.00", - "date": "2020-02-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1156, - "invoices": [ - { - "invoice_id": 2260, - "amount": "0.38", - "refunded": "0.00" - } - ], - "invoice_id": 2260, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.38", - "applied": "0.38", - "refunded": "0.00", - "date": "2020-03-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1157, - "invoices": [ - { - "invoice_id": 2261, - "amount": "22.46", - "refunded": "0.00" - } - ], - "invoice_id": 2261, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.46", - "applied": "22.46", - "refunded": "0.00", - "date": "2020-03-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1158, - "invoices": [ - { - "invoice_id": 2262, - "amount": "6.97", - "refunded": "0.00" - } - ], - "invoice_id": 2262, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.97", - "applied": "6.97", - "refunded": "0.00", - "date": "2020-01-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1159, - "invoices": [ - { - "invoice_id": 2263, - "amount": "19.70", - "refunded": "0.00" - } - ], - "invoice_id": 2263, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.70", - "applied": "19.70", - "refunded": "0.00", - "date": "2020-03-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1160, - "invoices": [ - { - "invoice_id": 2264, - "amount": "27.39", - "refunded": "0.00" - } - ], - "invoice_id": 2264, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.39", - "applied": "27.39", - "refunded": "0.00", - "date": "2020-05-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1161, - "invoices": [ - { - "invoice_id": 2265, - "amount": "7.10", - "refunded": "0.00" - } - ], - "invoice_id": 2265, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.10", - "applied": "7.10", - "refunded": "0.00", - "date": "2020-02-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1162, - "invoices": [ - { - "invoice_id": 2266, - "amount": "53.97", - "refunded": "0.00" - } - ], - "invoice_id": 2266, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "53.97", - "applied": "53.97", - "refunded": "0.00", - "date": "2020-04-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1163, - "invoices": [ - { - "invoice_id": 2267, - "amount": "0.12", - "refunded": "0.00" - } - ], - "invoice_id": 2267, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.12", - "applied": "0.12", - "refunded": "0.00", - "date": "2020-01-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1164, - "invoices": [ - { - "invoice_id": 2268, - "amount": "12.08", - "refunded": "0.00" - } - ], - "invoice_id": 2268, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.08", - "applied": "12.08", - "refunded": "0.00", - "date": "2020-06-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1165, - "invoices": [ - { - "invoice_id": 2269, - "amount": "12.78", - "refunded": "0.00" - } - ], - "invoice_id": 2269, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.78", - "applied": "12.78", - "refunded": "0.00", - "date": "2020-02-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1166, - "invoices": [ - { - "invoice_id": 2270, - "amount": "0.86", - "refunded": "0.00" - } - ], - "invoice_id": 2270, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.86", - "applied": "0.86", - "refunded": "0.00", - "date": "2020-01-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1167, - "invoices": [ - { - "invoice_id": 2271, - "amount": "18.62", - "refunded": "0.00" - } - ], - "invoice_id": 2271, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.62", - "applied": "18.62", - "refunded": "0.00", - "date": "2020-05-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1168, - "invoices": [ - { - "invoice_id": 2272, - "amount": "12.69", - "refunded": "0.00" - } - ], - "invoice_id": 2272, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.69", - "applied": "12.69", - "refunded": "0.00", - "date": "2020-05-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1169, - "invoices": [ - { - "invoice_id": 2273, - "amount": "0.62", - "refunded": "0.00" - } - ], - "invoice_id": 2273, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.62", - "applied": "0.62", - "refunded": "0.00", - "date": "2020-02-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1170, - "invoices": [ - { - "invoice_id": 2274, - "amount": "8.14", - "refunded": "0.00" - } - ], - "invoice_id": 2274, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.14", - "applied": "8.14", - "refunded": "0.00", - "date": "2020-06-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1171, - "invoices": [ - { - "invoice_id": 2275, - "amount": "0.04", - "refunded": "0.00" - } - ], - "invoice_id": 2275, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.04", - "applied": "0.04", - "refunded": "0.00", - "date": "2020-01-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1172, - "invoices": [ - { - "invoice_id": 2276, - "amount": "1.22", - "refunded": "0.00" - } - ], - "invoice_id": 2276, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.22", - "applied": "1.22", - "refunded": "0.00", - "date": "2020-03-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1173, - "invoices": [ - { - "invoice_id": 2277, - "amount": "9.96", - "refunded": "0.00" - } - ], - "invoice_id": 2277, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.96", - "applied": "9.96", - "refunded": "0.00", - "date": "2020-05-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1174, - "invoices": [ - { - "invoice_id": 2278, - "amount": "66.91", - "refunded": "0.00" - } - ], - "invoice_id": 2278, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "66.91", - "applied": "66.91", - "refunded": "0.00", - "date": "2020-05-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1175, - "invoices": [ - { - "invoice_id": 2279, - "amount": "4.12", - "refunded": "0.00" - } - ], - "invoice_id": 2279, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.12", - "applied": "4.12", - "refunded": "0.00", - "date": "2020-05-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1176, - "invoices": [ - { - "invoice_id": 2280, - "amount": "3.27", - "refunded": "0.00" - } - ], - "invoice_id": 2280, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.27", - "applied": "3.27", - "refunded": "0.00", - "date": "2020-01-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1177, - "invoices": [ - { - "invoice_id": 2281, - "amount": "10.45", - "refunded": "0.00" - } - ], - "invoice_id": 2281, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.45", - "applied": "10.45", - "refunded": "0.00", - "date": "2020-05-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1178, - "invoices": [ - { - "invoice_id": 2282, - "amount": "3.92", - "refunded": "0.00" - } - ], - "invoice_id": 2282, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.92", - "applied": "3.92", - "refunded": "0.00", - "date": "2020-01-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1179, - "invoices": [ - { - "invoice_id": 2283, - "amount": "0.44", - "refunded": "0.00" - } - ], - "invoice_id": 2283, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.44", - "applied": "0.44", - "refunded": "0.00", - "date": "2020-03-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1180, - "invoices": [ - { - "invoice_id": 2284, - "amount": "10.05", - "refunded": "0.00" - } - ], - "invoice_id": 2284, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.05", - "applied": "10.05", - "refunded": "0.00", - "date": "2020-01-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1181, - "invoices": [ - { - "invoice_id": 2285, - "amount": "3.01", - "refunded": "0.00" - } - ], - "invoice_id": 2285, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.01", - "applied": "3.01", - "refunded": "0.00", - "date": "2020-04-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1182, - "invoices": [ - { - "invoice_id": 2286, - "amount": "4.46", - "refunded": "0.00" - } - ], - "invoice_id": 2286, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.46", - "applied": "4.46", - "refunded": "0.00", - "date": "2020-03-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1183, - "invoices": [ - { - "invoice_id": 2287, - "amount": "16.64", - "refunded": "0.00" - } - ], - "invoice_id": 2287, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.64", - "applied": "16.64", - "refunded": "0.00", - "date": "2020-05-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1184, - "invoices": [ - { - "invoice_id": 2288, - "amount": "23.53", - "refunded": "0.00" - } - ], - "invoice_id": 2288, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.53", - "applied": "23.53", - "refunded": "0.00", - "date": "2020-04-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1185, - "invoices": [ - { - "invoice_id": 2289, - "amount": "14.22", - "refunded": "0.00" - } - ], - "invoice_id": 2289, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.22", - "applied": "14.22", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1186, - "invoices": [ - { - "invoice_id": 2290, - "amount": "35.67", - "refunded": "0.00" - } - ], - "invoice_id": 2290, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "35.67", - "applied": "35.67", - "refunded": "0.00", - "date": "2020-05-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1187, - "invoices": [ - { - "invoice_id": 2291, - "amount": "62.91", - "refunded": "0.00" - } - ], - "invoice_id": 2291, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "62.91", - "applied": "62.91", - "refunded": "0.00", - "date": "2020-04-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1188, - "invoices": [ - { - "invoice_id": 2292, - "amount": "4.53", - "refunded": "0.00" - } - ], - "invoice_id": 2292, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.53", - "applied": "4.53", - "refunded": "0.00", - "date": "2020-03-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1189, - "invoices": [ - { - "invoice_id": 2293, - "amount": "12.40", - "refunded": "0.00" - } - ], - "invoice_id": 2293, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.40", - "applied": "12.40", - "refunded": "0.00", - "date": "2020-04-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1190, - "invoices": [ - { - "invoice_id": 2294, - "amount": "13.94", - "refunded": "0.00" - } - ], - "invoice_id": 2294, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.94", - "applied": "13.94", - "refunded": "0.00", - "date": "2020-03-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1191, - "invoices": [ - { - "invoice_id": 2295, - "amount": "4.74", - "refunded": "0.00" - } - ], - "invoice_id": 2295, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.74", - "applied": "4.74", - "refunded": "0.00", - "date": "2020-01-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1192, - "invoices": [ - { - "invoice_id": 2296, - "amount": "12.99", - "refunded": "0.00" - } - ], - "invoice_id": 2296, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.99", - "applied": "12.99", - "refunded": "0.00", - "date": "2020-03-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1193, - "invoices": [ - { - "invoice_id": 2297, - "amount": "32.10", - "refunded": "0.00" - } - ], - "invoice_id": 2297, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "32.10", - "applied": "32.10", - "refunded": "0.00", - "date": "2019-12-30", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1194, - "invoices": [ - { - "invoice_id": 2298, - "amount": "2.18", - "refunded": "0.00" - } - ], - "invoice_id": 2298, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.18", - "applied": "2.18", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1195, - "invoices": [ - { - "invoice_id": 2299, - "amount": "16.26", - "refunded": "0.00" - } - ], - "invoice_id": 2299, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.26", - "applied": "16.26", - "refunded": "0.00", - "date": "2020-06-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1196, - "invoices": [ - { - "invoice_id": 2300, - "amount": "5.66", - "refunded": "0.00" - } - ], - "invoice_id": 2300, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.66", - "applied": "5.66", - "refunded": "0.00", - "date": "2020-01-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1197, - "invoices": [ - { - "invoice_id": 2301, - "amount": "28.06", - "refunded": "0.00" - } - ], - "invoice_id": 2301, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "28.06", - "applied": "28.06", - "refunded": "0.00", - "date": "2020-04-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1198, - "invoices": [ - { - "invoice_id": 2302, - "amount": "56.27", - "refunded": "0.00" - } - ], - "invoice_id": 2302, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "56.27", - "applied": "56.27", - "refunded": "0.00", - "date": "2020-02-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1199, - "invoices": [ - { - "invoice_id": 2303, - "amount": "17.09", - "refunded": "0.00" - } - ], - "invoice_id": 2303, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.09", - "applied": "17.09", - "refunded": "0.00", - "date": "2020-06-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1200, - "invoices": [ - { - "invoice_id": 2304, - "amount": "6.38", - "refunded": "0.00" - } - ], - "invoice_id": 2304, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.38", - "applied": "6.38", - "refunded": "0.00", - "date": "2020-03-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1201, - "invoices": [ - { - "invoice_id": 2305, - "amount": "6.54", - "refunded": "0.00" - } - ], - "invoice_id": 2305, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.54", - "applied": "6.54", - "refunded": "0.00", - "date": "2020-02-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1202, - "invoices": [ - { - "invoice_id": 2306, - "amount": "9.82", - "refunded": "0.00" - } - ], - "invoice_id": 2306, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "9.82", - "applied": "9.82", - "refunded": "0.00", - "date": "2019-12-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1203, - "invoices": [ - { - "invoice_id": 2307, - "amount": "25.67", - "refunded": "0.00" - } - ], - "invoice_id": 2307, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "25.67", - "applied": "25.67", - "refunded": "0.00", - "date": "2020-05-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1204, - "invoices": [ - { - "invoice_id": 2308, - "amount": "0.84", - "refunded": "0.00" - } - ], - "invoice_id": 2308, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.84", - "applied": "0.84", - "refunded": "0.00", - "date": "2020-01-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1205, - "invoices": [ - { - "invoice_id": 2309, - "amount": "1.81", - "refunded": "0.00" - } - ], - "invoice_id": 2309, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.81", - "applied": "1.81", - "refunded": "0.00", - "date": "2020-06-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1206, - "invoices": [ - { - "invoice_id": 2310, - "amount": "2.64", - "refunded": "0.00" - } - ], - "invoice_id": 2310, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.64", - "applied": "2.64", - "refunded": "0.00", - "date": "2020-02-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1207, - "invoices": [ - { - "invoice_id": 2311, - "amount": "81.44", - "refunded": "0.00" - } - ], - "invoice_id": 2311, - "company_id": 1, - "client_id": 24, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "81.44", - "applied": "81.44", - "refunded": "0.00", - "date": "2020-06-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1208, - "invoices": [ - { - "invoice_id": 2412, - "amount": "1.55", - "refunded": "0.00" - } - ], - "invoice_id": 2412, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.55", - "applied": "1.55", - "refunded": "0.00", - "date": "2020-03-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1209, - "invoices": [ - { - "invoice_id": 2413, - "amount": "3.47", - "refunded": "0.00" - } - ], - "invoice_id": 2413, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.47", - "applied": "3.47", - "refunded": "0.00", - "date": "2020-05-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1210, - "invoices": [ - { - "invoice_id": 2414, - "amount": "19.29", - "refunded": "0.00" - } - ], - "invoice_id": 2414, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.29", - "applied": "19.29", - "refunded": "0.00", - "date": "2020-02-28", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1211, - "invoices": [ - { - "invoice_id": 2415, - "amount": "3.24", - "refunded": "0.00" - } - ], - "invoice_id": 2415, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.24", - "applied": "3.24", - "refunded": "0.00", - "date": "2020-05-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1212, - "invoices": [ - { - "invoice_id": 2416, - "amount": "92.58", - "refunded": "0.00" - } - ], - "invoice_id": 2416, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "92.58", - "applied": "92.58", - "refunded": "0.00", - "date": "2020-06-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1213, - "invoices": [ - { - "invoice_id": 2417, - "amount": "25.64", - "refunded": "0.00" - } - ], - "invoice_id": 2417, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "25.64", - "applied": "25.64", - "refunded": "0.00", - "date": "2020-03-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1214, - "invoices": [ - { - "invoice_id": 2418, - "amount": "2.33", - "refunded": "0.00" - } - ], - "invoice_id": 2418, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.33", - "applied": "2.33", - "refunded": "0.00", - "date": "2020-01-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1215, - "invoices": [ - { - "invoice_id": 2419, - "amount": "27.31", - "refunded": "0.00" - } - ], - "invoice_id": 2419, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.31", - "applied": "27.31", - "refunded": "0.00", - "date": "2020-03-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1216, - "invoices": [ - { - "invoice_id": 2420, - "amount": "5.62", - "refunded": "0.00" - } - ], - "invoice_id": 2420, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.62", - "applied": "5.62", - "refunded": "0.00", - "date": "2020-06-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1217, - "invoices": [ - { - "invoice_id": 2421, - "amount": "16.23", - "refunded": "0.00" - } - ], - "invoice_id": 2421, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.23", - "applied": "16.23", - "refunded": "0.00", - "date": "2020-01-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1218, - "invoices": [ - { - "invoice_id": 2422, - "amount": "21.68", - "refunded": "0.00" - } - ], - "invoice_id": 2422, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "21.68", - "applied": "21.68", - "refunded": "0.00", - "date": "2020-02-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1219, - "invoices": [ - { - "invoice_id": 2423, - "amount": "2.72", - "refunded": "0.00" - } - ], - "invoice_id": 2423, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.72", - "applied": "2.72", - "refunded": "0.00", - "date": "2020-04-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1220, - "invoices": [ - { - "invoice_id": 2424, - "amount": "19.05", - "refunded": "0.00" - } - ], - "invoice_id": 2424, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.05", - "applied": "19.05", - "refunded": "0.00", - "date": "2020-06-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1221, - "invoices": [ - { - "invoice_id": 2425, - "amount": "7.61", - "refunded": "0.00" - } - ], - "invoice_id": 2425, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.61", - "applied": "7.61", - "refunded": "0.00", - "date": "2020-06-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1222, - "invoices": [ - { - "invoice_id": 2426, - "amount": "1.44", - "refunded": "0.00" - } - ], - "invoice_id": 2426, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.44", - "applied": "1.44", - "refunded": "0.00", - "date": "2019-12-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1223, - "invoices": [ - { - "invoice_id": 2427, - "amount": "5.48", - "refunded": "0.00" - } - ], - "invoice_id": 2427, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.48", - "applied": "5.48", - "refunded": "0.00", - "date": "2020-01-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1224, - "invoices": [ - { - "invoice_id": 2428, - "amount": "0.44", - "refunded": "0.00" - } - ], - "invoice_id": 2428, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.44", - "applied": "0.44", - "refunded": "0.00", - "date": "2020-04-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1225, - "invoices": [ - { - "invoice_id": 2429, - "amount": "7.94", - "refunded": "0.00" - } - ], - "invoice_id": 2429, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.94", - "applied": "7.94", - "refunded": "0.00", - "date": "2020-05-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1226, - "invoices": [ - { - "invoice_id": 2430, - "amount": "30.17", - "refunded": "0.00" - } - ], - "invoice_id": 2430, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "30.17", - "applied": "30.17", - "refunded": "0.00", - "date": "2020-02-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1227, - "invoices": [ - { - "invoice_id": 2431, - "amount": "19.56", - "refunded": "0.00" - } - ], - "invoice_id": 2431, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.56", - "applied": "19.56", - "refunded": "0.00", - "date": "2020-01-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1228, - "invoices": [ - { - "invoice_id": 2432, - "amount": "10.61", - "refunded": "0.00" - } - ], - "invoice_id": 2432, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.61", - "applied": "10.61", - "refunded": "0.00", - "date": "2020-01-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1229, - "invoices": [ - { - "invoice_id": 2433, - "amount": "31.78", - "refunded": "0.00" - } - ], - "invoice_id": 2433, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "31.78", - "applied": "31.78", - "refunded": "0.00", - "date": "2020-04-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1230, - "invoices": [ - { - "invoice_id": 2434, - "amount": "19.25", - "refunded": "0.00" - } - ], - "invoice_id": 2434, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.25", - "applied": "19.25", - "refunded": "0.00", - "date": "2020-02-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1231, - "invoices": [ - { - "invoice_id": 2435, - "amount": "4.43", - "refunded": "0.00" - } - ], - "invoice_id": 2435, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.43", - "applied": "4.43", - "refunded": "0.00", - "date": "2020-01-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1232, - "invoices": [ - { - "invoice_id": 2436, - "amount": "13.14", - "refunded": "0.00" - } - ], - "invoice_id": 2436, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.14", - "applied": "13.14", - "refunded": "0.00", - "date": "2020-06-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1233, - "invoices": [ - { - "invoice_id": 2437, - "amount": "11.41", - "refunded": "0.00" - } - ], - "invoice_id": 2437, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.41", - "applied": "11.41", - "refunded": "0.00", - "date": "2020-05-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1234, - "invoices": [ - { - "invoice_id": 2438, - "amount": "14.14", - "refunded": "0.00" - } - ], - "invoice_id": 2438, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.14", - "applied": "14.14", - "refunded": "0.00", - "date": "2019-12-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1235, - "invoices": [ - { - "invoice_id": 2439, - "amount": "1.84", - "refunded": "0.00" - } - ], - "invoice_id": 2439, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.84", - "applied": "1.84", - "refunded": "0.00", - "date": "2020-02-01", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1236, - "invoices": [ - { - "invoice_id": 2440, - "amount": "42.41", - "refunded": "0.00" - } - ], - "invoice_id": 2440, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "42.41", - "applied": "42.41", - "refunded": "0.00", - "date": "2020-02-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1237, - "invoices": [ - { - "invoice_id": 2441, - "amount": "4.85", - "refunded": "0.00" - } - ], - "invoice_id": 2441, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.85", - "applied": "4.85", - "refunded": "0.00", - "date": "2020-02-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1238, - "invoices": [ - { - "invoice_id": 2442, - "amount": "13.09", - "refunded": "0.00" - } - ], - "invoice_id": 2442, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "13.09", - "applied": "13.09", - "refunded": "0.00", - "date": "2020-03-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1239, - "invoices": [ - { - "invoice_id": 2443, - "amount": "2.19", - "refunded": "0.00" - } - ], - "invoice_id": 2443, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.19", - "applied": "2.19", - "refunded": "0.00", - "date": "2019-12-25", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1240, - "invoices": [ - { - "invoice_id": 2444, - "amount": "16.69", - "refunded": "0.00" - } - ], - "invoice_id": 2444, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.69", - "applied": "16.69", - "refunded": "0.00", - "date": "2020-02-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1241, - "invoices": [ - { - "invoice_id": 2445, - "amount": "16.58", - "refunded": "0.00" - } - ], - "invoice_id": 2445, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "16.58", - "applied": "16.58", - "refunded": "0.00", - "date": "2020-02-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1242, - "invoices": [ - { - "invoice_id": 2446, - "amount": "27.42", - "refunded": "0.00" - } - ], - "invoice_id": 2446, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "27.42", - "applied": "27.42", - "refunded": "0.00", - "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1243, - "invoices": [ - { - "invoice_id": 2447, - "amount": "1.51", - "refunded": "0.00" - } - ], - "invoice_id": 2447, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.51", - "applied": "1.51", - "refunded": "0.00", - "date": "2020-01-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1244, - "invoices": [ - { - "invoice_id": 2448, - "amount": "18.26", - "refunded": "0.00" - } - ], - "invoice_id": 2448, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.26", - "applied": "18.26", - "refunded": "0.00", - "date": "2020-02-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1245, - "invoices": [ - { - "invoice_id": 2449, - "amount": "22.88", - "refunded": "0.00" - } - ], - "invoice_id": 2449, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.88", - "applied": "22.88", - "refunded": "0.00", - "date": "2020-06-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1246, - "invoices": [ - { - "invoice_id": 2450, - "amount": "19.52", - "refunded": "0.00" - } - ], - "invoice_id": 2450, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.52", - "applied": "19.52", - "refunded": "0.00", - "date": "2020-01-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1247, - "invoices": [ - { - "invoice_id": 2451, - "amount": "17.71", - "refunded": "0.00" - } - ], - "invoice_id": 2451, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.71", - "applied": "17.71", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1248, - "invoices": [ - { - "invoice_id": 2452, - "amount": "18.90", - "refunded": "0.00" - } - ], - "invoice_id": 2452, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.90", - "applied": "18.90", - "refunded": "0.00", - "date": "2020-05-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1249, - "invoices": [ - { - "invoice_id": 2453, - "amount": "0.70", - "refunded": "0.00" - } - ], - "invoice_id": 2453, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.70", - "applied": "0.70", - "refunded": "0.00", - "date": "2020-05-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1250, - "invoices": [ - { - "invoice_id": 2454, - "amount": "4.50", - "refunded": "0.00" - } - ], - "invoice_id": 2454, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.50", - "applied": "4.50", - "refunded": "0.00", - "date": "2020-05-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1251, - "invoices": [ - { - "invoice_id": 2455, - "amount": "23.25", - "refunded": "0.00" - } - ], - "invoice_id": 2455, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.25", - "applied": "23.25", - "refunded": "0.00", - "date": "2020-06-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1252, - "invoices": [ - { - "invoice_id": 2456, - "amount": "19.04", - "refunded": "0.00" - } - ], - "invoice_id": 2456, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.04", - "applied": "19.04", - "refunded": "0.00", - "date": "2019-12-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1253, - "invoices": [ - { - "invoice_id": 2457, - "amount": "1.13", - "refunded": "0.00" - } - ], - "invoice_id": 2457, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.13", - "applied": "1.13", - "refunded": "0.00", - "date": "2020-01-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1254, - "invoices": [ - { - "invoice_id": 2458, - "amount": "29.35", - "refunded": "0.00" - } - ], - "invoice_id": 2458, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "29.35", - "applied": "29.35", - "refunded": "0.00", - "date": "2020-02-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1255, - "invoices": [ - { - "invoice_id": 2459, - "amount": "20.46", - "refunded": "0.00" - } - ], - "invoice_id": 2459, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.46", - "applied": "20.46", - "refunded": "0.00", - "date": "2019-12-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1256, - "invoices": [ - { - "invoice_id": 2460, - "amount": "5.80", - "refunded": "0.00" - } - ], - "invoice_id": 2460, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.80", - "applied": "5.80", - "refunded": "0.00", - "date": "2020-03-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1257, - "invoices": [ - { - "invoice_id": 2461, - "amount": "63.95", - "refunded": "0.00" - } - ], - "invoice_id": 2461, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "63.95", - "applied": "63.95", - "refunded": "0.00", - "date": "2020-01-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1258, - "invoices": [ - { - "invoice_id": 2462, - "amount": "22.60", - "refunded": "0.00" - } - ], - "invoice_id": 2462, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "22.60", - "applied": "22.60", - "refunded": "0.00", - "date": "2020-06-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1259, - "invoices": [ - { - "invoice_id": 2463, - "amount": "10.22", - "refunded": "0.00" - } - ], - "invoice_id": 2463, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.22", - "applied": "10.22", - "refunded": "0.00", - "date": "2020-01-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1260, - "invoices": [ - { - "invoice_id": 2464, - "amount": "54.70", - "refunded": "0.00" - } - ], - "invoice_id": 2464, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "54.70", - "applied": "54.70", - "refunded": "0.00", - "date": "2020-04-27", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1261, - "invoices": [ - { - "invoice_id": 2465, - "amount": "2.23", - "refunded": "0.00" - } - ], - "invoice_id": 2465, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.23", - "applied": "2.23", - "refunded": "0.00", - "date": "2020-01-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1262, - "invoices": [ - { - "invoice_id": 2466, - "amount": "6.12", - "refunded": "0.00" - } - ], - "invoice_id": 2466, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.12", - "applied": "6.12", - "refunded": "0.00", - "date": "2020-03-02", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1263, - "invoices": [ - { - "invoice_id": 2467, - "amount": "7.30", - "refunded": "0.00" - } - ], - "invoice_id": 2467, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.30", - "applied": "7.30", - "refunded": "0.00", - "date": "2020-01-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1264, - "invoices": [ - { - "invoice_id": 2468, - "amount": "42.37", - "refunded": "0.00" - } - ], - "invoice_id": 2468, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "42.37", - "applied": "42.37", - "refunded": "0.00", - "date": "2020-01-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1265, - "invoices": [ - { - "invoice_id": 2469, - "amount": "14.73", - "refunded": "0.00" - } - ], - "invoice_id": 2469, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "14.73", - "applied": "14.73", - "refunded": "0.00", - "date": "2020-04-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1266, - "invoices": [ - { - "invoice_id": 2470, - "amount": "28.17", - "refunded": "0.00" - } - ], - "invoice_id": 2470, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "28.17", - "applied": "28.17", - "refunded": "0.00", - "date": "2020-05-26", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1267, - "invoices": [ - { - "invoice_id": 2471, - "amount": "5.06", - "refunded": "0.00" - } - ], - "invoice_id": 2471, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.06", - "applied": "5.06", - "refunded": "0.00", - "date": "2019-12-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1268, - "invoices": [ - { - "invoice_id": 2472, - "amount": "3.75", - "refunded": "0.00" - } - ], - "invoice_id": 2472, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.75", - "applied": "3.75", - "refunded": "0.00", - "date": "2020-06-17", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1269, - "invoices": [ - { - "invoice_id": 2473, - "amount": "4.75", - "refunded": "0.00" - } - ], - "invoice_id": 2473, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.75", - "applied": "4.75", - "refunded": "0.00", - "date": "2020-03-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1270, - "invoices": [ - { - "invoice_id": 2474, - "amount": "1.21", - "refunded": "0.00" - } - ], - "invoice_id": 2474, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.21", - "applied": "1.21", - "refunded": "0.00", - "date": "2020-01-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1271, - "invoices": [ - { - "invoice_id": 2475, - "amount": "4.55", - "refunded": "0.00" - } - ], - "invoice_id": 2475, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.55", - "applied": "4.55", - "refunded": "0.00", - "date": "2020-06-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1272, - "invoices": [ - { - "invoice_id": 2476, - "amount": "6.54", - "refunded": "0.00" - } - ], - "invoice_id": 2476, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.54", - "applied": "6.54", - "refunded": "0.00", + "balance": "1.71", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10512, + "quantity": 1, + "cost": 1.71, + "product_key": "soluta", + "notes": "Qui sapiente a a et itaque nisi. Ut quidem dolorem dignissimos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10513, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0156", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-05", + "last_sent_date": null, + "due_date": "2020-04-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.00", + "balance": "28.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10513, + "quantity": 4, + "cost": 7, + "product_key": "quia", + "notes": "Quis totam iste dolorem sed. Ad consequatur officia voluptatem quasi. Et exercitationem illo quia molestiae qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10514, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0157", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", "date": "2020-06-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "last_sent_date": null, + "due_date": "2020-06-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "39.95", + "balance": "39.95", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10514, + "quantity": 5, + "cost": 7.99, + "product_key": "illo", + "notes": "Beatae minima possimus est minus. Excepturi deserunt ipsam perspiciatis rem voluptate quaerat repellendus accusamus. Accusantium dolores distinctio consequatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1273, - "invoices": [ + "id": 10515, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0158", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-26", + "last_sent_date": null, + "due_date": "2020-04-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "54.00", + "balance": "54.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2477, - "amount": "17.14", - "refunded": "0.00" + "id": 10515, + "quantity": 6, + "cost": 9, + "product_key": "perferendis", + "notes": "Dolorem aperiam ducimus quasi sint. Ut consectetur tenetur nobis vitae quos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2477, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "17.14", - "applied": "17.14", - "refunded": "0.00", - "date": "2020-05-29", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1274, - "invoices": [ + "id": 10516, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0159", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-24", + "last_sent_date": null, + "due_date": "2020-04-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "44.08", + "balance": "44.08", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2478, - "amount": "12.55", - "refunded": "0.00" + "id": 10516, + "quantity": 8, + "cost": 5.51, + "product_key": "incidunt", + "notes": "Aut numquam deleniti explicabo velit sit saepe voluptas. Ut aut dolores qui fuga voluptas. Non facilis eum ab totam odio libero error aspernatur. Dolor dolores eaque atque eos non.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2478, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "12.55", - "applied": "12.55", - "refunded": "0.00", - "date": "2020-01-15", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1275, - "invoices": [ + "id": 10517, + "client_id": 56, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0160", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-23", + "last_sent_date": null, + "due_date": "2020-07-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.23", + "balance": "25.23", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2479, - "amount": "6.02", - "refunded": "0.00" + "id": 10517, + "quantity": 3, + "cost": 8.41, + "product_key": "et", + "notes": "Quas dolorem est sed ipsum eligendi magni velit. Ipsum eum officia facilis veritatis est qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:22.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2479, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.02", - "applied": "6.02", - "refunded": "0.00", - "date": "2020-02-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1276, - "invoices": [ + "id": 10538, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0181", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-14", + "last_sent_date": null, + "due_date": "2020-09-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "32.30", + "balance": "32.30", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2480, - "amount": "4.17", - "refunded": "0.00" + "id": 10538, + "quantity": 5, + "cost": 6.46, + "product_key": "aut", + "notes": "Laborum laboriosam exercitationem nihil et dolore non. Officia repellendus laboriosam quo voluptatem deleniti perspiciatis eos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2480, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.17", - "applied": "4.17", - "refunded": "0.00", - "date": "2020-05-18", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1277, - "invoices": [ + "id": 10539, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0182", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-25", + "last_sent_date": null, + "due_date": "2020-04-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "81.50", + "balance": "81.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2481, - "amount": "3.87", - "refunded": "0.00" + "id": 10539, + "quantity": 10, + "cost": 8.15, + "product_key": "nihil", + "notes": "Cum corrupti dolor ut. Quaerat officia in qui laboriosam sunt et animi. Voluptatem a omnis aut assumenda dignissimos. Rerum harum explicabo aut fugit ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2481, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.87", - "applied": "3.87", - "refunded": "0.00", - "date": "2020-05-31", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1278, - "invoices": [ + "id": 10540, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0183", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-30", + "last_sent_date": null, + "due_date": "2020-04-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "49.76", + "balance": "49.76", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2482, - "amount": "2.21", - "refunded": "0.00" + "id": 10540, + "quantity": 8, + "cost": 6.22, + "product_key": "eum", + "notes": "Aliquid et ullam enim nesciunt quia corporis. Deserunt ad ut nam omnis eos illum. Eum repellendus eius aut vel quam quod. Quae eos minima in veniam ratione.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2482, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.21", - "applied": "2.21", - "refunded": "0.00", - "date": "2020-03-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1279, - "invoices": [ + "id": 10541, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0184", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-13", + "last_sent_date": null, + "due_date": "2020-04-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.72", + "balance": "42.72", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2483, - "amount": "24.20", - "refunded": "0.00" + "id": 10541, + "quantity": 6, + "cost": 7.12, + "product_key": "et", + "notes": "Id dolorem sed autem voluptatem et nesciunt veniam. Officiis rerum nam libero et eligendi deleniti corrupti corporis. Atque qui consequatur commodi minus quia sapiente. Veniam qui quam est et et totam ea. Officiis blanditiis qui aperiam sapiente.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2483, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "24.20", - "applied": "24.20", - "refunded": "0.00", - "date": "2020-03-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1280, - "invoices": [ + "id": 10542, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0185", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-25", + "last_sent_date": null, + "due_date": "2020-04-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.68", + "balance": "4.68", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2484, - "amount": "8.92", - "refunded": "0.00" + "id": 10542, + "quantity": 3, + "cost": 1.56, + "product_key": "ut", + "notes": "Consequatur voluptas dolorem modi accusamus. Vitae sunt cumque dolores debitis. Nulla neque dignissimos beatae sit quia est cupiditate. Eos natus nemo est odio dolore tempore dolor.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2484, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "8.92", - "applied": "8.92", - "refunded": "0.00", - "date": "2020-02-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1281, - "invoices": [ + "id": 10543, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0186", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-02", + "last_sent_date": null, + "due_date": "2020-07-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.00", + "balance": "15.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2485, - "amount": "0.49", - "refunded": "0.00" + "id": 10543, + "quantity": 5, + "cost": 3, + "product_key": "quam", + "notes": "Non consequatur animi soluta iste.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2485, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.49", - "applied": "0.49", - "refunded": "0.00", - "date": "2020-04-07", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1282, - "invoices": [ - { - "invoice_id": 2486, - "amount": "5.61", - "refunded": "0.00" - } - ], - "invoice_id": 2486, - "company_id": 1, - "client_id": 25, + "id": 10544, + "client_id": 57, "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "5.61", - "applied": "5.61", - "refunded": "0.00", - "date": "2020-04-06", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1283, - "invoices": [ - { - "invoice_id": 2487, - "amount": "0.68", - "refunded": "0.00" - } - ], - "invoice_id": 2487, "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.68", - "applied": "0.68", - "refunded": "0.00", - "date": "2020-05-16", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1284, - "invoices": [ - { - "invoice_id": 2488, - "amount": "2.91", - "refunded": "0.00" - } - ], - "invoice_id": 2488, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.91", - "applied": "2.91", - "refunded": "0.00", - "date": "2020-04-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1285, - "invoices": [ - { - "invoice_id": 2489, - "amount": "0.37", - "refunded": "0.00" - } - ], - "invoice_id": 2489, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.37", - "applied": "0.37", - "refunded": "0.00", - "date": "2020-04-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1286, - "invoices": [ - { - "invoice_id": 2490, - "amount": "11.96", - "refunded": "0.00" - } - ], - "invoice_id": 2490, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "11.96", - "applied": "11.96", - "refunded": "0.00", - "date": "2020-05-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1287, - "invoices": [ - { - "invoice_id": 2491, - "amount": "23.58", - "refunded": "0.00" - } - ], - "invoice_id": 2491, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "23.58", - "applied": "23.58", - "refunded": "0.00", - "date": "2020-02-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1288, - "invoices": [ - { - "invoice_id": 2492, - "amount": "18.36", - "refunded": "0.00" - } - ], - "invoice_id": 2492, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.36", - "applied": "18.36", - "refunded": "0.00", - "date": "2020-06-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1289, - "invoices": [ - { - "invoice_id": 2493, - "amount": "0.40", - "refunded": "0.00" - } - ], - "invoice_id": 2493, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.40", - "applied": "0.40", - "refunded": "0.00", - "date": "2020-05-20", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", - "deleted_at": null - }, - { - "id": 1290, - "invoices": [ - { - "invoice_id": 2494, - "amount": "8.01", - "refunded": "0.00" - } - ], - "invoice_id": 2494, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, + "status_id": 2, + "design_id": 1, + "number": "0187", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-13", + "last_sent_date": null, + "due_date": "2020-08-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, "amount": "8.01", - "applied": "8.01", - "refunded": "0.00", - "date": "2020-03-09", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "balance": "8.01", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10544, + "quantity": 1, + "cost": 8.01, + "product_key": "qui", + "notes": "Autem tenetur sequi velit ut omnis sed itaque. Tempora qui sed sunt id aut qui aut. Doloremque est aut ab et unde aut tenetur. Pariatur eligendi enim mollitia nesciunt accusantium autem magni. Iste dolorem iste itaque nihil quis aliquam consequatur consequatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1291, - "invoices": [ + "id": 10545, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0188", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-22", + "last_sent_date": null, + "due_date": "2020-05-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.36", + "balance": "28.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2495, - "amount": "19.15", - "refunded": "0.00" + "id": 10545, + "quantity": 4, + "cost": 7.09, + "product_key": "at", + "notes": "Eos id fuga corporis. Quaerat dolor explicabo praesentium eum. Illo fugit aspernatur minima. Magni sed tempora quasi rerum eos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2495, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "19.15", - "applied": "19.15", - "refunded": "0.00", - "date": "2020-04-10", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1292, - "invoices": [ + "id": 10546, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0189", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-19", + "last_sent_date": null, + "due_date": "2020-08-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.48", + "balance": "34.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2496, - "amount": "3.22", - "refunded": "0.00" + "id": 10546, + "quantity": 4, + "cost": 8.62, + "product_key": "non", + "notes": "Similique expedita quia ipsa omnis earum nobis rerum. Eum eaque sit optio. Nisi facilis voluptas et incidunt qui debitis. Delectus magni occaecati accusantium aperiam est quidem excepturi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2496, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.22", - "applied": "3.22", - "refunded": "0.00", - "date": "2020-04-14", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1293, - "invoices": [ + "id": 10547, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0190", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-14", + "last_sent_date": null, + "due_date": "2020-03-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "35.73", + "balance": "35.73", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2497, - "amount": "4.95", - "refunded": "0.00" + "id": 10547, + "quantity": 9, + "cost": 3.97, + "product_key": "dicta", + "notes": "Quibusdam mollitia facere ratione molestiae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2497, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.95", - "applied": "4.95", - "refunded": "0.00", - "date": "2020-01-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1294, - "invoices": [ + "id": 10548, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0191", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-18", + "last_sent_date": null, + "due_date": "2020-06-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.88", + "balance": "8.88", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2498, - "amount": "6.57", - "refunded": "0.00" + "id": 10548, + "quantity": 4, + "cost": 2.22, + "product_key": "quidem", + "notes": "Minima non vel et minima ullam ut. Soluta optio cum ut voluptas. Consequatur quo possimus alias et cumque accusamus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2498, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.57", - "applied": "6.57", - "refunded": "0.00", - "date": "2020-05-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1295, - "invoices": [ + "id": 10549, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0192", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-15", + "last_sent_date": null, + "due_date": "2020-05-14", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.92", + "balance": "3.92", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2499, - "amount": "18.28", - "refunded": "0.00" + "id": 10549, + "quantity": 2, + "cost": 1.96, + "product_key": "et", + "notes": "Nobis occaecati architecto ut provident reiciendis molestiae cumque. Odio vel est nihil distinctio. Beatae dignissimos eligendi debitis eaque. Asperiores ut consequatur eligendi commodi sit iste.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2499, - "company_id": 1, - "client_id": 25, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10550, + "client_id": 57, "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "18.28", - "applied": "18.28", - "refunded": "0.00", + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0193", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-25", + "last_sent_date": null, + "due_date": "2020-07-16", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.48", + "balance": "20.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10550, + "quantity": 4, + "cost": 5.12, + "product_key": "et", + "notes": "Velit debitis officia libero ut sed quas consequatur. Veritatis accusamus ut possimus dolore voluptatum. Sed laboriosam voluptatem exercitationem sed id.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10551, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0194", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-08", + "last_sent_date": null, + "due_date": "2020-08-03", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.80", + "balance": "22.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10551, + "quantity": 4, + "cost": 5.7, + "product_key": "aut", + "notes": "Fugit sit minus ratione est. Similique neque modi ut in dolor labore. Cupiditate et rerum est officiis et dolorum consequuntur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10552, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0195", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-02", + "last_sent_date": null, + "due_date": "2020-05-13", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "41.70", + "balance": "41.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10552, + "quantity": 5, + "cost": 8.34, + "product_key": "ut", + "notes": "Maxime at repellat unde voluptatem. Iure ab laudantium ipsum officiis. Enim et cumque ut voluptate sapiente aperiam aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10553, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0196", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-15", + "last_sent_date": null, + "due_date": "2020-09-08", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.38", + "balance": "6.38", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10553, + "quantity": 2, + "cost": 3.19, + "product_key": "hic", + "notes": "Voluptas ut pariatur similique. Cupiditate quas deserunt quisquam expedita. In deleniti laboriosam consequatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10554, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0197", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-20", + "last_sent_date": null, + "due_date": "2020-04-24", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "67.62", + "balance": "67.62", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10554, + "quantity": 7, + "cost": 9.66, + "product_key": "quidem", + "notes": "Quod eveniet ut quidem ducimus. Recusandae est quia et dolorem cumque possimus. Dolor cupiditate sequi maiores praesentium possimus et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10555, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0198", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-23", + "last_sent_date": null, + "due_date": "2020-08-03", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.24", + "balance": "19.24", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10555, + "quantity": 4, + "cost": 4.81, + "product_key": "in", + "notes": "Quos quas et porro velit consequatur autem aut ut. Accusantium accusamus eveniet fugiat dolorem iste dolor id. Debitis ex corrupti iusto qui nulla.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10556, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0199", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", "date": "2020-04-19", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "last_sent_date": null, + "due_date": "2020-05-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "31.52", + "balance": "31.52", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10556, + "quantity": 4, + "cost": 7.88, + "product_key": "quia", + "notes": "Rerum earum ut non soluta odit nam nemo. Fugiat esse ullam quia ut. Est sequi quia facilis ipsum esse. Consequuntur eos omnis ut ad quam unde. Mollitia doloremque reiciendis aut provident asperiores. Sit nobis architecto nihil delectus libero quos est.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1296, - "invoices": [ + "id": 10557, + "client_id": 57, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0200", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-29", + "last_sent_date": null, + "due_date": "2020-05-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.08", + "balance": "13.08", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2500, - "amount": "20.98", - "refunded": "0.00" + "id": 10557, + "quantity": 6, + "cost": 2.18, + "product_key": "fugiat", + "notes": "Excepturi nostrum dolor modi sunt vel quia non. Modi quo dolor dolor iure aut nostrum consequuntur ullam. Quia et ut accusantium vel quos odit. Et aliquam deleniti adipisci natus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:23.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2500, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.98", - "applied": "20.98", - "refunded": "0.00", - "date": "2019-12-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1297, - "invoices": [ + "id": 10578, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0221", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-25", + "last_sent_date": null, + "due_date": "2020-09-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.22", + "balance": "18.22", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2501, - "amount": "20.33", - "refunded": "0.00" + "id": 10578, + "quantity": 2, + "cost": 9.11, + "product_key": "occaecati", + "notes": "Voluptatum rerum unde maxime.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2501, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.33", - "applied": "20.33", - "refunded": "0.00", - "date": "2020-03-11", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1298, - "invoices": [ + "id": 10579, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0222", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-24", + "last_sent_date": null, + "due_date": "2020-04-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.55", + "balance": "19.55", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2502, - "amount": "6.57", - "refunded": "0.00" + "id": 10579, + "quantity": 5, + "cost": 3.91, + "product_key": "consequatur", + "notes": "Atque rerum optio optio officiis sequi tempore. Tempore eum est exercitationem ut. Praesentium quisquam enim blanditiis ut architecto.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2502, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.57", - "applied": "6.57", - "refunded": "0.00", - "date": "2020-04-05", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1299, - "invoices": [ + "id": 10580, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0223", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-15", + "last_sent_date": null, + "due_date": "2020-04-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "67.00", + "balance": "67.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2503, - "amount": "7.34", - "refunded": "0.00" + "id": 10580, + "quantity": 10, + "cost": 6.7, + "product_key": "consequatur", + "notes": "Possimus quaerat sed harum ex non consequatur. Culpa delectus suscipit id dignissimos deserunt eligendi sed. Rem ad dolor doloremque cupiditate odio consequatur cumque exercitationem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2503, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "7.34", - "applied": "7.34", - "refunded": "0.00", - "date": "2020-02-08", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1300, - "invoices": [ + "id": 10581, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0224", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-10", + "last_sent_date": null, + "due_date": "2020-08-06", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.16", + "balance": "34.16", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2504, - "amount": "20.78", - "refunded": "0.00" + "id": 10581, + "quantity": 8, + "cost": 4.27, + "product_key": "ipsum", + "notes": "Nostrum sed occaecati labore commodi explicabo. Voluptates sunt dolorum qui voluptatem ut. Quis eos quidem dolorum nostrum asperiores vel ut. Deleniti qui accusamus veritatis esse. Aut omnis tempore qui asperiores sed vero asperiores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2504, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "20.78", - "applied": "20.78", - "refunded": "0.00", - "date": "2020-01-13", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1301, - "invoices": [ + "id": 10582, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0225", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-20", + "last_sent_date": null, + "due_date": "2020-07-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "1.45", + "balance": "1.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2505, - "amount": "6.26", - "refunded": "0.00" + "id": 10582, + "quantity": 1, + "cost": 1.45, + "product_key": "dolorem", + "notes": "Quia animi odit sed quis excepturi possimus aperiam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2505, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "6.26", - "applied": "6.26", - "refunded": "0.00", - "date": "2020-03-03", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1302, - "invoices": [ + "id": 10583, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0226", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-10", + "last_sent_date": null, + "due_date": "2020-09-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "2.35", + "balance": "2.35", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2506, - "amount": "3.14", - "refunded": "0.00" + "id": 10583, + "quantity": 1, + "cost": 2.35, + "product_key": "enim", + "notes": "Et ut nam id ut. Quasi veritatis sit est velit provident ut. Impedit accusantium qui et est.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2506, - "company_id": 1, - "client_id": 25, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10584, + "client_id": 58, "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.14", - "applied": "3.14", - "refunded": "0.00", + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0227", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-22", + "last_sent_date": null, + "due_date": "2020-08-24", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "1.59", + "balance": "1.59", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10584, + "quantity": 1, + "cost": 1.59, + "product_key": "vitae", + "notes": "Unde rerum dicta harum nulla exercitationem quia nihil. Ut recusandae ea et ut nesciunt. Officia ut qui voluptatem cupiditate.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10585, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0228", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-19", + "last_sent_date": null, + "due_date": "2020-06-14", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.86", + "balance": "28.86", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10585, + "quantity": 3, + "cost": 9.62, + "product_key": "inventore", + "notes": "Facere non aut consequatur rem expedita.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10586, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0229", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-24", + "last_sent_date": null, + "due_date": "2020-07-06", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.30", + "balance": "8.30", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10586, + "quantity": 1, + "cost": 8.3, + "product_key": "cum", + "notes": "Quas hic et voluptate rem magnam sint. Reiciendis omnis rerum incidunt sint ex in deleniti. Id fugit numquam aperiam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10587, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0230", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-22", + "last_sent_date": null, + "due_date": "2020-09-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.00", + "balance": "34.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10587, + "quantity": 8, + "cost": 4.25, + "product_key": "quo", + "notes": "Facilis et distinctio incidunt et iusto sed quae. Animi ipsum nisi eius delectus sed perspiciatis omnis. Recusandae similique sed velit reprehenderit. Autem natus reprehenderit aut molestias rerum sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10588, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0231", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-24", + "last_sent_date": null, + "due_date": "2020-05-13", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.60", + "balance": "25.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10588, + "quantity": 8, + "cost": 3.2, + "product_key": "culpa", + "notes": "Voluptas nostrum dolores iste. Quam iste optio eveniet amet.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10589, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0232", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-31", + "last_sent_date": null, + "due_date": "2020-06-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "35.88", + "balance": "35.88", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10589, + "quantity": 6, + "cost": 5.98, + "product_key": "molestiae", + "notes": "Omnis id autem esse illo. Voluptatem quasi a dignissimos non fugit rerum ab. Velit perferendis natus aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10590, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0233", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-12", + "last_sent_date": null, + "due_date": "2020-09-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "41.05", + "balance": "41.05", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10590, + "quantity": 5, + "cost": 8.21, + "product_key": "quidem", + "notes": "Ea assumenda rerum quia. Ab magni porro iusto. Amet cupiditate ducimus totam ipsam. Dolorum dolorem ut temporibus nisi quas. Eum animi ut quos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10591, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0234", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-18", + "last_sent_date": null, + "due_date": "2020-04-17", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.56", + "balance": "8.56", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10591, + "quantity": 1, + "cost": 8.56, + "product_key": "repudiandae", + "notes": "Corrupti qui et et aut consequatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10592, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0235", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-28", + "last_sent_date": null, + "due_date": "2020-08-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "49.20", + "balance": "49.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10592, + "quantity": 8, + "cost": 6.15, + "product_key": "ducimus", + "notes": "Sit quia enim ad esse fugiat numquam eveniet non. Soluta ut eligendi harum a. Dolorem doloribus commodi qui quisquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10593, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0236", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-24", + "last_sent_date": null, + "due_date": "2020-08-09", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.04", + "balance": "34.04", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10593, + "quantity": 4, + "cost": 8.51, + "product_key": "quasi", + "notes": "Perferendis delectus quas labore repellat voluptas qui. Deleniti ullam placeat laboriosam et optio tenetur. Fugiat sed nostrum fugit et cumque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10594, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0237", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-08", + "last_sent_date": null, + "due_date": "2020-05-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.88", + "balance": "8.88", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10594, + "quantity": 4, + "cost": 2.22, + "product_key": "perferendis", + "notes": "Blanditiis consequatur sit voluptatem. Sit esse delectus dolore doloribus suscipit id non.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10595, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0238", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-02", + "last_sent_date": null, + "due_date": "2020-08-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.94", + "balance": "38.94", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10595, + "quantity": 6, + "cost": 6.49, + "product_key": "perspiciatis", + "notes": "Qui ab ad itaque non deleniti. Est voluptatem illum sint quasi. Ut neque iure excepturi. Et nulla sapiente ipsa autem temporibus nam. Iure omnis est voluptate atque. Eum quos quo ipsam molestiae eligendi eius.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10596, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0239", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-28", + "last_sent_date": null, + "due_date": "2020-07-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "35.82", + "balance": "35.82", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10596, + "quantity": 9, + "cost": 3.98, + "product_key": "possimus", + "notes": "Quae reprehenderit ea quod dolorem sed. Qui sit hic distinctio autem molestiae omnis. Est et velit sed ea delectus rem corrupti. Ut est quia sequi molestiae ad cupiditate mollitia. Mollitia dolor et molestias ad libero.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10597, + "client_id": 58, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0240", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-15", + "last_sent_date": null, + "due_date": "2020-06-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "47.90", + "balance": "47.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10597, + "quantity": 10, + "cost": 4.79, + "product_key": "molestiae", + "notes": "Sunt ut qui nobis. Molestias iusto omnis adipisci officia quia. Voluptatem et saepe quaerat et et ratione ratione.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:24.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10618, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0261", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-02", + "last_sent_date": null, + "due_date": "2020-09-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "53.84", + "balance": "53.84", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10618, + "quantity": 8, + "cost": 6.73, + "product_key": "quia", + "notes": "Porro qui veniam rem consequatur et voluptas. Ut doloribus atque odit blanditiis sit. Sequi minus quia expedita dolor molestias.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10619, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0262", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-03", + "last_sent_date": null, + "due_date": "2020-08-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.10", + "balance": "11.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10619, + "quantity": 2, + "cost": 5.55, + "product_key": "est", + "notes": "Et modi maxime ipsa doloribus ad recusandae. Deserunt laborum nam occaecati sint. Est architecto ipsa in voluptatem. Et ullam voluptatem et aspernatur velit ad placeat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:25.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10620, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0263", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-22", + "last_sent_date": null, + "due_date": "2020-04-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "33.50", + "balance": "33.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10620, + "quantity": 10, + "cost": 3.35, + "product_key": "qui", + "notes": "Commodi quia nobis id. Deserunt repellat officiis id velit ad ea. Possimus sunt accusantium culpa ut et et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10621, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0264", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-02", + "last_sent_date": null, + "due_date": "2020-04-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.29", + "balance": "17.29", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10621, + "quantity": 7, + "cost": 2.47, + "product_key": "qui", + "notes": "Molestiae voluptatem perspiciatis voluptas unde ducimus nihil aut ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10622, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0265", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-03", + "last_sent_date": null, + "due_date": "2020-04-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.00", + "balance": "34.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10622, + "quantity": 4, + "cost": 8.5, + "product_key": "id", + "notes": "Id non ea commodi numquam dolor vero magni.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10623, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0266", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-09", + "last_sent_date": null, + "due_date": "2020-09-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "2.36", + "balance": "2.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10623, + "quantity": 1, + "cost": 2.36, + "product_key": "sed", + "notes": "Beatae ipsa ducimus quos. Sequi quo et ex porro excepturi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10624, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0267", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-15", + "last_sent_date": null, + "due_date": "2020-09-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.38", + "balance": "34.38", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10624, + "quantity": 9, + "cost": 3.82, + "product_key": "distinctio", + "notes": "Distinctio labore commodi aspernatur at numquam magni qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10625, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0268", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", "date": "2020-05-12", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "last_sent_date": null, + "due_date": "2020-03-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.31", + "balance": "9.31", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10625, + "quantity": 7, + "cost": 1.33, + "product_key": "voluptas", + "notes": "Iusto et necessitatibus cupiditate aut quo at odit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1303, - "invoices": [ + "id": 10626, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0269", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-12", + "last_sent_date": null, + "due_date": "2020-08-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.48", + "balance": "5.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2507, - "amount": "4.56", - "refunded": "0.00" + "id": 10626, + "quantity": 1, + "cost": 5.48, + "product_key": "quos", + "notes": "Sed blanditiis cumque autem dolorem nostrum sapiente. Nulla fugit rem vel omnis aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2507, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "4.56", - "applied": "4.56", - "refunded": "0.00", - "date": "2019-12-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1304, - "invoices": [ + "id": 10627, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0270", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-11", + "last_sent_date": null, + "due_date": "2020-04-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "1.94", + "balance": "1.94", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2508, - "amount": "0.24", - "refunded": "0.00" + "id": 10627, + "quantity": 1, + "cost": 1.94, + "product_key": "et", + "notes": "Quis aut molestiae dolorem fugiat aperiam accusantium. Autem deleniti placeat vitae repellat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2508, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "0.24", - "applied": "0.24", - "refunded": "0.00", - "date": "2019-12-24", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1305, - "invoices": [ + "id": 10628, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0271", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-23", + "last_sent_date": null, + "due_date": "2020-09-17", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.97", + "balance": "17.97", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2509, - "amount": "2.80", - "refunded": "0.00" + "id": 10628, + "quantity": 3, + "cost": 5.99, + "product_key": "consectetur", + "notes": "Voluptatum voluptate consequatur accusamus aperiam. Porro dolores assumenda est similique rem quia magnam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2509, - "company_id": 1, - "client_id": 25, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10629, + "client_id": 59, "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "2.80", - "applied": "2.80", - "refunded": "0.00", + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0272", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-25", + "last_sent_date": null, + "due_date": "2020-04-17", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.05", + "balance": "8.05", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10629, + "quantity": 5, + "cost": 1.61, + "product_key": "nisi", + "notes": "Deserunt nostrum voluptas quo incidunt non qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10630, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0273", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-19", + "last_sent_date": null, + "due_date": "2020-07-17", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.10", + "balance": "42.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10630, + "quantity": 10, + "cost": 4.21, + "product_key": "corrupti", + "notes": "Facere dolores et ipsa perferendis. Vero sit nihil quae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10631, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0274", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-26", + "last_sent_date": null, + "due_date": "2020-07-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.70", + "balance": "20.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10631, + "quantity": 6, + "cost": 3.45, + "product_key": "voluptatum", + "notes": "Veritatis hic est cum qui aut. Aliquam aliquam nisi voluptatem esse ullam. Alias voluptatem perferendis numquam vero.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10632, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0275", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-23", + "last_sent_date": null, + "due_date": "2020-08-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "56.40", + "balance": "56.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10632, + "quantity": 8, + "cost": 7.05, + "product_key": "enim", + "notes": "Sed dignissimos eius eligendi vel natus facilis. Et animi rerum nihil deserunt ea ad qui. Quis modi voluptatem aliquid harum et rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10633, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0276", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-09", + "last_sent_date": null, + "due_date": "2020-07-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "26.43", + "balance": "26.43", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10633, + "quantity": 3, + "cost": 8.81, + "product_key": "qui", + "notes": "Amet nesciunt et cumque nam et. Expedita minus quas voluptas accusantium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10634, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0277", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-22", + "last_sent_date": null, + "due_date": "2020-08-05", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "79.30", + "balance": "79.30", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10634, + "quantity": 10, + "cost": 7.93, + "product_key": "aut", + "notes": "Quam explicabo placeat eaque sequi est natus omnis aut. Distinctio minus eos dicta veritatis. Fugit nam culpa ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10635, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0278", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-14", + "last_sent_date": null, + "due_date": "2020-03-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.92", + "balance": "13.92", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10635, + "quantity": 3, + "cost": 4.64, + "product_key": "commodi", + "notes": "Repudiandae et quo quasi dignissimos vel aut. Qui omnis earum eos officiis. Perferendis aliquam labore quas natus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10636, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0279", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-20", + "last_sent_date": null, + "due_date": "2020-08-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.14", + "balance": "4.14", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10636, + "quantity": 2, + "cost": 2.07, + "product_key": "adipisci", + "notes": "Qui mollitia alias occaecati quasi. Est accusamus dolorum ipsa. Sunt quam velit a.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10637, + "client_id": 59, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0280", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-03", + "last_sent_date": null, + "due_date": "2020-04-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.20", + "balance": "14.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10637, + "quantity": 4, + "cost": 3.55, + "product_key": "voluptas", + "notes": "Velit optio vitae dignissimos sint necessitatibus fugit. Qui repudiandae ut eos amet ut. Harum debitis occaecati laudantium temporibus impedit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:26.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10658, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0301", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-09", + "last_sent_date": null, + "due_date": "2020-08-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.84", + "balance": "28.84", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10658, + "quantity": 4, + "cost": 7.21, + "product_key": "enim", + "notes": "Amet est libero enim quae velit quos voluptatum. Animi ut debitis corrupti mollitia. Rem quia dolorem facere commodi. Deleniti autem et dolore quod dolorem. Ad dolores ut qui odit molestiae deleniti. Dolore sunt sit qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10659, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0302", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-14", + "last_sent_date": null, + "due_date": "2020-07-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.84", + "balance": "7.84", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10659, + "quantity": 2, + "cost": 3.92, + "product_key": "repellendus", + "notes": "Nulla qui atque cumque vel repellat qui. Suscipit necessitatibus molestiae in quo soluta deserunt. Consequuntur mollitia dolor perferendis impedit vel. Aliquid nemo quis vero odio officiis. Et quo quae ex suscipit ipsum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10660, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0303", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-25", + "last_sent_date": null, + "due_date": "2020-03-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.01", + "balance": "8.01", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10660, + "quantity": 1, + "cost": 8.01, + "product_key": "enim", + "notes": "Aut commodi nobis deleniti enim aperiam. Et in aut et molestiae blanditiis reprehenderit nihil id.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10661, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0304", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-23", + "last_sent_date": null, + "due_date": "2020-09-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.33", + "balance": "18.33", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10661, + "quantity": 3, + "cost": 6.11, + "product_key": "illum", + "notes": "Pariatur aut quia quia accusamus. A ex quia temporibus culpa. Voluptas ab minus accusamus hic expedita cumque et veniam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10662, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0305", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-02", + "last_sent_date": null, + "due_date": "2020-04-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "40.50", + "balance": "40.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10662, + "quantity": 9, + "cost": 4.5, + "product_key": "rerum", + "notes": "Provident quaerat exercitationem cupiditate modi. Quos temporibus eum dolor. Quisquam voluptas sed sunt earum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10663, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0306", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-25", + "last_sent_date": null, + "due_date": "2020-07-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "21.28", + "balance": "21.28", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10663, + "quantity": 4, + "cost": 5.32, + "product_key": "quaerat", + "notes": "Ut voluptatem doloremque et deleniti a.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10664, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0307", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-19", + "last_sent_date": null, + "due_date": "2020-07-16", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.68", + "balance": "7.68", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10664, + "quantity": 6, + "cost": 1.28, + "product_key": "nesciunt", + "notes": "Accusantium vel odit doloremque id repudiandae autem pariatur. Sint deserunt rerum aspernatur expedita ullam est. Doloremque consequatur magnam maxime rerum tempore cumque sit. Voluptas ullam hic reprehenderit dolore omnis ea.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10665, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0308", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-05", + "last_sent_date": null, + "due_date": "2020-04-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.20", + "balance": "38.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10665, + "quantity": 4, + "cost": 9.55, + "product_key": "omnis", + "notes": "Sit error optio sit eaque consectetur qui molestiae. Voluptatibus pariatur doloremque hic ipsum. Voluptatem ex minus maxime officiis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10666, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0309", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-19", + "last_sent_date": null, + "due_date": "2020-08-13", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.62", + "balance": "11.62", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10666, + "quantity": 7, + "cost": 1.66, + "product_key": "architecto", + "notes": "Corrupti molestias ipsum temporibus minus enim est. Facere ut totam consequatur neque eveniet quo. Omnis quidem qui explicabo ut velit saepe.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10667, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0310", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-05", + "last_sent_date": null, + "due_date": "2020-05-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "59.67", + "balance": "59.67", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10667, + "quantity": 9, + "cost": 6.63, + "product_key": "aut", + "notes": "Quasi aut non maxime itaque qui. Omnis molestiae aut delectus sit omnis aspernatur nesciunt nam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10668, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0311", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-16", + "last_sent_date": null, + "due_date": "2020-09-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "46.40", + "balance": "46.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10668, + "quantity": 10, + "cost": 4.64, + "product_key": "asperiores", + "notes": "Sed magnam facilis officia et consectetur dolorem. Officiis non consequatur corrupti omnis voluptas odio. Rerum minus ab tenetur aut sed laboriosam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10669, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0312", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-12", + "last_sent_date": null, + "due_date": "2020-04-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "47.52", + "balance": "47.52", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10669, + "quantity": 9, + "cost": 5.28, + "product_key": "distinctio", + "notes": "Quod doloremque fugit occaecati veniam. Exercitationem id quibusdam ea facere nisi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10670, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0313", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-02", + "last_sent_date": null, + "due_date": "2020-10-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.20", + "balance": "13.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10670, + "quantity": 10, + "cost": 1.32, + "product_key": "nisi", + "notes": "Odio iure sint aut. Qui optio et qui. Autem consequatur facere iure ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10671, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0314", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-27", + "last_sent_date": null, + "due_date": "2020-09-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.08", + "balance": "28.08", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10671, + "quantity": 6, + "cost": 4.68, + "product_key": "voluptas", + "notes": "Enim iure rerum sed repellat quo exercitationem. Nisi qui necessitatibus quo sequi quia dolor sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10672, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0315", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-21", + "last_sent_date": null, + "due_date": "2020-04-16", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "36.54", + "balance": "36.54", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10672, + "quantity": 9, + "cost": 4.06, + "product_key": "voluptatem", + "notes": "Velit dolorem nesciunt officiis est. Magni molestiae a nam. Consequatur voluptas similique et omnis rem et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10673, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0316", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-03", + "last_sent_date": null, + "due_date": "2020-08-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.12", + "balance": "25.12", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10673, + "quantity": 8, + "cost": 3.14, + "product_key": "fugiat", + "notes": "Et voluptas itaque sint sint eum beatae. Sit voluptate blanditiis doloribus ipsam. Est sequi aut distinctio neque dolorem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10674, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0317", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-01", + "last_sent_date": null, + "due_date": "2020-09-06", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "44.90", + "balance": "44.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10674, + "quantity": 5, + "cost": 8.98, + "product_key": "aperiam", + "notes": "Eos odit inventore et recusandae doloremque nisi ipsum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10675, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0318", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-18", + "last_sent_date": null, + "due_date": "2020-06-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "54.88", + "balance": "54.88", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10675, + "quantity": 8, + "cost": 6.86, + "product_key": "et", + "notes": "Dignissimos vel voluptas nobis voluptatum qui. Eum aut libero voluptate optio quasi aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10676, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0319", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-19", + "last_sent_date": null, + "due_date": "2020-03-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.70", + "balance": "38.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10676, + "quantity": 10, + "cost": 3.87, + "product_key": "dolores", + "notes": "Non qui ullam iure mollitia. Omnis nemo voluptates error eum. Fuga est odit magni porro impedit. Inventore officiis earum et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10677, + "client_id": 60, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0320", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-13", + "last_sent_date": null, + "due_date": "2020-09-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "49.84", + "balance": "49.84", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10677, + "quantity": 7, + "cost": 7.12, + "product_key": "expedita", + "notes": "Quia iste quidem iste. Perferendis quia reiciendis qui hic distinctio saepe quia. Necessitatibus quis error molestias. Natus commodi voluptatem impedit placeat ut. Vitae at voluptas beatae ut tempora.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:27.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10698, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0341", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-02", + "last_sent_date": null, + "due_date": "2020-08-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.00", + "balance": "16.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10698, + "quantity": 10, + "cost": 1.6, + "product_key": "consequatur", + "notes": "Dolore voluptas libero aliquam enim minima ad. Et vero accusamus et ipsa sed. In culpa assumenda in quis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10699, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0342", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-03", + "last_sent_date": null, + "due_date": "2020-04-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.48", + "balance": "12.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10699, + "quantity": 2, + "cost": 6.24, + "product_key": "delectus", + "notes": "Sed dolor molestiae error illo harum ut voluptates nisi. Voluptas aliquid consequatur quos magni ullam deserunt. Quo mollitia sapiente occaecati.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10700, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0343", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-19", + "last_sent_date": null, + "due_date": "2020-09-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.90", + "balance": "9.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10700, + "quantity": 9, + "cost": 1.1, + "product_key": "aut", + "notes": "Optio voluptas ea hic est voluptatem ipsum numquam suscipit. Nisi vel aliquid dolores eius officiis accusantium quia. Voluptas est ut facere rerum nihil commodi sunt. Dolorem officiis ex sed nam eos magni.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10701, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0344", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-22", + "last_sent_date": null, + "due_date": "2020-04-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "31.96", + "balance": "31.96", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10701, + "quantity": 4, + "cost": 7.99, + "product_key": "est", + "notes": "Voluptatem ducimus id rerum nam. Fugiat praesentium laudantium corrupti illum ut voluptatem omnis. Et at amet consequatur occaecati expedita mollitia dolorum. Corporis fugiat et voluptatibus est iusto.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10702, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0345", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-25", + "last_sent_date": null, + "due_date": "2020-05-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.15", + "balance": "6.15", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10702, + "quantity": 5, + "cost": 1.23, + "product_key": "culpa", + "notes": "Velit minus necessitatibus error. Itaque adipisci magnam quis alias sit laboriosam. Quidem ipsa sit aut. Et dignissimos explicabo consectetur excepturi labore libero. Et harum dolorem ut cupiditate inventore aperiam et. Et soluta deserunt suscipit sit voluptatum veniam optio ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10703, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0346", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-21", + "last_sent_date": null, + "due_date": "2020-07-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "89.50", + "balance": "89.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10703, + "quantity": 10, + "cost": 8.95, + "product_key": "libero", + "notes": "Cupiditate debitis at quidem facilis omnis est. Neque ut ab qui laboriosam. Omnis dignissimos libero saepe at sed aut quod minima. Officia et dolores laborum non id.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10704, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0347", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-23", + "last_sent_date": null, + "due_date": "2020-04-10", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "67.95", + "balance": "67.95", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10704, + "quantity": 9, + "cost": 7.55, + "product_key": "perspiciatis", + "notes": "Quia omnis beatae possimus nobis. Et optio veritatis quidem in quibusdam eius ipsam. Vitae at ipsum fuga molestias eligendi odit sapiente. Quia sapiente perferendis corporis earum quos incidunt quidem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10705, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0348", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-01", + "last_sent_date": null, + "due_date": "2020-10-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "36.08", + "balance": "36.08", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10705, + "quantity": 4, + "cost": 9.02, + "product_key": "cumque", + "notes": "In et non culpa consequatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10706, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0349", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-06", + "last_sent_date": null, + "due_date": "2020-04-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.00", + "balance": "14.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10706, + "quantity": 2, + "cost": 7, + "product_key": "asperiores", + "notes": "Enim illo voluptatem modi voluptas autem iure. Ullam eos aut a dolores. Rem rerum molestias sint vero.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10707, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0350", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-11", + "last_sent_date": null, + "due_date": "2020-09-14", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.18", + "balance": "5.18", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10707, + "quantity": 1, + "cost": 5.18, + "product_key": "quia", + "notes": "Autem rem quo facere dolores vitae. Est eos et ut ipsam ut natus. Aliquam ipsum occaecati voluptatem molestiae in quis qui impedit. Rerum aspernatur enim alias soluta. Et nihil qui est doloremque delectus vero. Et voluptas quas quisquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10708, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0351", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-18", + "last_sent_date": null, + "due_date": "2020-08-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.43", + "balance": "38.43", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10708, + "quantity": 7, + "cost": 5.49, + "product_key": "soluta", + "notes": "Harum voluptatem aut blanditiis perspiciatis nobis sunt et. Atque et reiciendis alias deserunt dolorem expedita iste. Officiis autem inventore qui voluptas similique vel.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10709, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0352", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-12", + "last_sent_date": null, + "due_date": "2020-06-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.40", + "balance": "14.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10709, + "quantity": 2, + "cost": 7.2, + "product_key": "quae", + "notes": "Qui doloremque nostrum ut non qui voluptas. Error eos voluptatibus id culpa. Eum qui in dolores qui est velit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:28.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10710, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0353", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-12", + "last_sent_date": null, + "due_date": "2020-09-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "46.60", + "balance": "46.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10710, + "quantity": 10, + "cost": 4.66, + "product_key": "sunt", + "notes": "A laudantium amet vero. Debitis deserunt et necessitatibus nihil rerum consequatur. Eos beatae aut beatae totam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10711, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0354", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-30", + "last_sent_date": null, + "due_date": "2020-08-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.38", + "balance": "25.38", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10711, + "quantity": 3, + "cost": 8.46, + "product_key": "tempore", + "notes": "Dignissimos amet aut vel quisquam quia iste consequatur. Autem eius voluptas repellendus dolores quasi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10712, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0355", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-07", + "last_sent_date": null, + "due_date": "2020-06-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "67.41", + "balance": "67.41", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10712, + "quantity": 7, + "cost": 9.63, + "product_key": "labore", + "notes": "Est earum atque error consequatur in. Officia voluptatibus velit at. Enim qui non et eligendi eius. Quia illum optio eius aliquid nisi a eius officiis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10713, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0356", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-30", + "last_sent_date": null, + "due_date": "2020-05-10", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.34", + "balance": "11.34", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10713, + "quantity": 3, + "cost": 3.78, + "product_key": "dolorem", + "notes": "Ut sunt qui nisi et. Repellat optio voluptas fugit. Quia quod eius libero repudiandae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10714, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0357", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-02", + "last_sent_date": null, + "due_date": "2020-07-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "71.52", + "balance": "71.52", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10714, + "quantity": 8, + "cost": 8.94, + "product_key": "eos", + "notes": "Voluptatem dolore a est eum sequi ab ut quisquam. Ipsa delectus atque numquam nisi pariatur dolor dolorem consequuntur. Voluptatem rerum molestiae alias voluptas eveniet unde porro. Omnis neque at alias nesciunt quo.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10715, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0358", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-29", + "last_sent_date": null, + "due_date": "2020-06-14", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.60", + "balance": "16.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10715, + "quantity": 10, + "cost": 1.66, + "product_key": "ut", + "notes": "Qui ea non perferendis omnis error recusandae cupiditate.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10716, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0359", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-10", + "last_sent_date": null, + "due_date": "2020-10-08", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.95", + "balance": "42.95", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10716, + "quantity": 5, + "cost": 8.59, + "product_key": "cupiditate", + "notes": "Et et hic culpa. Quia vero voluptatem quia aut aut rerum deleniti. Cum quisquam molestias nihil labore a. Enim vel voluptatum quod ducimus. Molestiae illum alias non blanditiis officiis et quis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10717, + "client_id": 61, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0360", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-25", + "last_sent_date": null, + "due_date": "2020-05-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "54.81", + "balance": "54.81", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10717, + "quantity": 9, + "cost": 6.09, + "product_key": "itaque", + "notes": "Repellat accusamus sint officiis quo. Nulla odio molestiae vel assumenda. Minima minus voluptatem facilis velit sapiente. Rerum repellendus in possimus ab sunt ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:29.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10738, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0381", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-07", + "last_sent_date": null, + "due_date": "2020-08-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.56", + "balance": "7.56", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10738, + "quantity": 1, + "cost": 7.56, + "product_key": "est", + "notes": "Deleniti id accusamus ut iusto atque. Consequatur consequatur reprehenderit minus consequuntur qui ab corporis. Aut ducimus sed ea quia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10739, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0382", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-28", + "last_sent_date": null, + "due_date": "2020-04-14", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.11", + "balance": "7.11", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10739, + "quantity": 3, + "cost": 2.37, + "product_key": "totam", + "notes": "Odio similique harum dolores repellendus sit asperiores. Iusto amet distinctio omnis saepe omnis vel.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10740, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0383", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-27", + "last_sent_date": null, + "due_date": "2020-06-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.22", + "balance": "13.22", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10740, + "quantity": 2, + "cost": 6.61, + "product_key": "quas", + "notes": "Eaque deserunt et illo nihil voluptatem veniam. Rerum facilis qui reiciendis nemo aut est. Culpa nihil et cum ex. Alias autem adipisci ut laudantium quo est.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10741, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0384", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-14", + "last_sent_date": null, + "due_date": "2020-05-06", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "68.46", + "balance": "68.46", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10741, + "quantity": 7, + "cost": 9.78, + "product_key": "consequatur", + "notes": "Minus perspiciatis voluptatem error omnis id nihil animi. Reprehenderit fuga blanditiis et accusantium sit. Id rem cumque eligendi sit unde sed.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10742, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0385", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-15", + "last_sent_date": null, + "due_date": "2020-06-10", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "51.20", + "balance": "51.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10742, + "quantity": 8, + "cost": 6.4, + "product_key": "quis", + "notes": "Iure debitis illum ad mollitia autem repellat. Ut neque reiciendis vitae omnis porro explicabo hic. Praesentium minima nobis possimus rem magnam rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10743, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0386", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-30", + "last_sent_date": null, + "due_date": "2020-05-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.32", + "balance": "3.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10743, + "quantity": 1, + "cost": 3.32, + "product_key": "expedita", + "notes": "Nobis libero aut nemo deleniti amet aut. Aliquid numquam deserunt quo dolores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10744, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0387", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-20", + "last_sent_date": null, + "due_date": "2020-06-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.56", + "balance": "10.56", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10744, + "quantity": 8, + "cost": 1.32, + "product_key": "in", + "notes": "Quod totam est deserunt nemo a non ea. Quam est sit alias dolorem. Reiciendis unde soluta non incidunt. Quam ut voluptas ab temporibus voluptates. Maxime enim est unde nihil ut minima.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10745, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0388", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-26", + "last_sent_date": null, + "due_date": "2020-07-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "68.32", + "balance": "68.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10745, + "quantity": 7, + "cost": 9.76, + "product_key": "porro", + "notes": "Qui est deleniti cum aliquid odio nostrum optio. Fuga qui quia amet dolore et ex. Omnis eum qui autem ullam deleniti ab molestias.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10746, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0389", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-09", + "last_sent_date": null, + "due_date": "2020-04-09", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.48", + "balance": "11.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10746, + "quantity": 2, + "cost": 5.74, + "product_key": "rerum", + "notes": "Assumenda optio sit illo in. Autem dicta sit est architecto. Quibusdam totam consequatur quibusdam et et est in. Fugit molestiae animi debitis inventore eaque. Ipsa ullam qui aspernatur accusantium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10747, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0390", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-08", + "last_sent_date": null, + "due_date": "2020-04-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "43.20", + "balance": "43.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10747, + "quantity": 9, + "cost": 4.8, + "product_key": "tempore", + "notes": "Officia molestiae et rerum optio. Fugiat aut quia non quo. Repellendus quos ab cum sapiente ex et. Unde ut rerum saepe rem voluptates. Voluptate sunt aut assumenda occaecati omnis deleniti. Eum ratione magni est velit voluptas consequatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10748, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0391", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-06", + "last_sent_date": null, + "due_date": "2020-05-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.68", + "balance": "13.68", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10748, + "quantity": 3, + "cost": 4.56, + "product_key": "dolores", + "notes": "Rerum ea nostrum cupiditate temporibus fugiat occaecati ipsa officia. Nihil inventore unde provident rerum veniam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10749, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0392", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-15", + "last_sent_date": null, + "due_date": "2020-09-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "29.32", + "balance": "29.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10749, + "quantity": 4, + "cost": 7.33, + "product_key": "omnis", + "notes": "Tempora et minima enim veritatis id. Vel asperiores tempora cum sint architecto accusantium recusandae. Sint ut quibusdam provident qui provident vel aliquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10750, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0393", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-28", + "last_sent_date": null, + "due_date": "2020-06-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.47", + "balance": "8.47", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10750, + "quantity": 7, + "cost": 1.21, + "product_key": "explicabo", + "notes": "Debitis at nulla omnis non ullam quae. Ea et doloremque laboriosam officiis qui omnis quae sit. Dolorem delectus eos quia eius. Sit quasi provident voluptates tempora sint.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10751, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0394", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-21", + "last_sent_date": null, + "due_date": "2020-08-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "30.87", + "balance": "30.87", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10751, + "quantity": 7, + "cost": 4.41, + "product_key": "autem", + "notes": "Omnis iste vel sunt. Tenetur blanditiis atque ratione atque inventore eius praesentium. Sed quo molestiae est quis. Et laudantium et ut dolores et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10752, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0395", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-19", + "last_sent_date": null, + "due_date": "2020-07-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.83", + "balance": "28.83", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10752, + "quantity": 3, + "cost": 9.61, + "product_key": "quo", + "notes": "Harum dolor consequuntur quia tempora. Corporis eos eos nisi maiores impedit. Sit ut omnis consequatur veritatis. Pariatur quo qui veniam praesentium quia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10753, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0396", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-26", + "last_sent_date": null, + "due_date": "2020-10-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "70.88", + "balance": "70.88", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10753, + "quantity": 8, + "cost": 8.86, + "product_key": "quaerat", + "notes": "Ea et eos voluptate voluptates. Ex qui expedita asperiores. Ut et est sunt aliquid placeat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10754, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0397", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-26", + "last_sent_date": null, + "due_date": "2020-05-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.06", + "balance": "42.06", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10754, + "quantity": 6, + "cost": 7.01, + "product_key": "illo", + "notes": "Omnis tenetur sed aut sit nobis est. In ut facilis dolor laborum nemo. Molestiae et beatae doloribus fugit aut minus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10755, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0398", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-06", + "last_sent_date": null, + "due_date": "2020-09-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.84", + "balance": "9.84", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10755, + "quantity": 6, + "cost": 1.64, + "product_key": "aliquid", + "notes": "Voluptatem quam et quisquam est officiis. Saepe deleniti tempore enim tempora ea et. Excepturi a numquam temporibus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10756, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0399", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-08", + "last_sent_date": null, + "due_date": "2020-09-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "33.30", + "balance": "33.30", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10756, + "quantity": 10, + "cost": 3.33, + "product_key": "ducimus", + "notes": "Amet dolor omnis officiis aut autem amet voluptates. In sit debitis error et expedita quidem et. Sed dignissimos vitae autem iusto inventore numquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10757, + "client_id": 62, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0400", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-03", + "last_sent_date": null, + "due_date": "2020-04-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "53.10", + "balance": "53.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10757, + "quantity": 10, + "cost": 5.31, + "product_key": "porro", + "notes": "Autem natus consequatur ut dolorem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:30.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10778, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0421", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-30", + "last_sent_date": null, + "due_date": "2020-04-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "72.88", + "balance": "72.88", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10778, + "quantity": 8, + "cost": 9.11, + "product_key": "iure", + "notes": "Ea dolores officia fugit rem perferendis quia. Dolorem consectetur consequatur consequatur labore.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10779, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0422", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-04", + "last_sent_date": null, + "due_date": "2020-10-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.36", + "balance": "25.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10779, + "quantity": 4, + "cost": 6.34, + "product_key": "quaerat", + "notes": "In quam repellat et veritatis. Quis et aliquid autem alias sunt ea libero. Veritatis qui eos et quia iusto. Dolor amet quos qui quis laborum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10780, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0423", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-28", + "last_sent_date": null, + "due_date": "2020-06-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "35.12", + "balance": "35.12", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10780, + "quantity": 4, + "cost": 8.78, + "product_key": "omnis", + "notes": "Numquam rem laborum velit aliquam qui in. Architecto quis veniam explicabo. Ut doloribus aut eos a error. Quisquam sunt ut rerum occaecati sit maxime sint. In tempora necessitatibus aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10781, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0424", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-09", + "last_sent_date": null, + "due_date": "2020-06-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "47.50", + "balance": "47.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10781, + "quantity": 10, + "cost": 4.75, + "product_key": "sit", + "notes": "Temporibus et veritatis blanditiis in ad eos eveniet. Eos ducimus ea quo dolor. Nihil cum et illum consequuntur quidem corporis cupiditate. Aut sequi facere quo aperiam ab atque. Rerum qui praesentium quia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10782, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0425", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-07", + "last_sent_date": null, + "due_date": "2020-08-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "47.39", + "balance": "47.39", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10782, + "quantity": 7, + "cost": 6.77, + "product_key": "mollitia", + "notes": "Eaque quia sint sit consequuntur laudantium doloremque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10783, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0426", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-19", + "last_sent_date": null, + "due_date": "2020-07-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "99.00", + "balance": "99.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10783, + "quantity": 10, + "cost": 9.9, + "product_key": "aliquam", + "notes": "Itaque facere tempore laudantium quia. Dicta inventore sint distinctio odio eius. Quisquam dicta repudiandae esse magni et qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10784, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0427", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-28", + "last_sent_date": null, + "due_date": "2020-05-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.22", + "balance": "5.22", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10784, + "quantity": 1, + "cost": 5.22, + "product_key": "voluptatem", + "notes": "Esse aut excepturi et consequatur provident atque voluptas. Maxime qui veniam nam ut beatae. Illo est aut facilis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10785, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0428", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-14", + "last_sent_date": null, + "due_date": "2020-07-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.04", + "balance": "10.04", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10785, + "quantity": 4, + "cost": 2.51, + "product_key": "veniam", + "notes": "Sed tenetur exercitationem tempora voluptates et minima.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10786, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0429", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-04", + "last_sent_date": null, + "due_date": "2020-06-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.80", + "balance": "19.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10786, + "quantity": 3, + "cost": 6.6, + "product_key": "at", + "notes": "Quae quis fugit ea voluptatibus. Ut in at dolorem aut qui. Minus quisquam tempore ratione numquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10787, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0430", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-18", + "last_sent_date": null, + "due_date": "2020-08-10", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.04", + "balance": "5.04", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10787, + "quantity": 2, + "cost": 2.52, + "product_key": "excepturi", + "notes": "At eum eaque iure quia rerum autem aut. Ut perferendis in eos at distinctio commodi. Hic doloribus et excepturi distinctio suscipit magnam deleniti. Veritatis placeat quasi odio. Quia placeat eos eaque autem animi quia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10788, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0431", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-12", + "last_sent_date": null, + "due_date": "2020-08-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "95.70", + "balance": "95.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10788, + "quantity": 10, + "cost": 9.57, + "product_key": "dolores", + "notes": "Deleniti facere quidem consequatur vel consectetur debitis. Cupiditate sapiente rerum omnis ut. Aliquam debitis quod architecto pariatur veniam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10789, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0432", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-26", + "last_sent_date": null, + "due_date": "2020-07-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "83.10", + "balance": "83.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10789, + "quantity": 10, + "cost": 8.31, + "product_key": "est", + "notes": "Illum et tenetur quasi consequatur et. Nostrum quia veritatis veritatis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10790, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0433", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-26", + "last_sent_date": null, + "due_date": "2020-04-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.48", + "balance": "12.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10790, + "quantity": 3, + "cost": 4.16, + "product_key": "corporis", + "notes": "Dolor laboriosam ducimus vel quibusdam reiciendis sequi recusandae. Nostrum pariatur occaecati voluptas omnis eligendi harum fuga. Est et repudiandae possimus optio.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10791, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0434", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-17", + "last_sent_date": null, + "due_date": "2020-06-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.80", + "balance": "12.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10791, + "quantity": 2, + "cost": 6.4, + "product_key": "odit", + "notes": "Magnam molestiae nemo quis facilis ea magnam accusantium. Et dolores molestias inventore et fugit facilis quia omnis. Voluptatem amet id alias quam sit omnis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10792, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0435", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-03", + "last_sent_date": null, + "due_date": "2020-06-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.40", + "balance": "5.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10792, + "quantity": 1, + "cost": 5.4, + "product_key": "facere", + "notes": "Error ea doloribus sit. Aliquam est sit aut aspernatur et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10793, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0436", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-16", + "last_sent_date": null, + "due_date": "2020-10-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.36", + "balance": "17.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10793, + "quantity": 8, + "cost": 2.17, + "product_key": "deleniti", + "notes": "Assumenda quia dolorum rerum. Ut alias quos tenetur ut magni similique. Quas corrupti voluptatem unde rerum sit. Quis alias iure aut. Ea facere perferendis pariatur recusandae sit dolores delectus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10794, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0437", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-29", + "last_sent_date": null, + "due_date": "2020-03-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.01", + "balance": "24.01", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10794, + "quantity": 7, + "cost": 3.43, + "product_key": "non", + "notes": "Sed deserunt sit praesentium qui. Voluptas nihil ipsum officia. Eos dolorem dolorum deserunt maiores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10795, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0438", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-30", + "last_sent_date": null, + "due_date": "2020-05-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.31", + "balance": "23.31", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10795, + "quantity": 7, + "cost": 3.33, + "product_key": "excepturi", + "notes": "Sunt hic adipisci accusamus. Dolorum ea esse et illum. Minima blanditiis ut harum modi at. Voluptatibus aut ipsa eum dolorum soluta.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10796, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0439", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-29", + "last_sent_date": null, + "due_date": "2020-07-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "38.10", + "balance": "38.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10796, + "quantity": 10, + "cost": 3.81, + "product_key": "et", + "notes": "Nobis ut ea aut atque est nisi est. Ab ab in inventore iure odit sed. Excepturi possimus consequuntur autem. Corporis incidunt in fuga sint sed ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10797, + "client_id": 63, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0440", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-14", + "last_sent_date": null, + "due_date": "2020-07-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "34.96", + "balance": "34.96", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10797, + "quantity": 4, + "cost": 8.74, + "product_key": "ut", + "notes": "Commodi eveniet totam mollitia illum. Id sapiente ab possimus earum quis in. Non distinctio id ut officiis sed voluptates et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:31.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10818, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0461", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-12", + "last_sent_date": null, + "due_date": "2020-08-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.95", + "balance": "13.95", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10818, + "quantity": 5, + "cost": 2.79, + "product_key": "consequatur", + "notes": "Ducimus labore animi a dignissimos. Reiciendis dolores distinctio tempore sed.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10819, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0462", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-03", + "last_sent_date": null, + "due_date": "2020-09-19", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "32.00", + "balance": "32.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10819, + "quantity": 4, + "cost": 8, + "product_key": "rem", + "notes": "Et ut voluptatem veritatis. Commodi nostrum quo velit iure ratione molestiae et. Et magnam provident sed rerum accusantium qui. Est beatae et id ut et id rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10820, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0463", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-08", + "last_sent_date": null, + "due_date": "2020-09-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "27.09", + "balance": "27.09", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10820, + "quantity": 3, + "cost": 9.03, + "product_key": "est", + "notes": "Et repudiandae aut nesciunt harum. Corporis eos porro ex rerum corporis in facere.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10821, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0464", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-24", + "last_sent_date": null, + "due_date": "2020-04-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.65", + "balance": "8.65", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10821, + "quantity": 5, + "cost": 1.73, + "product_key": "in", + "notes": "Nisi dolores molestiae voluptas delectus beatae. Optio quia qui et perspiciatis. Adipisci numquam hic natus velit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10822, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0465", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-10", + "last_sent_date": null, + "due_date": "2020-05-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.93", + "balance": "20.93", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10822, + "quantity": 7, + "cost": 2.99, + "product_key": "deleniti", + "notes": "Quia in dolores magnam laudantium aliquid quia. Non odit fuga et ut est est quo repudiandae. Et repellat voluptatem reprehenderit enim aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:32.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10823, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0466", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-03", + "last_sent_date": null, + "due_date": "2020-04-19", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.10", + "balance": "13.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10823, + "quantity": 10, + "cost": 1.31, + "product_key": "quo", + "notes": "Fuga explicabo corporis aliquid pariatur est qui dolor. Exercitationem itaque nostrum vitae omnis quia laboriosam beatae quis. Est praesentium ratione id nam est eos eius dignissimos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10824, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0467", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-28", + "last_sent_date": null, + "due_date": "2020-08-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.01", + "balance": "17.01", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10824, + "quantity": 7, + "cost": 2.43, + "product_key": "dolores", + "notes": "Harum a quaerat molestiae quasi voluptatem porro. Sapiente nisi fugiat qui voluptatibus sed voluptatem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10825, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0468", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-08", + "last_sent_date": null, + "due_date": "2020-07-08", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.26", + "balance": "28.26", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10825, + "quantity": 6, + "cost": 4.71, + "product_key": "veniam", + "notes": "Repudiandae quia quos ratione alias odit ad. Odio et commodi aut incidunt. Dolorem incidunt sed vel molestias cumque quibusdam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10826, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0469", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-05", + "last_sent_date": null, + "due_date": "2020-09-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.59", + "balance": "25.59", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10826, + "quantity": 3, + "cost": 8.53, + "product_key": "quas", + "notes": "Aut impedit dolores porro quae aut accusantium voluptatem rerum. Quia ea aut amet nihil aperiam sapiente. Qui harum et quia libero dolor. Quidem voluptates eos facere et dolorem. Est rem nesciunt nihil rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10827, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0470", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-12", + "last_sent_date": null, + "due_date": "2020-07-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "13.56", + "balance": "13.56", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10827, + "quantity": 4, + "cost": 3.39, + "product_key": "voluptatem", + "notes": "Asperiores odit odio excepturi sed ea vel eos. Minus dolorum quis rerum odit dolor harum excepturi eveniet. Debitis officia aut autem tempore molestiae facere laborum nisi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10828, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0471", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-22", + "last_sent_date": null, + "due_date": "2020-08-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.18", + "balance": "6.18", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10828, + "quantity": 1, + "cost": 6.18, + "product_key": "fugiat", + "notes": "Corrupti autem ut maxime veniam autem nostrum fuga ab. Dignissimos et rerum eligendi adipisci praesentium fugiat ea ad. Totam iusto quisquam sit rerum repellat perspiciatis dolores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10829, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0472", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-17", + "last_sent_date": null, + "due_date": "2020-04-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "26.40", + "balance": "26.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10829, + "quantity": 3, + "cost": 8.8, + "product_key": "rerum", + "notes": "Voluptates ut earum rem iure corporis enim. Voluptas et quo et quia. Corrupti ex molestias iure earum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10830, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0473", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-06", + "last_sent_date": null, + "due_date": "2020-09-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.52", + "balance": "25.52", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10830, + "quantity": 4, + "cost": 6.38, + "product_key": "temporibus", + "notes": "Ut quia provident rerum quod esse laudantium. Corrupti similique doloremque corrupti.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10831, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0474", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-04", + "last_sent_date": null, + "due_date": "2020-04-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.05", + "balance": "8.05", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10831, + "quantity": 7, + "cost": 1.15, + "product_key": "quia", + "notes": "Ut qui praesentium itaque. Natus quibusdam in eum voluptate. Aut nihil totam qui enim fugit harum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10832, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0475", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-04", + "last_sent_date": null, + "due_date": "2020-09-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.44", + "balance": "10.44", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10832, + "quantity": 2, + "cost": 5.22, + "product_key": "iusto", + "notes": "At fugit qui fuga tempora harum quia dolor.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10833, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0476", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-15", + "last_sent_date": null, + "due_date": "2020-09-24", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.16", + "balance": "24.16", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10833, + "quantity": 8, + "cost": 3.02, + "product_key": "dolore", + "notes": "Ut quis voluptate et reiciendis ratione et ab. Eligendi quibusdam sit unde distinctio architecto facilis ab. A voluptatum eius aut repellendus vel voluptatem. Sed aut praesentium reiciendis voluptatum qui est excepturi ipsum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10834, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0477", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-15", + "last_sent_date": null, + "due_date": "2020-08-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.90", + "balance": "15.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10834, + "quantity": 3, + "cost": 5.3, + "product_key": "molestiae", + "notes": "Quam ea sed eius eligendi. Quod inventore sunt quia voluptatem necessitatibus hic cum necessitatibus. Exercitationem tempora adipisci accusantium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10835, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0478", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-06", + "last_sent_date": null, + "due_date": "2020-09-24", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.69", + "balance": "3.69", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10835, + "quantity": 1, + "cost": 3.69, + "product_key": "aperiam", + "notes": "Et ea explicabo non iste dicta. Aut deleniti dignissimos provident doloribus aut quidem. Enim velit hic expedita labore magni.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10836, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0479", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-25", + "last_sent_date": null, + "due_date": "2020-07-24", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "32.20", + "balance": "32.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10836, + "quantity": 7, + "cost": 4.6, + "product_key": "nulla", + "notes": "Est nihil omnis facere sint voluptatem. Quae quos aut ut enim quisquam. Magni aperiam quisquam sit repudiandae omnis. Vel voluptatem dolorem quas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10837, + "client_id": 64, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0480", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-02", + "last_sent_date": null, + "due_date": "2020-09-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.64", + "balance": "24.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10837, + "quantity": 7, + "cost": 3.52, + "product_key": "error", + "notes": "Et reiciendis velit error ut et nemo. Dolorum quos et iste delectus. Excepturi sint impedit ea non.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:33.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10858, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0501", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-30", + "last_sent_date": null, + "due_date": "2020-06-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.68", + "balance": "23.68", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10858, + "quantity": 8, + "cost": 2.96, + "product_key": "et", + "notes": "Atque voluptas non veniam velit exercitationem. Ea omnis officiis voluptate nobis neque possimus ut. Est odit ut veritatis vitae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10859, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0502", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-28", + "last_sent_date": null, + "due_date": "2020-09-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.22", + "balance": "23.22", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10859, + "quantity": 9, + "cost": 2.58, + "product_key": "ea", + "notes": "Aut similique eum dolores non mollitia. Ex dicta voluptas ad atque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10860, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0503", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-08", + "last_sent_date": null, + "due_date": "2020-03-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.13", + "balance": "9.13", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10860, + "quantity": 1, + "cost": 9.13, + "product_key": "modi", + "notes": "Enim odit sit temporibus itaque illo aspernatur. Aperiam praesentium voluptatum repellendus blanditiis quibusdam repellat omnis consequuntur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10861, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0504", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-31", + "last_sent_date": null, + "due_date": "2020-05-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.56", + "balance": "16.56", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10861, + "quantity": 8, + "cost": 2.07, + "product_key": "esse", + "notes": "Sequi ex odit dolores quisquam. Assumenda molestiae delectus dolorem voluptatem cum. Et ipsum rem eaque. Eligendi quidem qui possimus ipsam consequuntur vel qui ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10862, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0505", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-25", + "last_sent_date": null, + "due_date": "2020-07-06", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "40.14", + "balance": "40.14", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10862, + "quantity": 9, + "cost": 4.46, + "product_key": "explicabo", + "notes": "Quas sunt quia aperiam accusantium. Repudiandae rerum quae possimus debitis repudiandae dolores qui dolores. Est perspiciatis qui ut dolor. Aliquid et maxime corporis ullam ducimus esse et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10863, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0506", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-20", + "last_sent_date": null, + "due_date": "2020-06-06", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.68", + "balance": "10.68", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10863, + "quantity": 6, + "cost": 1.78, + "product_key": "ut", + "notes": "Sed velit blanditiis et repellat soluta excepturi. Repellat culpa necessitatibus dolorem. Delectus dolor illum ab alias facere dolores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10864, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0507", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-19", + "last_sent_date": null, + "due_date": "2020-05-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.86", + "balance": "19.86", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10864, + "quantity": 6, + "cost": 3.31, + "product_key": "eveniet", + "notes": "Necessitatibus et vel eos et. Nihil quisquam alias illo facilis similique doloribus. Ut occaecati laboriosam nostrum ut repellendus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10865, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0508", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-11", + "last_sent_date": null, + "due_date": "2020-06-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.20", + "balance": "6.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10865, + "quantity": 5, + "cost": 1.24, + "product_key": "officia", + "notes": "Quam neque voluptatum ea enim et. Sed rem ipsam repellendus. Quidem a minus dolorem quisquam. Sunt rerum tempore nisi dicta iste vero.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10866, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0509", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-30", + "last_sent_date": null, + "due_date": "2020-07-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "35.96", + "balance": "35.96", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10866, + "quantity": 4, + "cost": 8.99, + "product_key": "ea", + "notes": "Sed rerum id velit ut. Delectus nisi consequatur ab rerum et nulla odit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10867, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0510", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-02", + "last_sent_date": null, + "due_date": "2020-07-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "75.24", + "balance": "75.24", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10867, + "quantity": 9, + "cost": 8.36, + "product_key": "velit", + "notes": "Amet nulla sit sequi esse molestias harum explicabo accusantium. Est exercitationem eum et rem exercitationem in iusto veritatis. Repudiandae ad veniam eveniet rerum. Nemo provident maxime nulla iusto unde voluptates omnis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10868, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0511", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-01", + "last_sent_date": null, + "due_date": "2020-08-09", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "39.20", + "balance": "39.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10868, + "quantity": 10, + "cost": 3.92, + "product_key": "aut", + "notes": "Consequatur voluptas ut cumque esse hic. Adipisci incidunt delectus illum et fuga saepe quod. Corrupti est et earum iusto. Voluptatum officiis molestiae perspiciatis. Debitis id aliquid consequuntur beatae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10869, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0512", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-18", + "last_sent_date": null, + "due_date": "2020-06-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "53.62", + "balance": "53.62", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10869, + "quantity": 7, + "cost": 7.66, + "product_key": "voluptate", + "notes": "Nesciunt dignissimos aut ad quasi rerum. Magnam laboriosam sed est omnis dolores. Qui repudiandae esse molestiae nihil rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10870, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0513", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-10", + "last_sent_date": null, + "due_date": "2020-08-03", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.07", + "balance": "7.07", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10870, + "quantity": 7, + "cost": 1.01, + "product_key": "quas", + "notes": "Est perspiciatis accusamus nostrum labore. Sapiente quis sunt iure molestiae praesentium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10871, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0514", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-20", + "last_sent_date": null, + "due_date": "2020-08-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.67", + "balance": "12.67", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10871, + "quantity": 7, + "cost": 1.81, + "product_key": "vel", + "notes": "Quasi ipsam consequuntur quaerat qui vel similique sapiente vitae. Ea consequatur nihil veniam sed et. Quia id occaecati cum unde placeat et exercitationem itaque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10872, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0515", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-29", + "last_sent_date": null, + "due_date": "2020-08-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "70.00", + "balance": "70.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10872, + "quantity": 8, + "cost": 8.75, + "product_key": "non", + "notes": "Qui quo tempore ad aut. Asperiores hic accusamus nihil veritatis. Iure accusamus asperiores quisquam eum eum et aut. Eius deleniti deserunt illum repellat dolorum reprehenderit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10873, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0516", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-15", + "last_sent_date": null, + "due_date": "2020-07-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "3.41", + "balance": "3.41", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10873, + "quantity": 1, + "cost": 3.41, + "product_key": "enim", + "notes": "Quaerat commodi eos voluptas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10874, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0517", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-21", + "last_sent_date": null, + "due_date": "2020-08-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.90", + "balance": "23.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10874, + "quantity": 5, + "cost": 4.78, + "product_key": "eum", + "notes": "Non sed repellendus quidem voluptatem ut in. Voluptas id magnam saepe eius rerum aut delectus. Aut iste ipsa minima voluptatem ut autem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10875, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0518", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-25", + "last_sent_date": null, + "due_date": "2020-04-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "56.88", + "balance": "56.88", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10875, + "quantity": 8, + "cost": 7.11, + "product_key": "dolorem", + "notes": "Odio accusamus possimus vero deserunt provident impedit. Molestiae quas qui temporibus quo maiores et. Autem molestiae in beatae eaque delectus nulla.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10876, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0519", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", "date": "2020-04-21", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "last_sent_date": null, + "due_date": "2020-07-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "30.40", + "balance": "30.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10876, + "quantity": 10, + "cost": 3.04, + "product_key": "ipsa", + "notes": "Maxime voluptas iure et in. Qui qui voluptatem deserunt qui totam nostrum veniam ut. Ut tempore quae error eos ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1306, - "invoices": [ + "id": 10877, + "client_id": 65, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0520", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-29", + "last_sent_date": null, + "due_date": "2020-07-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.00", + "balance": "14.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2510, - "amount": "59.80", - "refunded": "0.00" + "id": 10877, + "quantity": 8, + "cost": 1.75, + "product_key": "voluptatem", + "notes": "Eius aspernatur quis beatae sapiente voluptate et. Aliquam ut molestiae consequatur nam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:34.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2510, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "59.80", - "applied": "59.80", - "refunded": "0.00", - "date": "2020-02-23", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1307, - "invoices": [ + "id": 10898, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0541", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-01", + "last_sent_date": null, + "due_date": "2020-05-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "52.99", + "balance": "52.99", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2511, - "amount": "3.10", - "refunded": "0.00" + "id": 10898, + "quantity": 7, + "cost": 7.57, + "product_key": "ducimus", + "notes": "Aliquam rem quibusdam ratione in sit. Iure est omnis et inventore qui et magni. Recusandae fugit ea atque tempore.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2511, - "company_id": 1, - "client_id": 25, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "3.10", - "applied": "3.10", - "refunded": "0.00", - "date": "2020-01-22", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-03-12", - "created_at": "2020-03-12", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1308, - "invoices": [ + "id": 10899, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0542", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-15", + "last_sent_date": null, + "due_date": "2020-08-31", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "71.60", + "balance": "71.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2558, - "amount": "100.00", - "refunded": "0.00" + "id": 10899, + "quantity": 10, + "cost": 7.16, + "product_key": "non", + "notes": "Minus incidunt placeat odio enim. Aut sint dignissimos dolor porro quos. Soluta in at quas est dolore eum quisquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2558, - "company_id": 1, - "client_id": 26, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "100.00", - "applied": "100.00", - "refunded": "0.00", - "date": "2020-04-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-04-04", - "created_at": "2020-04-04", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1309, - "invoices": [ + "id": 10900, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0543", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-25", + "last_sent_date": null, + "due_date": "2020-04-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.40", + "balance": "16.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 2559, - "amount": "50.00", - "refunded": "0.00" + "id": 10900, + "quantity": 8, + "cost": 2.05, + "product_key": "distinctio", + "notes": "Consectetur similique eaque molestiae facere. Voluptatibus rem nihil deleniti sequi. Occaecati voluptatem et repudiandae et et magnam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 2559, - "company_id": 1, - "client_id": 26, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "50.00", - "applied": "50.00", - "refunded": "0.00", - "date": "2020-04-04", - "transaction_reference": "", - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-04-04", - "created_at": "2020-04-04", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1310, - "invoices": [ + "id": 10901, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0544", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-08", + "last_sent_date": null, + "due_date": "2020-06-24", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.64", + "balance": "19.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 170, - "amount": "1.99", - "refunded": "0.00" + "id": 10901, + "quantity": 4, + "cost": 4.91, + "product_key": "illo", + "notes": "Nostrum sapiente aut at. Maxime non aspernatur a eligendi amet ut. Quod repellat magnam explicabo sunt quis id quia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 170, - "company_id": 1, - "client_id": 10, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "1.99", - "applied": "1.99", - "refunded": "0.00", - "date": "2020-04-04", - "transaction_reference": null, - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 1, - "updated_at": "2020-04-04", - "created_at": "2020-04-04", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1311, - "invoices": [ + "id": 10902, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0545", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-30", + "last_sent_date": null, + "due_date": "2020-07-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.03", + "balance": "16.03", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 4, - "amount": "10.00", - "refunded": "0.00" + "id": 10902, + "quantity": 7, + "cost": 2.29, + "product_key": "aut", + "notes": "Voluptas eaque qui ea hic voluptatem. Non atque nostrum ut. Exercitationem corporis sequi qui officiis voluptatem iste reprehenderit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 4, - "company_id": 1, - "client_id": 1, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10903, + "client_id": 66, "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "10.00", - "applied": "10.00", - "refunded": "0.00", + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0546", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-18", + "last_sent_date": null, + "due_date": "2020-08-13", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.36", + "balance": "22.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10903, + "quantity": 4, + "cost": 5.59, + "product_key": "maxime", + "notes": "Qui nesciunt aperiam tempore ipsa esse ex nulla. Aut et reiciendis vero aut ea minus. Accusantium aut quo debitis quaerat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10904, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0547", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-25", + "last_sent_date": null, + "due_date": "2020-07-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "40.86", + "balance": "40.86", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10904, + "quantity": 9, + "cost": 4.54, + "product_key": "cum", + "notes": "Molestiae unde sapiente dicta ut. Numquam vitae eligendi non. Vel natus sint doloribus consequatur excepturi blanditiis qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10905, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0548", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-12", + "last_sent_date": null, + "due_date": "2020-05-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.40", + "balance": "15.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10905, + "quantity": 4, + "cost": 3.85, + "product_key": "sit", + "notes": "Consequatur quas et id quam. Non et excepturi ab minus. Esse excepturi dicta veritatis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10906, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0549", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-25", + "last_sent_date": null, + "due_date": "2020-06-10", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "99.30", + "balance": "99.30", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10906, + "quantity": 10, + "cost": 9.93, + "product_key": "expedita", + "notes": "Possimus officiis aut distinctio itaque atque. Et optio eligendi quia ut ad vitae. Modi velit repellat ex est voluptatum. Quam animi quas necessitatibus consequatur modi et adipisci.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10907, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0550", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-27", + "last_sent_date": null, + "due_date": "2020-09-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "28.24", + "balance": "28.24", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10907, + "quantity": 8, + "cost": 3.53, + "product_key": "sapiente", + "notes": "Laudantium enim non nobis voluptatem eum. Culpa error numquam mollitia rerum dolorum. Totam veniam consequatur voluptate qui. Beatae sed quia dolores magni quia. Consequatur explicabo commodi recusandae consequuntur in id. Minima enim officiis in laborum cum sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10908, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0551", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-20", + "last_sent_date": null, + "due_date": "2020-09-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "44.75", + "balance": "44.75", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10908, + "quantity": 5, + "cost": 8.95, + "product_key": "hic", + "notes": "Reprehenderit nihil voluptates cumque adipisci repellendus. Quasi voluptas eius facere rerum voluptate quia. Quae repellat possimus ea excepturi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10909, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0552", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-01", + "last_sent_date": null, + "due_date": "2020-05-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.73", + "balance": "23.73", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10909, + "quantity": 3, + "cost": 7.91, + "product_key": "cumque", + "notes": "Suscipit et non nam. Accusantium ut suscipit fuga saepe amet. Et aspernatur praesentium non ut aut numquam incidunt. Error aut qui blanditiis quae provident.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10910, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0553", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-18", + "last_sent_date": null, + "due_date": "2020-06-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.74", + "balance": "22.74", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10910, + "quantity": 3, + "cost": 7.58, + "product_key": "voluptatem", + "notes": "Assumenda porro numquam sunt consequuntur. Et sed consectetur mollitia sequi voluptate.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10911, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0554", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-28", + "last_sent_date": null, + "due_date": "2020-06-05", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "47.90", + "balance": "47.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10911, + "quantity": 10, + "cost": 4.79, + "product_key": "eum", + "notes": "Fuga exercitationem omnis fugit quae ratione. Quibusdam quaerat quis voluptatem ipsam error. Aut ut quo nam blanditiis harum sit vero. Consequatur placeat cumque at cum omnis aliquam aut culpa.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:35.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10912, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0555", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-03", + "last_sent_date": null, + "due_date": "2020-04-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.38", + "balance": "6.38", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10912, + "quantity": 2, + "cost": 3.19, + "product_key": "mollitia", + "notes": "Id enim voluptatibus consectetur quidem aut neque earum. Odit perferendis at eos nam. Consequuntur aperiam ab vel fugit asperiores eos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10913, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0556", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-11", + "last_sent_date": null, + "due_date": "2020-05-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.06", + "balance": "24.06", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10913, + "quantity": 6, + "cost": 4.01, + "product_key": "et", + "notes": "Omnis architecto possimus veritatis. Recusandae dolorem quasi aut cumque consequuntur ea vitae. Laborum fuga laudantium necessitatibus et dicta eaque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10914, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0557", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-01", + "last_sent_date": null, + "due_date": "2020-05-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "29.60", + "balance": "29.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10914, + "quantity": 4, + "cost": 7.4, + "product_key": "et", + "notes": "Aspernatur delectus omnis velit voluptas omnis tempore. Deleniti distinctio aut vel debitis. Tenetur ut voluptatem voluptas officia.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10915, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0558", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-15", + "last_sent_date": null, + "due_date": "2020-05-14", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "78.80", + "balance": "78.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10915, + "quantity": 10, + "cost": 7.88, + "product_key": "sunt", + "notes": "Quos facilis nam dolores. Animi eum qui ea ut. Adipisci hic labore qui voluptatum debitis temporibus. Aspernatur quis voluptatem minus ab. Quia ut qui iusto molestias maxime. Perferendis maxime aliquam temporibus a id reiciendis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10916, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0559", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-24", + "last_sent_date": null, + "due_date": "2020-07-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.44", + "balance": "16.44", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10916, + "quantity": 2, + "cost": 8.22, + "product_key": "non", + "notes": "Accusantium molestiae magnam molestias sequi. Hic eveniet totam rem molestiae. Consequuntur et dolorum totam reprehenderit aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10917, + "client_id": 66, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0560", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", "date": "2020-04-09", - "transaction_reference": "", - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 2, - "updated_at": "2020-04-09", - "created_at": "2020-04-09", - "deleted_at": null - }, - { - "id": 1312, - "invoices": [ + "last_sent_date": null, + "due_date": "2020-05-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "30.73", + "balance": "30.73", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 4, - "amount": "135.00", - "refunded": "0.00" + "id": 10917, + "quantity": 7, + "cost": 4.39, + "product_key": "pariatur", + "notes": "Ex possimus qui sint corporis aliquam odit atque porro. Neque corrupti atque enim dolorum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:36.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 4, - "company_id": 1, - "client_id": 1, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": null, - "status_id": 4, - "amount": "135.00", - "applied": "135.00", - "refunded": "0.00", - "date": "2020-04-09", - "transaction_reference": "", - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 2, - "updated_at": "2020-04-09", - "created_at": "2020-04-09", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "id": 1313, - "invoices": [ + "id": 10938, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0581", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-21", + "last_sent_date": null, + "due_date": "2020-10-08", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.63", + "balance": "9.63", + "partial": 0, + "partial_due_date": null, + "line_items": [ { - "invoice_id": 4, - "amount": "10.00", - "refunded": "0.00" + "id": 10938, + "quantity": 9, + "cost": 1.07, + "product_key": "qui", + "notes": "Aut ab voluptatem explicabo eum et. Illo numquam placeat libero dolor porro. Ut pariatur asperiores fugiat illum vel ea. Odit eius voluptas consectetur. Perspiciatis beatae suscipit et quia eos. Et qui nisi inventore accusantium et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 } ], - "invoice_id": 4, - "company_id": 1, - "client_id": 1, - "user_id": 1, - "client_contact_id": null, - "invitation_id": null, - "company_gateway_id": null, - "type_id": 1, - "status_id": 4, - "amount": "10.00", - "applied": "10.00", - "refunded": "0.00", - "date": "2020-04-09", - "transaction_reference": "", - "payer_id": null, - "is_deleted": 0, - "exchange_rate": "1.000000", - "exchange_currency_id": 0, - "currency_id": 2, - "updated_at": "2020-04-09", - "created_at": "2020-04-09", + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null }, { - "client_id": 11, + "id": 10939, + "client_id": 67, "user_id": 1, "company_id": 1, - "is_deleted": 0, - "amount": "123232.00", - "applied": 0, - "refunded": 0, - "date": null, - "created_at": "2020-02-21", - "updated_at": "2020-02-21", + "status_id": 2, + "design_id": 1, + "number": "0582", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-24", + "last_sent_date": null, + "due_date": "2020-07-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.84", + "balance": "8.84", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10939, + "quantity": 2, + "cost": 4.42, + "product_key": "est", + "notes": "Eius alias magnam aut ipsum. Et molestiae aliquam ea laboriosam vel. Repudiandae quidem deserunt voluptatem omnis impedit. Itaque sed cumque facilis eligendi porro sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10940, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0583", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-30", + "last_sent_date": null, + "due_date": "2020-07-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "56.91", + "balance": "56.91", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10940, + "quantity": 7, + "cost": 8.13, + "product_key": "ut", + "notes": "Repellendus quisquam quis tenetur excepturi occaecati nam. Sit molestiae ea dignissimos reprehenderit officia ex nesciunt. Accusamus sint sed ad nulla provident. Voluptatibus eaque delectus dolorum quas non aut. Sunt est laudantium ab tenetur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10941, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0584", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-14", + "last_sent_date": null, + "due_date": "2020-07-19", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "19.60", + "balance": "19.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10941, + "quantity": 7, + "cost": 2.8, + "product_key": "exercitationem", + "notes": "Excepturi deleniti odit earum est nemo sed minus qui. Fuga necessitatibus officiis quibusdam laborum voluptatum quo enim esse. Voluptates nihil autem facilis est.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10942, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0585", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-27", + "last_sent_date": null, + "due_date": "2020-10-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "33.12", + "balance": "33.12", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10942, + "quantity": 9, + "cost": 3.68, + "product_key": "maxime", + "notes": "In odio et quos earum sed fugiat quasi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10943, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0586", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-29", + "last_sent_date": null, + "due_date": "2020-07-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.14", + "balance": "14.14", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10943, + "quantity": 2, + "cost": 7.07, + "product_key": "culpa", + "notes": "Maxime dicta rerum doloremque saepe ullam nobis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10944, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0587", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-18", + "last_sent_date": null, + "due_date": "2020-08-24", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.75", + "balance": "18.75", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10944, + "quantity": 5, + "cost": 3.75, + "product_key": "inventore", + "notes": "Quis blanditiis dolorum cum nulla aliquam. Et omnis similique perferendis laudantium sed. Pariatur non laborum possimus nostrum voluptatum recusandae autem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10945, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0588", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-31", + "last_sent_date": null, + "due_date": "2020-04-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "31.08", + "balance": "31.08", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10945, + "quantity": 4, + "cost": 7.77, + "product_key": "consectetur", + "notes": "Provident qui omnis id rem ut eligendi. Officia in ut sit et illo dolores laborum. Qui magni adipisci nulla ad qui ipsa. Consectetur nobis itaque delectus nesciunt.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10946, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0589", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-17", + "last_sent_date": null, + "due_date": "2020-08-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.28", + "balance": "17.28", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10946, + "quantity": 8, + "cost": 2.16, + "product_key": "quasi", + "notes": "Sit reprehenderit et officia autem reprehenderit. Molestiae blanditiis maiores nobis beatae ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10947, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0590", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-17", + "last_sent_date": null, + "due_date": "2020-05-19", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.50", + "balance": "10.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10947, + "quantity": 5, + "cost": 2.1, + "product_key": "in", + "notes": "Voluptates explicabo earum repudiandae est quo sunt dolore. Ab totam aut aut quae. Autem ducimus minima rem. Necessitatibus mollitia voluptatibus ea.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10948, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0591", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-08", + "last_sent_date": null, + "due_date": "2020-09-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.35", + "balance": "22.35", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10948, + "quantity": 5, + "cost": 4.47, + "product_key": "cupiditate", + "notes": "Deserunt esse autem quia quia voluptate. In aut aut et voluptatem molestias quae et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10949, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0592", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-03", + "last_sent_date": null, + "due_date": "2020-07-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.00", + "balance": "18.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10949, + "quantity": 9, + "cost": 2, + "product_key": "quaerat", + "notes": "Sed corrupti consequatur quis. Esse cumque aspernatur laborum at possimus laudantium reprehenderit. Et autem sed ullam ut atque sit laborum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10950, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0593", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-18", + "last_sent_date": null, + "due_date": "2020-09-13", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.92", + "balance": "16.92", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10950, + "quantity": 4, + "cost": 4.23, + "product_key": "ducimus", + "notes": "Provident incidunt nemo odit vitae voluptatem. Consequatur consequatur libero est dolorum sit eius eum. Porro fuga molestiae sunt culpa.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10951, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0594", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-04", + "last_sent_date": null, + "due_date": "2020-08-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.80", + "balance": "15.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10951, + "quantity": 5, + "cost": 3.16, + "product_key": "quo", + "notes": "Eligendi quia quos aut omnis. Molestias provident totam et dolor amet et qui quod. Soluta animi assumenda rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10952, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0595", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-06", + "last_sent_date": null, + "due_date": "2020-04-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.00", + "balance": "5.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10952, + "quantity": 4, + "cost": 1.25, + "product_key": "quo", + "notes": "Et quidem dolores nam quas. Commodi deleniti consequatur esse et repudiandae sint esse. Omnis eaque nulla iste ut doloribus quis. Culpa autem voluptatem animi harum et sint et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10953, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0596", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-29", + "last_sent_date": null, + "due_date": "2020-07-16", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.16", + "balance": "15.16", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10953, + "quantity": 2, + "cost": 7.58, + "product_key": "earum", + "notes": "Consequatur ipsam sunt quo assumenda enim. Ullam aut non exercitationem iure saepe magnam ullam molestias.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10954, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0597", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-12", + "last_sent_date": null, + "due_date": "2020-05-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.70", + "balance": "4.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10954, + "quantity": 2, + "cost": 2.35, + "product_key": "id", + "notes": "Occaecati magnam voluptatibus voluptates soluta ut. Labore numquam inventore sed eos maiores repellat ut. Veniam odit qui aspernatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10955, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0598", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-04", + "last_sent_date": null, + "due_date": "2020-06-16", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "59.10", + "balance": "59.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10955, + "quantity": 6, + "cost": 9.85, + "product_key": "porro", + "notes": "Nisi aut architecto eos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10956, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0599", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-03", + "last_sent_date": null, + "due_date": "2020-08-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "17.92", + "balance": "17.92", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10956, + "quantity": 4, + "cost": 4.48, + "product_key": "quisquam", + "notes": "Voluptatem adipisci molestiae rerum nostrum eos aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10957, + "client_id": 67, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0600", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-22", + "last_sent_date": null, + "due_date": "2020-04-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.80", + "balance": "24.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10957, + "quantity": 4, + "cost": 6.2, + "product_key": "in", + "notes": "Dolor nulla repudiandae tenetur qui beatae sunt deserunt. Dolor non corporis ut voluptatem dolores. Qui fugiat qui magni sapiente vero.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:37.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10978, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0621", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-27", + "last_sent_date": null, + "due_date": "2020-08-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.80", + "balance": "16.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10978, + "quantity": 6, + "cost": 2.8, + "product_key": "aperiam", + "notes": "Tempore exercitationem et in magni. Perspiciatis nihil minima beatae nulla tempore suscipit veniam. Voluptas delectus et impedit quas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10979, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0622", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-12", + "last_sent_date": null, + "due_date": "2020-04-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.94", + "balance": "23.94", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10979, + "quantity": 7, + "cost": 3.42, + "product_key": "incidunt", + "notes": "Qui sed itaque exercitationem neque sit. Quibusdam soluta nostrum id accusantium aliquam. Saepe cum sed nobis cum doloribus. Accusamus nihil et eos quae. Repellat aut provident beatae commodi ipsa ut distinctio.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10980, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0623", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-13", + "last_sent_date": null, + "due_date": "2020-06-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.53", + "balance": "25.53", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10980, + "quantity": 3, + "cost": 8.51, + "product_key": "asperiores", + "notes": "Deserunt molestiae sapiente sint. Ut asperiores ut nihil reiciendis vitae qui non tempora. Sunt quos non pariatur vel cumque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10981, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0624", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-29", + "last_sent_date": null, + "due_date": "2020-08-16", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "75.50", + "balance": "75.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10981, + "quantity": 10, + "cost": 7.55, + "product_key": "eum", + "notes": "Et blanditiis est aut et consectetur fuga. Aperiam molestiae praesentium optio sed sunt non. Laboriosam ipsum alias maxime reprehenderit aperiam natus voluptas. Debitis quidem sed nam rerum molestias id.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10982, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0625", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-06", + "last_sent_date": null, + "due_date": "2020-08-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.41", + "balance": "4.41", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10982, + "quantity": 1, + "cost": 4.41, + "product_key": "sit", + "notes": "Adipisci et dolores voluptate delectus et quis. Corporis blanditiis voluptatem dolor et eos sit. Ratione velit qui voluptatem sit et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10983, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0626", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-23", + "last_sent_date": null, + "due_date": "2020-08-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.23", + "balance": "6.23", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10983, + "quantity": 1, + "cost": 6.23, + "product_key": "voluptatem", + "notes": "Occaecati laudantium explicabo debitis et et omnis rem. Asperiores quam aut suscipit a. Optio sed consequatur rerum eligendi. Eum veritatis distinctio blanditiis fugit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10984, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0627", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-01", + "last_sent_date": null, + "due_date": "2020-08-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.54", + "balance": "12.54", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10984, + "quantity": 6, + "cost": 2.09, + "product_key": "est", + "notes": "Saepe natus natus numquam alias est sequi quam. Modi quo eaque cum ad est. Et eveniet dolores eius et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10985, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0628", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-04", + "last_sent_date": null, + "due_date": "2020-08-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.72", + "balance": "12.72", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10985, + "quantity": 3, + "cost": 4.24, + "product_key": "placeat", + "notes": "Sed quos corrupti nihil. Dolor cupiditate impedit et dolores. Dolorem impedit illum aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10986, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0629", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-04", + "last_sent_date": null, + "due_date": "2020-05-09", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.00", + "balance": "6.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10986, + "quantity": 2, + "cost": 3, + "product_key": "magni", + "notes": "Totam et aut dolorum fugiat ut. Quia dignissimos accusantium inventore doloremque eligendi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10987, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0630", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-01", + "last_sent_date": null, + "due_date": "2020-04-19", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "95.80", + "balance": "95.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10987, + "quantity": 10, + "cost": 9.58, + "product_key": "ut", + "notes": "Delectus alias molestiae et. Ex unde accusamus recusandae quia repellat doloremque. Eligendi recusandae ipsam suscipit explicabo ipsa odio ea.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10988, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0631", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-04", + "last_sent_date": null, + "due_date": "2020-09-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.28", + "balance": "18.28", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10988, + "quantity": 2, + "cost": 9.14, + "product_key": "quas", + "notes": "Qui facere dolore qui dicta. Nisi quia autem aut eius occaecati. Voluptatem sunt quis dolore voluptate.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10989, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0632", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-19", + "last_sent_date": null, + "due_date": "2020-08-05", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "7.35", + "balance": "7.35", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10989, + "quantity": 1, + "cost": 7.35, + "product_key": "facere", + "notes": "Commodi quae est ipsum eum qui est. Nostrum non ut aspernatur ut accusamus aliquid. Quos eligendi sapiente error autem dicta et id enim.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10990, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0633", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-21", + "last_sent_date": null, + "due_date": "2020-05-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.50", + "balance": "22.50", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10990, + "quantity": 9, + "cost": 2.5, + "product_key": "laboriosam", + "notes": "Dolores atque omnis similique modi.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10991, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0634", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-11", + "last_sent_date": null, + "due_date": "2020-05-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "51.12", + "balance": "51.12", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10991, + "quantity": 6, + "cost": 8.52, + "product_key": "iusto", + "notes": "Nemo illum impedit provident blanditiis. Quidem officiis impedit sunt. Modi quia voluptates et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10992, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0635", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-15", + "last_sent_date": null, + "due_date": "2020-04-03", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "32.20", + "balance": "32.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10992, + "quantity": 10, + "cost": 3.22, + "product_key": "qui", + "notes": "Voluptatem et autem quia. Sunt sunt minus facere ut. Distinctio quia voluptatem alias tenetur modi esse voluptatem qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10993, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0636", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-21", + "last_sent_date": null, + "due_date": "2020-04-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.21", + "balance": "8.21", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10993, + "quantity": 1, + "cost": 8.21, + "product_key": "nisi", + "notes": "Dolore ea aliquam rerum unde.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10994, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0637", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-18", + "last_sent_date": null, + "due_date": "2020-05-17", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "62.65", + "balance": "62.65", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10994, + "quantity": 7, + "cost": 8.95, + "product_key": "sed", + "notes": "Rerum eligendi praesentium culpa quod. Et iusto velit est dolores praesentium aut eos. Placeat facilis enim dolorum aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10995, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0638", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-24", + "last_sent_date": null, + "due_date": "2020-09-07", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "50.04", + "balance": "50.04", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10995, + "quantity": 6, + "cost": 8.34, + "product_key": "amet", + "notes": "Ut libero rerum ipsa ullam fuga repellat. Alias autem aut qui aut aut. Mollitia provident modi aspernatur incidunt ut. Deleniti et delectus assumenda ut et. Dolores enim debitis deserunt pariatur molestiae quibusdam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10996, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0639", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-18", + "last_sent_date": null, + "due_date": "2020-03-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.35", + "balance": "9.35", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10996, + "quantity": 5, + "cost": 1.87, + "product_key": "excepturi", + "notes": "Et magnam minima magni ipsum earum et dolor. Sapiente consequatur quia tenetur exercitationem quia dolor. Sit nostrum vel qui at suscipit eos saepe.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10997, + "client_id": 68, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0640", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-20", + "last_sent_date": null, + "due_date": "2020-07-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.17", + "balance": "25.17", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 10997, + "quantity": 3, + "cost": 8.39, + "product_key": "quis", + "notes": "Corporis eum aut est molestiae maxime. Necessitatibus harum qui quas. Modi omnis neque et unde.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:38.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11018, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0661", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-08", + "last_sent_date": null, + "due_date": "2020-07-14", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.60", + "balance": "25.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11018, + "quantity": 8, + "cost": 3.2, + "product_key": "ducimus", + "notes": "Pariatur tempore corrupti labore quis dolor debitis laboriosam. Alias tenetur reprehenderit aut sit est sint et aut. Nostrum voluptatum quas velit aut voluptatem id aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11019, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0662", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-26", + "last_sent_date": null, + "due_date": "2020-06-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.48", + "balance": "25.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11019, + "quantity": 7, + "cost": 3.64, + "product_key": "asperiores", + "notes": "Sequi fugiat eaque rerum. Quia quaerat natus sunt aut inventore nobis nostrum aut. Et occaecati ut unde corrupti. Aut minus quia nisi sit dignissimos totam. Reiciendis eum nisi veniam quas aut. Nostrum dolor quam et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11020, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0663", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-09", + "last_sent_date": null, + "due_date": "2020-04-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "14.26", + "balance": "14.26", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11020, + "quantity": 2, + "cost": 7.13, + "product_key": "dolor", + "notes": "A commodi et illo omnis eaque. Placeat rerum id esse reiciendis repellendus. Est deserunt sint molestiae debitis inventore quidem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11021, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0664", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-02", + "last_sent_date": null, + "due_date": "2020-09-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "29.70", + "balance": "29.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11021, + "quantity": 10, + "cost": 2.97, + "product_key": "velit", + "notes": "Est explicabo dolorum optio eos fugiat deserunt et. Occaecati fuga quos dolorum iure laudantium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11022, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0665", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-08", + "last_sent_date": null, + "due_date": "2020-06-19", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.43", + "balance": "4.43", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11022, + "quantity": 1, + "cost": 4.43, + "product_key": "similique", + "notes": "Repudiandae sed sed ea cum totam ab qui. Quis laudantium dolorum in facere eveniet ea ipsum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11023, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0666", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-23", + "last_sent_date": null, + "due_date": "2020-09-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.79", + "balance": "20.79", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11023, + "quantity": 3, + "cost": 6.93, + "product_key": "aliquid", + "notes": "Est sunt qui officia sunt illo veritatis aut. Culpa unde non veritatis autem hic autem. Inventore qui veritatis aut omnis natus aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:39.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11024, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0667", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-31", + "last_sent_date": null, + "due_date": "2020-05-02", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.64", + "balance": "11.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11024, + "quantity": 2, + "cost": 5.82, + "product_key": "voluptates", + "notes": "Similique molestias fugiat ut ad et. Est expedita enim voluptatibus quia quo. Assumenda saepe voluptatem aut culpa consequatur provident.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11025, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0668", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-16", + "last_sent_date": null, + "due_date": "2020-05-06", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "53.34", + "balance": "53.34", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11025, + "quantity": 7, + "cost": 7.62, + "product_key": "maiores", + "notes": "Consectetur nihil atque assumenda quod. Deserunt quia soluta eos atque aut. Qui non aliquam aliquam unde autem provident ut. Eligendi enim adipisci ut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11026, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0669", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-16", + "last_sent_date": null, + "due_date": "2020-04-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.08", + "balance": "20.08", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11026, + "quantity": 8, + "cost": 2.51, + "product_key": "et", + "notes": "Dolorum voluptatem dolorem quae accusantium sed suscipit. Dolorem nulla ut rerum. Quis reiciendis sit odit reiciendis architecto non.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11027, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0670", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-05", + "last_sent_date": null, + "due_date": "2020-08-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "24.04", + "balance": "24.04", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11027, + "quantity": 4, + "cost": 6.01, + "product_key": "iste", + "notes": "Molestiae et soluta odio qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11028, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0671", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-03", + "last_sent_date": null, + "due_date": "2020-09-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.32", + "balance": "12.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11028, + "quantity": 8, + "cost": 1.54, + "product_key": "quo", + "notes": "Dolores accusamus sunt non voluptatem laudantium. Excepturi praesentium nulla veniam et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11029, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0672", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-05", + "last_sent_date": null, + "due_date": "2020-09-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.10", + "balance": "9.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11029, + "quantity": 2, + "cost": 4.55, + "product_key": "omnis", + "notes": "Quaerat amet ut voluptatem. Itaque placeat voluptatibus repellat fugiat animi. Dicta iure iure ea. Ut laborum sint distinctio nam quos.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11030, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0673", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-30", + "last_sent_date": null, + "due_date": "2020-03-24", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "54.72", + "balance": "54.72", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11030, + "quantity": 9, + "cost": 6.08, + "product_key": "molestiae", + "notes": "Reiciendis consequatur aut est consequatur. Labore dolorum sint sapiente quia dicta facere totam ut. Aliquid fuga possimus eaque voluptas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11031, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0674", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-28", + "last_sent_date": null, + "due_date": "2020-06-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.51", + "balance": "6.51", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11031, + "quantity": 1, + "cost": 6.51, + "product_key": "sint", + "notes": "Non quae earum totam dignissimos tempore sint culpa. Enim nulla est at rem eos. Unde esse sit autem iure beatae. Perspiciatis harum accusantium adipisci enim. Sed consectetur et aut molestiae ex rerum iste.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11032, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0675", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-23", + "last_sent_date": null, + "due_date": "2020-04-16", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.46", + "balance": "12.46", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11032, + "quantity": 2, + "cost": 6.23, + "product_key": "cupiditate", + "notes": "Incidunt earum consequatur possimus sit qui. Est sequi dolorem molestiae mollitia sequi commodi aut. Rem voluptatum doloribus ea odit voluptatem qui error.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11033, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0676", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-10", + "last_sent_date": null, + "due_date": "2020-09-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "48.87", + "balance": "48.87", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11033, + "quantity": 9, + "cost": 5.43, + "product_key": "adipisci", + "notes": "Ut sunt quas est esse. Cumque blanditiis et sed eos minus. Nemo fugiat accusantium impedit nobis. Excepturi laudantium ipsa corrupti recusandae et optio.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11034, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0677", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-16", + "last_sent_date": null, + "due_date": "2020-09-08", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "11.83", + "balance": "11.83", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11034, + "quantity": 7, + "cost": 1.69, + "product_key": "harum", + "notes": "Nisi officiis expedita qui voluptatem omnis iure. Libero nihil rerum ad ipsum dolor. Quidem quas officiis accusantium nesciunt quidem nobis sequi libero. Enim ipsa non eligendi nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11035, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0678", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-28", + "last_sent_date": null, + "due_date": "2020-05-03", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.25", + "balance": "20.25", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11035, + "quantity": 3, + "cost": 6.75, + "product_key": "laudantium", + "notes": "Dignissimos qui quae ad enim ut doloremque unde possimus. Minima perspiciatis molestiae optio. Voluptate iusto enim voluptatum perferendis id.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11036, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0679", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-16", + "last_sent_date": null, + "due_date": "2020-06-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "26.11", + "balance": "26.11", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11036, + "quantity": 7, + "cost": 3.73, + "product_key": "est", + "notes": "Laborum sed iste quis velit asperiores ut corrupti. Omnis et rem magnam nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11037, + "client_id": 69, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0680", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-17", + "last_sent_date": null, + "due_date": "2020-08-10", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "46.90", + "balance": "46.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11037, + "quantity": 10, + "cost": 4.69, + "product_key": "porro", + "notes": "Laboriosam voluptas maxime ut similique sed voluptas. Repellat saepe illo explicabo velit voluptates quidem. Est iusto magnam hic iste.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:40.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11058, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0701", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-22", + "last_sent_date": null, + "due_date": "2020-07-08", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "55.20", + "balance": "55.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11058, + "quantity": 6, + "cost": 9.2, + "product_key": "quis", + "notes": "Unde rerum consectetur molestias laborum ducimus. Voluptatum rem molestiae vel sequi eaque magni placeat. Nostrum iste earum laboriosam iusto voluptatum est quia. Perspiciatis est omnis eum in illo et facilis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11059, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0702", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-30", + "last_sent_date": null, + "due_date": "2020-04-20", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "45.45", + "balance": "45.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11059, + "quantity": 5, + "cost": 9.09, + "product_key": "autem", + "notes": "Dicta ut ut et sunt.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11060, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0703", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-10", + "last_sent_date": null, + "due_date": "2020-05-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "33.11", + "balance": "33.11", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11060, + "quantity": 7, + "cost": 4.73, + "product_key": "optio", + "notes": "Dolor omnis iusto commodi quia. Consequuntur consequuntur nisi nulla quaerat mollitia unde. Aliquam quo ad odit saepe ut nihil harum est. Autem placeat magni est adipisci vitae. Molestiae delectus dolore sit.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11061, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0704", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-24", + "last_sent_date": null, + "due_date": "2020-08-13", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "79.80", + "balance": "79.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11061, + "quantity": 10, + "cost": 7.98, + "product_key": "sit", + "notes": "Quo omnis quia perspiciatis quia aut labore. Est id officiis qui maxime facere. Omnis ut reprehenderit et inventore aut consequatur quas reprehenderit. Molestias quae optio nam qui aut alias.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11062, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0705", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-16", + "last_sent_date": null, + "due_date": "2020-04-29", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "61.56", + "balance": "61.56", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11062, + "quantity": 9, + "cost": 6.84, + "product_key": "doloribus", + "notes": "Est deleniti est reiciendis ex quos quisquam. Non esse ut minus. Nihil eaque consectetur velit sed excepturi et sed.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11063, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0706", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-24", + "last_sent_date": null, + "due_date": "2020-05-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "44.28", + "balance": "44.28", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11063, + "quantity": 6, + "cost": 7.38, + "product_key": "quo", + "notes": "Facilis tempora iste non earum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11064, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0707", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-07", + "last_sent_date": null, + "due_date": "2020-08-11", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "67.20", + "balance": "67.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11064, + "quantity": 10, + "cost": 6.72, + "product_key": "saepe", + "notes": "Vel quae minima laborum aliquid accusamus. Ea laboriosam vel eum sequi sed.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11065, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0708", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-10", + "last_sent_date": null, + "due_date": "2020-07-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.36", + "balance": "6.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11065, + "quantity": 6, + "cost": 1.06, + "product_key": "libero", + "notes": "Incidunt veritatis ea aut dolore. Ratione recusandae et eaque animi omnis quam unde in.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11066, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0709", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-30", + "last_sent_date": null, + "due_date": "2020-09-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "45.45", + "balance": "45.45", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11066, + "quantity": 9, + "cost": 5.05, + "product_key": "ut", + "notes": "Rem et id blanditiis repellat nihil velit pariatur. Enim aut quis praesentium aut. Explicabo et aut a et dolore repellendus labore. Quia facilis voluptas aut laboriosam dicta ut ipsa. Saepe dolores cum nisi qui. Enim provident ipsa optio maiores aut provident.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11067, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0710", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-13", + "last_sent_date": null, + "due_date": "2020-03-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "53.64", + "balance": "53.64", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11067, + "quantity": 9, + "cost": 5.96, + "product_key": "ex", + "notes": "Pariatur est cum similique amet animi. Illo mollitia voluptatem neque aut dignissimos corporis sint. Reiciendis praesentium possimus illum laborum sed.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11068, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0711", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-28", + "last_sent_date": null, + "due_date": "2020-08-10", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "29.07", + "balance": "29.07", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11068, + "quantity": 9, + "cost": 3.23, + "product_key": "aut", + "notes": "Placeat error at voluptas qui tempora similique nobis. Earum et id saepe sed enim. Sit ab laudantium magni eligendi ex inventore vel.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11069, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0712", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-26", + "last_sent_date": null, + "due_date": "2020-04-13", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.22", + "balance": "8.22", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11069, + "quantity": 1, + "cost": 8.22, + "product_key": "quo", + "notes": "Quia sit incidunt voluptas est dolor. Reprehenderit omnis a est architecto veritatis iusto. Doloremque mollitia pariatur nostrum nam eum. Ipsa veniam soluta aspernatur laborum. Est est eius et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11070, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0713", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-20", + "last_sent_date": null, + "due_date": "2020-09-03", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "18.72", + "balance": "18.72", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11070, + "quantity": 9, + "cost": 2.08, + "product_key": "nihil", + "notes": "Labore ab delectus voluptas. Quidem eveniet in omnis similique. Suscipit saepe consectetur nihil nisi. Accusamus et et omnis earum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11071, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0714", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-05", + "last_sent_date": null, + "due_date": "2020-05-16", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.44", + "balance": "4.44", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11071, + "quantity": 2, + "cost": 2.22, + "product_key": "veritatis", + "notes": "Ipsam dignissimos corrupti voluptate delectus et. Qui omnis voluptatem ullam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11072, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0715", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-23", + "last_sent_date": null, + "due_date": "2020-04-09", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "78.03", + "balance": "78.03", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11072, + "quantity": 9, + "cost": 8.67, + "product_key": "ad", + "notes": "Sed esse ad at eos aut repellendus. Et omnis velit ut omnis nesciunt quam. Est quas occaecati sunt ipsa reiciendis. Aut aut rem architecto ex.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11073, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0716", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-04", + "last_sent_date": null, + "due_date": "2020-08-03", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "48.60", + "balance": "48.60", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11073, + "quantity": 6, + "cost": 8.1, + "product_key": "minima", + "notes": "Perspiciatis ullam ea et rerum deleniti vitae. Voluptas voluptate mollitia aspernatur ut. Excepturi est ex sapiente.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11074, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0717", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-23", + "last_sent_date": null, + "due_date": "2020-05-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "15.36", + "balance": "15.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11074, + "quantity": 2, + "cost": 7.68, + "product_key": "facere", + "notes": "A consequatur autem fuga ut aut officiis velit. Odio magni unde voluptatum consectetur esse ut. Minima qui autem ipsum dolorum. Repudiandae et nostrum est aspernatur officia sit omnis. Quae dolorum aut omnis aperiam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11075, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0718", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-23", + "last_sent_date": null, + "due_date": "2020-05-08", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.63", + "balance": "4.63", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11075, + "quantity": 1, + "cost": 4.63, + "product_key": "dolor", + "notes": "Hic laudantium ipsam blanditiis est. Nisi et exercitationem a aspernatur minima. Impedit quia ex ut quis doloremque.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11076, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0719", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-01", + "last_sent_date": null, + "due_date": "2020-07-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.20", + "balance": "12.20", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11076, + "quantity": 5, + "cost": 2.44, + "product_key": "eveniet", + "notes": "Dolor ut harum quia voluptatibus. Ut eaque voluptatem vero occaecati. Minima numquam facilis et omnis cum. Perferendis sed itaque autem. Dignissimos eligendi voluptas nesciunt distinctio. Quod esse libero voluptatibus et. Explicabo eos molestias delectus voluptatem enim voluptatem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11077, + "client_id": 70, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0720", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-21", + "last_sent_date": null, + "due_date": "2020-06-14", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "8.97", + "balance": "8.97", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11077, + "quantity": 1, + "cost": 8.97, + "product_key": "et", + "notes": "Iusto quia ab maiores voluptatem. Facere quis sed molestias in qui pariatur eaque. Distinctio quia et quia nihil totam maiores facere. Voluptas omnis earum minus consectetur ratione.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:41.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11098, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0741", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-28", + "last_sent_date": null, + "due_date": "2020-07-22", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "6.40", + "balance": "6.40", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11098, + "quantity": 5, + "cost": 1.28, + "product_key": "cupiditate", + "notes": "Doloribus laudantium laudantium id sit minus necessitatibus. Repellendus consequatur et voluptates accusamus ut. Dignissimos ipsam quia dolorem ut voluptas iste quis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11099, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0742", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-12", + "last_sent_date": null, + "due_date": "2020-09-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "2.95", + "balance": "2.95", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11099, + "quantity": 1, + "cost": 2.95, + "product_key": "rerum", + "notes": "Illum est voluptates perspiciatis ex necessitatibus. Veritatis laborum veritatis laborum non. Impedit aut quis impedit autem ut libero.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11100, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0743", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-04", + "last_sent_date": null, + "due_date": "2020-04-09", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "87.30", + "balance": "87.30", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11100, + "quantity": 9, + "cost": 9.7, + "product_key": "et", + "notes": "Voluptatem corporis debitis sed ut consequatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11101, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0744", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-23", + "last_sent_date": null, + "due_date": "2020-05-23", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "10.36", + "balance": "10.36", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11101, + "quantity": 4, + "cost": 2.59, + "product_key": "aut", + "notes": "Autem eum reprehenderit et temporibus sint nobis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11102, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0745", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-18", + "last_sent_date": null, + "due_date": "2020-09-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "73.53", + "balance": "73.53", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11102, + "quantity": 9, + "cost": 8.17, + "product_key": "eos", + "notes": "Qui quisquam et est eum distinctio. Ea et ut veniam tempore. Adipisci impedit nam occaecati quisquam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11103, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0746", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-26", + "last_sent_date": null, + "due_date": "2020-08-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "33.74", + "balance": "33.74", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11103, + "quantity": 7, + "cost": 4.82, + "product_key": "qui", + "notes": "Ratione reiciendis vero tempora culpa et velit odio. Molestiae occaecati error autem quam laudantium. Quo est voluptatem quasi voluptas.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11104, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0747", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-08", + "last_sent_date": null, + "due_date": "2020-03-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.65", + "balance": "9.65", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11104, + "quantity": 1, + "cost": 9.65, + "product_key": "ea", + "notes": "Laborum quia provident repellat totam. A impedit est ipsa non porro veritatis. Possimus nihil totam ex deserunt dolorum ipsum sunt.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11105, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0748", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-25", + "last_sent_date": null, + "due_date": "2020-03-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "76.32", + "balance": "76.32", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11105, + "quantity": 9, + "cost": 8.48, + "product_key": "deleniti", + "notes": "Soluta quis assumenda ut quam harum quos. Quis suscipit dolorem voluptatem. Hic nulla voluptatem aperiam enim.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11106, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0749", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-05", + "last_sent_date": null, + "due_date": "2020-04-10", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "2.10", + "balance": "2.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11106, + "quantity": 1, + "cost": 2.1, + "product_key": "labore", + "notes": "Animi commodi nemo dolor ut. Aspernatur sint molestiae sit dolorum harum quod quia. Sed rerum et et repellat quisquam eveniet.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11107, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0750", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-25", + "last_sent_date": null, + "due_date": "2020-04-08", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.12", + "balance": "25.12", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11107, + "quantity": 4, + "cost": 6.28, + "product_key": "quasi", + "notes": "Soluta dolor ut eius laboriosam. Nemo a qui aut voluptas. Iure quia deserunt ut recusandae deleniti illum vitae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11108, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0751", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-12", + "last_sent_date": null, + "due_date": "2020-08-05", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "42.28", + "balance": "42.28", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11108, + "quantity": 7, + "cost": 6.04, + "product_key": "dolorem", + "notes": "Est voluptas quod laboriosam atque cumque. Et ut optio adipisci aspernatur in omnis. Quia quam a dignissimos ducimus optio labore. Consequatur iste voluptas incidunt.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11109, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0752", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-01", + "last_sent_date": null, + "due_date": "2020-05-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "20.88", + "balance": "20.88", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11109, + "quantity": 4, + "cost": 5.22, + "product_key": "hic", + "notes": "Mollitia similique consectetur voluptate aut. Dolorem fugit quia ut est voluptatum. Voluptatibus tempore tempore voluptatem. Consequatur laborum dolorem cupiditate. Qui explicabo quis animi saepe repellendus autem minus accusantium.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11110, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0753", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-01", + "last_sent_date": null, + "due_date": "2020-05-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "36.63", + "balance": "36.63", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11110, + "quantity": 9, + "cost": 4.07, + "product_key": "modi", + "notes": "In magnam aut non ipsum consequuntur. Aut exercitationem qui at error harum nulla in dolores. Quidem quo iure quibusdam odit animi. Numquam occaecati laudantium saepe optio.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11111, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0754", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-03", + "last_sent_date": null, + "due_date": "2020-07-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "63.10", + "balance": "63.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11111, + "quantity": 10, + "cost": 6.31, + "product_key": "eius", + "notes": "Saepe veritatis perspiciatis eos ullam. Nihil repellendus voluptatem incidunt sunt. Harum qui quia temporibus et nihil delectus exercitationem. Aut eius possimus labore voluptas suscipit aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11112, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0755", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-04", + "last_sent_date": null, + "due_date": "2020-09-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.16", + "balance": "5.16", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11112, + "quantity": 2, + "cost": 2.58, + "product_key": "quia", + "notes": "Dolorum repudiandae et quam rerum minus illum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11113, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0756", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-16", + "last_sent_date": null, + "due_date": "2020-06-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.70", + "balance": "5.70", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11113, + "quantity": 3, + "cost": 1.9, + "product_key": "animi", + "notes": "Sint aut quibusdam iure qui omnis quam. Officia rem aut qui voluptatem. Id asperiores quia totam non.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11114, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0757", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-02", + "last_sent_date": null, + "due_date": "2020-05-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.30", + "balance": "25.30", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11114, + "quantity": 10, + "cost": 2.53, + "product_key": "corporis", + "notes": "Enim adipisci quia consequatur consequatur. Ea et et omnis quis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11115, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0758", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-06", + "last_sent_date": null, + "due_date": "2020-05-24", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "36.72", + "balance": "36.72", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11115, + "quantity": 8, + "cost": 4.59, + "product_key": "nisi", + "notes": "Repellendus hic et eligendi sequi eum sunt est. Sunt iure sequi earum sit architecto. Voluptas esse et vel. Velit quasi blanditiis deserunt error ipsam.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:42.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11116, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0759", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-17", + "last_sent_date": null, + "due_date": "2020-07-24", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "25.38", + "balance": "25.38", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11116, + "quantity": 9, + "cost": 2.82, + "product_key": "quia", + "notes": "Aut ea vel ad. Ex consequuntur iusto optio eligendi dolores. Assumenda et voluptatibus optio ducimus voluptate. Quia laudantium ut sapiente nihil.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11117, + "client_id": 71, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0760", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-14", + "last_sent_date": null, + "due_date": "2020-04-19", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "22.90", + "balance": "22.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11117, + "quantity": 10, + "cost": 2.29, + "product_key": "ea", + "notes": "Delectus sit dolorem saepe ratione non maxime fugit neque. Consequuntur provident fuga similique sed quos. Iure cumque officia est minima sunt magnam qui. Architecto hic nihil doloribus rerum.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:43.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11138, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0781", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-06", + "last_sent_date": null, + "due_date": "2020-05-13", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "4.42", + "balance": "4.42", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11138, + "quantity": 1, + "cost": 4.42, + "product_key": "quo", + "notes": "Perspiciatis est fugit rerum quaerat possimus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11139, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0782", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-04", + "last_sent_date": null, + "due_date": "2020-05-24", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "5.68", + "balance": "5.68", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11139, + "quantity": 2, + "cost": 2.84, + "product_key": "et", + "notes": "Sequi est quasi amet aut consequuntur soluta.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11140, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0783", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-25", + "last_sent_date": null, + "due_date": "2020-08-15", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "62.58", + "balance": "62.58", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11140, + "quantity": 7, + "cost": 8.94, + "product_key": "eos", + "notes": "Aliquam et perspiciatis eaque dolorum rerum. Ut voluptatem ut corporis officia aut ipsam. Voluptas odio est sint tempore unde recusandae.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11141, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0784", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-28", + "last_sent_date": null, + "due_date": "2020-06-30", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "27.90", + "balance": "27.90", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11141, + "quantity": 3, + "cost": 9.3, + "product_key": "iure", + "notes": "Qui enim dolorem rerum facilis. Veniam magnam ex quidem. Ipsa et repellat et.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11142, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0785", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-05-27", + "last_sent_date": null, + "due_date": "2020-06-12", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "26.74", + "balance": "26.74", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11142, + "quantity": 7, + "cost": 3.82, + "product_key": "odio", + "notes": "Esse cum ex autem velit nam. Accusantium eos ut eaque dolorem soluta dolor in. Maxime qui dolores nulla et sed.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11143, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0786", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-22", + "last_sent_date": null, + "due_date": "2020-05-01", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "23.46", + "balance": "23.46", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11143, + "quantity": 6, + "cost": 3.91, + "product_key": "amet", + "notes": "Fugiat cumque cum quis rerum at officiis. Voluptas suscipit eaque ipsam omnis placeat dolores alias. Officia sunt maiores inventore iure.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11144, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0787", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-19", + "last_sent_date": null, + "due_date": "2020-03-31", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "35.10", + "balance": "35.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11144, + "quantity": 6, + "cost": 5.85, + "product_key": "a", + "notes": "Voluptas autem iste dicta ut. Officiis velit et totam eius error recusandae atque. Rem dolore ut aliquid non. Unde accusamus quidem quaerat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11145, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0788", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-25", + "last_sent_date": null, + "due_date": "2020-08-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "12.52", + "balance": "12.52", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11145, + "quantity": 4, + "cost": 3.13, + "product_key": "labore", + "notes": "Fugiat esse est amet. Ut repellendus hic sapiente est aut non magni. Perferendis repudiandae occaecati repellat cum doloribus.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11146, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0789", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-02", + "last_sent_date": null, + "due_date": "2020-08-21", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "43.12", + "balance": "43.12", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11146, + "quantity": 8, + "cost": 5.39, + "product_key": "eos", + "notes": "Non veniam reprehenderit beatae ea eos dolor. Sed reiciendis et fuga provident suscipit quia. Aut est qui quia quo reiciendis magnam qui. Debitis fugit et et saepe magnam. Natus amet ut ut et vitae aliquam et. Aut architecto quasi occaecati qui dolorem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11147, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0790", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-18", + "last_sent_date": null, + "due_date": "2020-08-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "80.10", + "balance": "80.10", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11147, + "quantity": 9, + "cost": 8.9, + "product_key": "odio", + "notes": "Autem vel et voluptatem. Quaerat non dolore facere et. Natus aperiam sint ratione iste earum consequatur deserunt. Rerum ducimus temporibus totam neque. Non quas deserunt rerum. Aut temporibus dolorem ut blanditiis. Error et mollitia impedit sunt.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11148, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0791", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-28", + "last_sent_date": null, + "due_date": "2020-06-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "59.12", + "balance": "59.12", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11148, + "quantity": 8, + "cost": 7.39, + "product_key": "hic", + "notes": "Vero ea ut et id. Cumque et et sed ab alias nemo. Et accusamus illo perferendis id atque ad quidem.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11149, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0792", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-04-16", + "last_sent_date": null, + "due_date": "2020-09-27", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "78.48", + "balance": "78.48", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11149, + "quantity": 8, + "cost": 9.81, + "product_key": "alias", + "notes": "Impedit vel aut facere quae. Recusandae dolorem et sint esse earum eius. Ratione rerum et est enim vitae occaecati quod delectus. Vero nihil quia at voluptatem nobis.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11150, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0793", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-24", + "last_sent_date": null, + "due_date": "2020-10-04", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "29.85", + "balance": "29.85", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11150, + "quantity": 5, + "cost": 5.97, + "product_key": "recusandae", + "notes": "Rerum quam iste eius non vero incidunt hic. Dolorum quod rem omnis doloremque ad sunt qui. Perspiciatis molestiae delectus explicabo qui sapiente adipisci placeat.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11151, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0794", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-07-22", + "last_sent_date": null, + "due_date": "2020-08-05", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.19", + "balance": "9.19", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11151, + "quantity": 1, + "cost": 9.19, + "product_key": "nemo", + "notes": "Voluptate maxime voluptatem aliquid nulla quas. Asperiores totam delectus dolorem fugiat ea officia ipsam. Qui maxime et quia sapiente.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11152, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0795", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-08-01", + "last_sent_date": null, + "due_date": "2020-06-26", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "73.44", + "balance": "73.44", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11152, + "quantity": 9, + "cost": 8.16, + "product_key": "debitis", + "notes": "Et asperiores ut impedit sunt. Consequuntur a eos ad. Qui minus et et sit. Omnis aut molestias aut.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11153, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0796", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-06-11", + "last_sent_date": null, + "due_date": "2020-08-17", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "56.00", + "balance": "56.00", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11153, + "quantity": 7, + "cost": 8, + "product_key": "velit", + "notes": "Harum a eum omnis. Eligendi totam voluptatibus qui enim aspernatur.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11154, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0797", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-09-22", + "last_sent_date": null, + "due_date": "2020-07-31", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "16.62", + "balance": "16.62", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11154, + "quantity": 2, + "cost": 8.31, + "product_key": "dolore", + "notes": "Laborum expedita sed totam hic dolor fugit. Nisi delectus quod ea voluptatum. Voluptatem eligendi dolorem provident sed molestiae mollitia. Et quasi aperiam nam eligendi quis qui.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11155, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0798", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-24", + "last_sent_date": null, + "due_date": "2020-08-25", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "88.74", + "balance": "88.74", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11155, + "quantity": 9, + "cost": 9.86, + "product_key": "qui", + "notes": "Voluptatem cum ullam quo esse cum. Enim sit quas suscipit tempore. Velit est sit et ex ratione facere.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11156, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0799", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-10-08", + "last_sent_date": null, + "due_date": "2020-05-18", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "90.80", + "balance": "90.80", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11156, + "quantity": 10, + "cost": 9.08, + "product_key": "quia", + "notes": "Ut illum aliquam magnam est. Quod quidem veniam laborum nostrum omnis reprehenderit illum facilis. Laudantium vel aut dolores.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11157, + "client_id": 72, + "user_id": 1, + "company_id": 1, + "status_id": 2, + "design_id": 1, + "number": "0800", + "discount": "0.00", + "is_amount_discount": false, + "po_number": "", + "date": "2020-03-29", + "last_sent_date": null, + "due_date": "2020-05-28", + "uses_inclusive_taxes": 0, + "is_deleted": false, + "footer": "", + "public_notes": "", + "private_notes": "", + "terms": "", + "tax_name1": "", + "tax_name2": null, + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "custom_value1": "0.00", + "custom_value2": "0.00", + "next_send_date": null, + "amount": "9.84", + "balance": "9.84", + "partial": 0, + "partial_due_date": null, + "line_items": [ + { + "id": 11157, + "quantity": 3, + "cost": 3.28, + "product_key": "perferendis", + "notes": "Iste itaque dolores placeat accusantium provident nam quisquam est. Nemo eius sint pariatur vero quas nemo. Ea numquam inventore eveniet itaque distinctio ratione.", + "discount": 0, + "tax_name1": "", + "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, + "date": { + "date": "2020-06-30 11:19:44.000000", + "timezone_type": 3, + "timezone": "UTC" + }, + "custom_value1": null, + "custom_value2": null, + "line_item_type_id": 1 + } + ], + "created_at": "2020-06-30", + "updated_at": "2020-06-30", "deleted_at": null } ], "credits": [ { - "id": 206, - "client_id": 3, + "id": 11161, + "client_id": 53, "user_id": 1, "company_id": 1, - "status_id": 2, + "status_id": 6, "design_id": 1, - "number": "0205", + "number": "0801", "discount": "0.00", "is_amount_discount": false, "po_number": "", - "date": "2020-02-21", + "date": "2020-10-18", "last_sent_date": null, "due_date": null, "uses_inclusive_taxes": 0, @@ -241295,25 +52864,31 @@ "tax_name2": "", "tax_rate1": "0.000", "tax_rate2": "0.000", + "tax_name3": "", + "tax_rate3": 0, "custom_value1": "0.00", "custom_value2": "0.00", "next_send_date": null, - "amount": "-100.00", - "balance": "-100.00", + "amount": "-1000.00", + "balance": "0.00", "partial": "0.00", "partial_due_date": null, "line_items": [ { - "id": 219, + "id": 11167, "quantity": 1, - "cost": -100, + "cost": -1000, "product_key": "1", "notes": "1", "discount": 0, "tax_name1": "", "tax_rate1": 0, + "tax_name2": "", + "tax_rate2": 0, + "tax_name3": "", + "tax_rate3": 0, "date": { - "date": "2020-02-21 23:55:34.000000", + "date": "2020-10-18 04:24:26.000000", "timezone_type": 3, "timezone": "UTC" }, @@ -241322,353 +52897,28619 @@ "line_item_type_id": 1 } ], - "created_at": "2020-02-21", - "updated_at": "2020-02-21", + "created_at": "2020-10-18", + "updated_at": "2020-10-18", "deleted_at": null } ], - "documents": [ + "payments": [ + { + "id": 5201, + "invoices": [ + { + "invoice_id": 10358, + "amount": "27.56", + "refunded": "0.00" + } + ], + "invoice_id": 10358, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "27.56", + "applied": "27.56", + "refunded": "0.00", + "date": "2020-04-30", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5202, + "invoices": [ + { + "invoice_id": 10359, + "amount": "7.52", + "refunded": "0.00" + } + ], + "invoice_id": 10359, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "7.52", + "applied": "7.52", + "refunded": "0.00", + "date": "2020-05-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5203, + "invoices": [ + { + "invoice_id": 10360, + "amount": "25.61", + "refunded": "0.00" + } + ], + "invoice_id": 10360, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "25.61", + "applied": "25.61", + "refunded": "0.00", + "date": "2020-04-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5204, + "invoices": [ + { + "invoice_id": 10361, + "amount": "0.56", + "refunded": "0.00" + } + ], + "invoice_id": 10361, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.56", + "applied": "0.56", + "refunded": "0.00", + "date": "2020-07-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5205, + "invoices": [ + { + "invoice_id": 10362, + "amount": "11.15", + "refunded": "0.00" + } + ], + "invoice_id": 10362, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "11.15", + "applied": "11.15", + "refunded": "0.00", + "date": "2020-05-01", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5206, + "invoices": [ + { + "invoice_id": 10363, + "amount": "46.75", + "refunded": "0.00" + } + ], + "invoice_id": 10363, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "46.75", + "applied": "46.75", + "refunded": "0.00", + "date": "2020-10-04", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5207, + "invoices": [ + { + "invoice_id": 10364, + "amount": "4.55", + "refunded": "0.00" + } + ], + "invoice_id": 10364, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.55", + "applied": "4.55", + "refunded": "0.00", + "date": "2020-07-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5208, + "invoices": [ + { + "invoice_id": 10365, + "amount": "15.84", + "refunded": "0.00" + } + ], + "invoice_id": 10365, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "15.84", + "applied": "15.84", + "refunded": "0.00", + "date": "2020-06-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5209, + "invoices": [ + { + "invoice_id": 10366, + "amount": "16.60", + "refunded": "0.00" + } + ], + "invoice_id": 10366, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.60", + "applied": "16.60", + "refunded": "0.00", + "date": "2020-07-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5210, + "invoices": [ + { + "invoice_id": 10367, + "amount": "41.04", + "refunded": "0.00" + } + ], + "invoice_id": 10367, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "41.04", + "applied": "41.04", + "refunded": "0.00", + "date": "2020-09-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5211, + "invoices": [ + { + "invoice_id": 10368, + "amount": "36.30", + "refunded": "0.00" + } + ], + "invoice_id": 10368, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "36.30", + "applied": "36.30", + "refunded": "0.00", + "date": "2020-04-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5212, + "invoices": [ + { + "invoice_id": 10369, + "amount": "34.22", + "refunded": "0.00" + } + ], + "invoice_id": 10369, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "34.22", + "applied": "34.22", + "refunded": "0.00", + "date": "2020-03-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5213, + "invoices": [ + { + "invoice_id": 10370, + "amount": "12.03", + "refunded": "0.00" + } + ], + "invoice_id": 10370, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "12.03", + "applied": "12.03", + "refunded": "0.00", + "date": "2020-04-11", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5214, + "invoices": [ + { + "invoice_id": 10371, + "amount": "41.86", + "refunded": "0.00" + } + ], + "invoice_id": 10371, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "41.86", + "applied": "41.86", + "refunded": "0.00", + "date": "2020-09-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5215, + "invoices": [ + { + "invoice_id": 10372, + "amount": "17.26", + "refunded": "0.00" + } + ], + "invoice_id": 10372, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.26", + "applied": "17.26", + "refunded": "0.00", + "date": "2020-05-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5216, + "invoices": [ + { + "invoice_id": 10373, + "amount": "6.89", + "refunded": "0.00" + } + ], + "invoice_id": 10373, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.89", + "applied": "6.89", + "refunded": "0.00", + "date": "2020-04-12", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5217, + "invoices": [ + { + "invoice_id": 10374, + "amount": "2.07", + "refunded": "0.00" + } + ], + "invoice_id": 10374, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.07", + "applied": "2.07", + "refunded": "0.00", + "date": "2020-08-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5218, + "invoices": [ + { + "invoice_id": 10375, + "amount": "2.04", + "refunded": "0.00" + } + ], + "invoice_id": 10375, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.04", + "applied": "2.04", + "refunded": "0.00", + "date": "2020-06-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5219, + "invoices": [ + { + "invoice_id": 10376, + "amount": "15.31", + "refunded": "0.00" + } + ], + "invoice_id": 10376, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "15.31", + "applied": "15.31", + "refunded": "0.00", + "date": "2020-06-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5220, + "invoices": [ + { + "invoice_id": 10377, + "amount": "16.16", + "refunded": "0.00" + } + ], + "invoice_id": 10377, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.16", + "applied": "16.16", + "refunded": "0.00", + "date": "2020-09-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5221, + "invoices": [ + { + "invoice_id": 10398, + "amount": "1.64", + "refunded": "0.00" + } + ], + "invoice_id": 10398, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.64", + "applied": "1.64", + "refunded": "0.00", + "date": "2020-06-01", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5222, + "invoices": [ + { + "invoice_id": 10399, + "amount": "31.08", + "refunded": "0.00" + } + ], + "invoice_id": 10399, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "31.08", + "applied": "31.08", + "refunded": "0.00", + "date": "2020-06-26", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5223, + "invoices": [ + { + "invoice_id": 10400, + "amount": "18.21", + "refunded": "0.00" + } + ], + "invoice_id": 10400, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "18.21", + "applied": "18.21", + "refunded": "0.00", + "date": "2020-08-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5224, + "invoices": [ + { + "invoice_id": 10401, + "amount": "8.37", + "refunded": "0.00" + } + ], + "invoice_id": 10401, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.37", + "applied": "8.37", + "refunded": "0.00", + "date": "2020-05-17", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5225, + "invoices": [ + { + "invoice_id": 10402, + "amount": "17.65", + "refunded": "0.00" + } + ], + "invoice_id": 10402, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.65", + "applied": "17.65", + "refunded": "0.00", + "date": "2020-08-17", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5226, + "invoices": [ + { + "invoice_id": 10403, + "amount": "0.38", + "refunded": "0.00" + } + ], + "invoice_id": 10403, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.38", + "applied": "0.38", + "refunded": "0.00", + "date": "2020-07-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5227, + "invoices": [ + { + "invoice_id": 10404, + "amount": "40.56", + "refunded": "0.00" + } + ], + "invoice_id": 10404, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "40.56", + "applied": "40.56", + "refunded": "0.00", + "date": "2020-04-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5228, + "invoices": [ + { + "invoice_id": 10405, + "amount": "3.62", + "refunded": "0.00" + } + ], + "invoice_id": 10405, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.62", + "applied": "3.62", + "refunded": "0.00", + "date": "2020-09-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5229, + "invoices": [ + { + "invoice_id": 10406, + "amount": "3.76", + "refunded": "0.00" + } + ], + "invoice_id": 10406, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.76", + "applied": "3.76", + "refunded": "0.00", + "date": "2020-07-31", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5230, + "invoices": [ + { + "invoice_id": 10407, + "amount": "35.14", + "refunded": "0.00" + } + ], + "invoice_id": 10407, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "35.14", + "applied": "35.14", + "refunded": "0.00", + "date": "2020-06-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5231, + "invoices": [ + { + "invoice_id": 10408, + "amount": "8.45", + "refunded": "0.00" + } + ], + "invoice_id": 10408, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.45", + "applied": "8.45", + "refunded": "0.00", + "date": "2020-08-05", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5232, + "invoices": [ + { + "invoice_id": 10409, + "amount": "7.72", + "refunded": "0.00" + } + ], + "invoice_id": 10409, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "7.72", + "applied": "7.72", + "refunded": "0.00", + "date": "2020-09-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5233, + "invoices": [ + { + "invoice_id": 10410, + "amount": "4.41", + "refunded": "0.00" + } + ], + "invoice_id": 10410, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.41", + "applied": "4.41", + "refunded": "0.00", + "date": "2020-05-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5234, + "invoices": [ + { + "invoice_id": 10411, + "amount": "13.84", + "refunded": "0.00" + } + ], + "invoice_id": 10411, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.84", + "applied": "13.84", + "refunded": "0.00", + "date": "2020-09-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5235, + "invoices": [ + { + "invoice_id": 10412, + "amount": "17.41", + "refunded": "0.00" + } + ], + "invoice_id": 10412, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.41", + "applied": "17.41", + "refunded": "0.00", + "date": "2020-06-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5236, + "invoices": [ + { + "invoice_id": 10413, + "amount": "42.00", + "refunded": "0.00" + } + ], + "invoice_id": 10413, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "42.00", + "applied": "42.00", + "refunded": "0.00", + "date": "2020-09-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5237, + "invoices": [ + { + "invoice_id": 10414, + "amount": "2.47", + "refunded": "0.00" + } + ], + "invoice_id": 10414, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.47", + "applied": "2.47", + "refunded": "0.00", + "date": "2020-09-12", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5238, + "invoices": [ + { + "invoice_id": 10415, + "amount": "1.72", + "refunded": "0.00" + } + ], + "invoice_id": 10415, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.72", + "applied": "1.72", + "refunded": "0.00", + "date": "2020-09-02", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5239, + "invoices": [ + { + "invoice_id": 10416, + "amount": "40.55", + "refunded": "0.00" + } + ], + "invoice_id": 10416, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "40.55", + "applied": "40.55", + "refunded": "0.00", + "date": "2020-09-14", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5240, + "invoices": [ + { + "invoice_id": 10417, + "amount": "2.81", + "refunded": "0.00" + } + ], + "invoice_id": 10417, + "company_id": 1, + "client_id": 54, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.81", + "applied": "2.81", + "refunded": "0.00", + "date": "2020-07-04", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5241, + "invoices": [ + { + "invoice_id": 10438, + "amount": "8.06", + "refunded": "0.00" + } + ], + "invoice_id": 10438, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.06", + "applied": "8.06", + "refunded": "0.00", + "date": "2020-07-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5242, + "invoices": [ + { + "invoice_id": 10439, + "amount": "4.63", + "refunded": "0.00" + } + ], + "invoice_id": 10439, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.63", + "applied": "4.63", + "refunded": "0.00", + "date": "2020-05-18", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5243, + "invoices": [ + { + "invoice_id": 10440, + "amount": "8.17", + "refunded": "0.00" + } + ], + "invoice_id": 10440, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.17", + "applied": "8.17", + "refunded": "0.00", + "date": "2020-09-01", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5244, + "invoices": [ + { + "invoice_id": 10441, + "amount": "15.21", + "refunded": "0.00" + } + ], + "invoice_id": 10441, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "15.21", + "applied": "15.21", + "refunded": "0.00", + "date": "2020-07-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5245, + "invoices": [ + { + "invoice_id": 10442, + "amount": "3.28", + "refunded": "0.00" + } + ], + "invoice_id": 10442, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.28", + "applied": "3.28", + "refunded": "0.00", + "date": "2020-09-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5246, + "invoices": [ + { + "invoice_id": 10443, + "amount": "1.31", + "refunded": "0.00" + } + ], + "invoice_id": 10443, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.31", + "applied": "1.31", + "refunded": "0.00", + "date": "2020-06-18", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5247, + "invoices": [ + { + "invoice_id": 10444, + "amount": "2.28", + "refunded": "0.00" + } + ], + "invoice_id": 10444, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.28", + "applied": "2.28", + "refunded": "0.00", + "date": "2020-06-11", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5248, + "invoices": [ + { + "invoice_id": 10445, + "amount": "58.01", + "refunded": "0.00" + } + ], + "invoice_id": 10445, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "58.01", + "applied": "58.01", + "refunded": "0.00", + "date": "2020-05-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5249, + "invoices": [ + { + "invoice_id": 10446, + "amount": "19.44", + "refunded": "0.00" + } + ], + "invoice_id": 10446, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "19.44", + "applied": "19.44", + "refunded": "0.00", + "date": "2020-09-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5250, + "invoices": [ + { + "invoice_id": 10447, + "amount": "24.07", + "refunded": "0.00" + } + ], + "invoice_id": 10447, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "24.07", + "applied": "24.07", + "refunded": "0.00", + "date": "2020-07-18", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5251, + "invoices": [ + { + "invoice_id": 10448, + "amount": "5.15", + "refunded": "0.00" + } + ], + "invoice_id": 10448, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.15", + "applied": "5.15", + "refunded": "0.00", + "date": "2020-08-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5252, + "invoices": [ + { + "invoice_id": 10449, + "amount": "4.96", + "refunded": "0.00" + } + ], + "invoice_id": 10449, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.96", + "applied": "4.96", + "refunded": "0.00", + "date": "2020-08-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5253, + "invoices": [ + { + "invoice_id": 10450, + "amount": "39.23", + "refunded": "0.00" + } + ], + "invoice_id": 10450, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "39.23", + "applied": "39.23", + "refunded": "0.00", + "date": "2020-09-05", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5254, + "invoices": [ + { + "invoice_id": 10451, + "amount": "7.51", + "refunded": "0.00" + } + ], + "invoice_id": 10451, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "7.51", + "applied": "7.51", + "refunded": "0.00", + "date": "2020-05-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5255, + "invoices": [ + { + "invoice_id": 10452, + "amount": "16.83", + "refunded": "0.00" + } + ], + "invoice_id": 10452, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.83", + "applied": "16.83", + "refunded": "0.00", + "date": "2020-09-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5256, + "invoices": [ + { + "invoice_id": 10453, + "amount": "17.08", + "refunded": "0.00" + } + ], + "invoice_id": 10453, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.08", + "applied": "17.08", + "refunded": "0.00", + "date": "2020-08-09", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5257, + "invoices": [ + { + "invoice_id": 10454, + "amount": "1.68", + "refunded": "0.00" + } + ], + "invoice_id": 10454, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.68", + "applied": "1.68", + "refunded": "0.00", + "date": "2020-06-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5258, + "invoices": [ + { + "invoice_id": 10455, + "amount": "3.43", + "refunded": "0.00" + } + ], + "invoice_id": 10455, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.43", + "applied": "3.43", + "refunded": "0.00", + "date": "2020-06-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5259, + "invoices": [ + { + "invoice_id": 10456, + "amount": "34.98", + "refunded": "0.00" + } + ], + "invoice_id": 10456, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "34.98", + "applied": "34.98", + "refunded": "0.00", + "date": "2020-06-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5260, + "invoices": [ + { + "invoice_id": 10457, + "amount": "5.56", + "refunded": "0.00" + } + ], + "invoice_id": 10457, + "company_id": 1, + "client_id": 55, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.56", + "applied": "5.56", + "refunded": "0.00", + "date": "2020-06-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5261, + "invoices": [ + { + "invoice_id": 10478, + "amount": "13.42", + "refunded": "0.00" + } + ], + "invoice_id": 10478, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.42", + "applied": "13.42", + "refunded": "0.00", + "date": "2020-07-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5262, + "invoices": [ + { + "invoice_id": 10479, + "amount": "16.29", + "refunded": "0.00" + } + ], + "invoice_id": 10479, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.29", + "applied": "16.29", + "refunded": "0.00", + "date": "2020-09-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5263, + "invoices": [ + { + "invoice_id": 10480, + "amount": "34.93", + "refunded": "0.00" + } + ], + "invoice_id": 10480, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "34.93", + "applied": "34.93", + "refunded": "0.00", + "date": "2020-06-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5264, + "invoices": [ + { + "invoice_id": 10481, + "amount": "24.24", + "refunded": "0.00" + } + ], + "invoice_id": 10481, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "24.24", + "applied": "24.24", + "refunded": "0.00", + "date": "2020-05-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5265, + "invoices": [ + { + "invoice_id": 10482, + "amount": "40.38", + "refunded": "0.00" + } + ], + "invoice_id": 10482, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "40.38", + "applied": "40.38", + "refunded": "0.00", + "date": "2020-04-26", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5266, + "invoices": [ + { + "invoice_id": 10483, + "amount": "11.15", + "refunded": "0.00" + } + ], + "invoice_id": 10483, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "11.15", + "applied": "11.15", + "refunded": "0.00", + "date": "2020-06-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5267, + "invoices": [ + { + "invoice_id": 10484, + "amount": "21.15", + "refunded": "0.00" + } + ], + "invoice_id": 10484, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "21.15", + "applied": "21.15", + "refunded": "0.00", + "date": "2020-06-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5268, + "invoices": [ + { + "invoice_id": 10485, + "amount": "30.45", + "refunded": "0.00" + } + ], + "invoice_id": 10485, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "30.45", + "applied": "30.45", + "refunded": "0.00", + "date": "2020-06-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5269, + "invoices": [ + { + "invoice_id": 10486, + "amount": "17.19", + "refunded": "0.00" + } + ], + "invoice_id": 10486, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.19", + "applied": "17.19", + "refunded": "0.00", + "date": "2020-09-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5270, + "invoices": [ + { + "invoice_id": 10487, + "amount": "10.38", + "refunded": "0.00" + } + ], + "invoice_id": 10487, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "10.38", + "applied": "10.38", + "refunded": "0.00", + "date": "2020-06-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5271, + "invoices": [ + { + "invoice_id": 10488, + "amount": "3.65", + "refunded": "0.00" + } + ], + "invoice_id": 10488, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.65", + "applied": "3.65", + "refunded": "0.00", + "date": "2020-07-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5272, + "invoices": [ + { + "invoice_id": 10489, + "amount": "8.52", + "refunded": "0.00" + } + ], + "invoice_id": 10489, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.52", + "applied": "8.52", + "refunded": "0.00", + "date": "2020-04-01", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5273, + "invoices": [ + { + "invoice_id": 10490, + "amount": "9.40", + "refunded": "0.00" + } + ], + "invoice_id": 10490, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "9.40", + "applied": "9.40", + "refunded": "0.00", + "date": "2020-05-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5274, + "invoices": [ + { + "invoice_id": 10491, + "amount": "0.88", + "refunded": "0.00" + } + ], + "invoice_id": 10491, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.88", + "applied": "0.88", + "refunded": "0.00", + "date": "2020-10-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5275, + "invoices": [ + { + "invoice_id": 10492, + "amount": "45.51", + "refunded": "0.00" + } + ], + "invoice_id": 10492, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "45.51", + "applied": "45.51", + "refunded": "0.00", + "date": "2020-06-18", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5276, + "invoices": [ + { + "invoice_id": 10493, + "amount": "6.58", + "refunded": "0.00" + } + ], + "invoice_id": 10493, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.58", + "applied": "6.58", + "refunded": "0.00", + "date": "2020-07-04", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5277, + "invoices": [ + { + "invoice_id": 10494, + "amount": "4.28", + "refunded": "0.00" + } + ], + "invoice_id": 10494, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.28", + "applied": "4.28", + "refunded": "0.00", + "date": "2020-06-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5278, + "invoices": [ + { + "invoice_id": 10495, + "amount": "36.43", + "refunded": "0.00" + } + ], + "invoice_id": 10495, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "36.43", + "applied": "36.43", + "refunded": "0.00", + "date": "2020-04-17", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5279, + "invoices": [ + { + "invoice_id": 10496, + "amount": "24.45", + "refunded": "0.00" + } + ], + "invoice_id": 10496, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "24.45", + "applied": "24.45", + "refunded": "0.00", + "date": "2020-06-12", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5280, + "invoices": [ + { + "invoice_id": 10497, + "amount": "3.97", + "refunded": "0.00" + } + ], + "invoice_id": 10497, + "company_id": 1, + "client_id": 56, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.97", + "applied": "3.97", + "refunded": "0.00", + "date": "2020-04-12", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5281, + "invoices": [ + { + "invoice_id": 10518, + "amount": "14.04", + "refunded": "0.00" + } + ], + "invoice_id": 10518, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "14.04", + "applied": "14.04", + "refunded": "0.00", + "date": "2020-03-30", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5282, + "invoices": [ + { + "invoice_id": 10519, + "amount": "5.96", + "refunded": "0.00" + } + ], + "invoice_id": 10519, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.96", + "applied": "5.96", + "refunded": "0.00", + "date": "2020-07-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5283, + "invoices": [ + { + "invoice_id": 10520, + "amount": "68.02", + "refunded": "0.00" + } + ], + "invoice_id": 10520, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "68.02", + "applied": "68.02", + "refunded": "0.00", + "date": "2020-06-01", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5284, + "invoices": [ + { + "invoice_id": 10521, + "amount": "21.04", + "refunded": "0.00" + } + ], + "invoice_id": 10521, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "21.04", + "applied": "21.04", + "refunded": "0.00", + "date": "2020-04-11", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5285, + "invoices": [ + { + "invoice_id": 10522, + "amount": "0.34", + "refunded": "0.00" + } + ], + "invoice_id": 10522, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.34", + "applied": "0.34", + "refunded": "0.00", + "date": "2020-05-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5286, + "invoices": [ + { + "invoice_id": 10523, + "amount": "5.40", + "refunded": "0.00" + } + ], + "invoice_id": 10523, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.40", + "applied": "5.40", + "refunded": "0.00", + "date": "2020-04-09", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5287, + "invoices": [ + { + "invoice_id": 10524, + "amount": "67.57", + "refunded": "0.00" + } + ], + "invoice_id": 10524, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "67.57", + "applied": "67.57", + "refunded": "0.00", + "date": "2020-05-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5288, + "invoices": [ + { + "invoice_id": 10525, + "amount": "1.81", + "refunded": "0.00" + } + ], + "invoice_id": 10525, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.81", + "applied": "1.81", + "refunded": "0.00", + "date": "2020-07-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5289, + "invoices": [ + { + "invoice_id": 10526, + "amount": "9.05", + "refunded": "0.00" + } + ], + "invoice_id": 10526, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "9.05", + "applied": "9.05", + "refunded": "0.00", + "date": "2020-07-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5290, + "invoices": [ + { + "invoice_id": 10527, + "amount": "10.50", + "refunded": "0.00" + } + ], + "invoice_id": 10527, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "10.50", + "applied": "10.50", + "refunded": "0.00", + "date": "2020-05-14", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5291, + "invoices": [ + { + "invoice_id": 10528, + "amount": "0.95", + "refunded": "0.00" + } + ], + "invoice_id": 10528, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.95", + "applied": "0.95", + "refunded": "0.00", + "date": "2020-09-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5292, + "invoices": [ + { + "invoice_id": 10529, + "amount": "8.71", + "refunded": "0.00" + } + ], + "invoice_id": 10529, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.71", + "applied": "8.71", + "refunded": "0.00", + "date": "2020-06-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5293, + "invoices": [ + { + "invoice_id": 10530, + "amount": "5.56", + "refunded": "0.00" + } + ], + "invoice_id": 10530, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.56", + "applied": "5.56", + "refunded": "0.00", + "date": "2020-08-01", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5294, + "invoices": [ + { + "invoice_id": 10531, + "amount": "10.60", + "refunded": "0.00" + } + ], + "invoice_id": 10531, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "10.60", + "applied": "10.60", + "refunded": "0.00", + "date": "2020-06-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5295, + "invoices": [ + { + "invoice_id": 10532, + "amount": "2.44", + "refunded": "0.00" + } + ], + "invoice_id": 10532, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.44", + "applied": "2.44", + "refunded": "0.00", + "date": "2020-04-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5296, + "invoices": [ + { + "invoice_id": 10533, + "amount": "9.54", + "refunded": "0.00" + } + ], + "invoice_id": 10533, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "9.54", + "applied": "9.54", + "refunded": "0.00", + "date": "2020-05-26", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5297, + "invoices": [ + { + "invoice_id": 10534, + "amount": "60.09", + "refunded": "0.00" + } + ], + "invoice_id": 10534, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "60.09", + "applied": "60.09", + "refunded": "0.00", + "date": "2020-06-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5298, + "invoices": [ + { + "invoice_id": 10535, + "amount": "33.30", + "refunded": "0.00" + } + ], + "invoice_id": 10535, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "33.30", + "applied": "33.30", + "refunded": "0.00", + "date": "2020-05-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5299, + "invoices": [ + { + "invoice_id": 10536, + "amount": "20.37", + "refunded": "0.00" + } + ], + "invoice_id": 10536, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "20.37", + "applied": "20.37", + "refunded": "0.00", + "date": "2020-03-30", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5300, + "invoices": [ + { + "invoice_id": 10537, + "amount": "23.05", + "refunded": "0.00" + } + ], + "invoice_id": 10537, + "company_id": 1, + "client_id": 57, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "23.05", + "applied": "23.05", + "refunded": "0.00", + "date": "2020-05-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5301, + "invoices": [ + { + "invoice_id": 10558, + "amount": "3.50", + "refunded": "0.00" + } + ], + "invoice_id": 10558, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.50", + "applied": "3.50", + "refunded": "0.00", + "date": "2020-09-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5302, + "invoices": [ + { + "invoice_id": 10559, + "amount": "6.17", + "refunded": "0.00" + } + ], + "invoice_id": 10559, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.17", + "applied": "6.17", + "refunded": "0.00", + "date": "2020-05-04", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5303, + "invoices": [ + { + "invoice_id": 10560, + "amount": "1.10", + "refunded": "0.00" + } + ], + "invoice_id": 10560, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.10", + "applied": "1.10", + "refunded": "0.00", + "date": "2020-09-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5304, + "invoices": [ + { + "invoice_id": 10561, + "amount": "2.67", + "refunded": "0.00" + } + ], + "invoice_id": 10561, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.67", + "applied": "2.67", + "refunded": "0.00", + "date": "2020-07-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5305, + "invoices": [ + { + "invoice_id": 10562, + "amount": "25.22", + "refunded": "0.00" + } + ], + "invoice_id": 10562, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "25.22", + "applied": "25.22", + "refunded": "0.00", + "date": "2020-05-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5306, + "invoices": [ + { + "invoice_id": 10563, + "amount": "20.49", + "refunded": "0.00" + } + ], + "invoice_id": 10563, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "20.49", + "applied": "20.49", + "refunded": "0.00", + "date": "2020-05-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5307, + "invoices": [ + { + "invoice_id": 10564, + "amount": "1.30", + "refunded": "0.00" + } + ], + "invoice_id": 10564, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.30", + "applied": "1.30", + "refunded": "0.00", + "date": "2020-04-30", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5308, + "invoices": [ + { + "invoice_id": 10565, + "amount": "9.28", + "refunded": "0.00" + } + ], + "invoice_id": 10565, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "9.28", + "applied": "9.28", + "refunded": "0.00", + "date": "2020-07-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5309, + "invoices": [ + { + "invoice_id": 10566, + "amount": "27.26", + "refunded": "0.00" + } + ], + "invoice_id": 10566, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "27.26", + "applied": "27.26", + "refunded": "0.00", + "date": "2020-06-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5310, + "invoices": [ + { + "invoice_id": 10567, + "amount": "6.73", + "refunded": "0.00" + } + ], + "invoice_id": 10567, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.73", + "applied": "6.73", + "refunded": "0.00", + "date": "2020-04-02", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5311, + "invoices": [ + { + "invoice_id": 10568, + "amount": "29.21", + "refunded": "0.00" + } + ], + "invoice_id": 10568, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "29.21", + "applied": "29.21", + "refunded": "0.00", + "date": "2020-06-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5312, + "invoices": [ + { + "invoice_id": 10569, + "amount": "4.43", + "refunded": "0.00" + } + ], + "invoice_id": 10569, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.43", + "applied": "4.43", + "refunded": "0.00", + "date": "2020-07-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5313, + "invoices": [ + { + "invoice_id": 10570, + "amount": "1.93", + "refunded": "0.00" + } + ], + "invoice_id": 10570, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.93", + "applied": "1.93", + "refunded": "0.00", + "date": "2020-05-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5314, + "invoices": [ + { + "invoice_id": 10571, + "amount": "22.25", + "refunded": "0.00" + } + ], + "invoice_id": 10571, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "22.25", + "applied": "22.25", + "refunded": "0.00", + "date": "2020-04-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5315, + "invoices": [ + { + "invoice_id": 10572, + "amount": "2.67", + "refunded": "0.00" + } + ], + "invoice_id": 10572, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.67", + "applied": "2.67", + "refunded": "0.00", + "date": "2020-04-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5316, + "invoices": [ + { + "invoice_id": 10573, + "amount": "9.08", + "refunded": "0.00" + } + ], + "invoice_id": 10573, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "9.08", + "applied": "9.08", + "refunded": "0.00", + "date": "2020-07-26", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5317, + "invoices": [ + { + "invoice_id": 10574, + "amount": "3.40", + "refunded": "0.00" + } + ], + "invoice_id": 10574, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.40", + "applied": "3.40", + "refunded": "0.00", + "date": "2020-04-01", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5318, + "invoices": [ + { + "invoice_id": 10575, + "amount": "17.01", + "refunded": "0.00" + } + ], + "invoice_id": 10575, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.01", + "applied": "17.01", + "refunded": "0.00", + "date": "2020-03-26", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5319, + "invoices": [ + { + "invoice_id": 10576, + "amount": "6.99", + "refunded": "0.00" + } + ], + "invoice_id": 10576, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.99", + "applied": "6.99", + "refunded": "0.00", + "date": "2020-07-11", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5320, + "invoices": [ + { + "invoice_id": 10577, + "amount": "11.38", + "refunded": "0.00" + } + ], + "invoice_id": 10577, + "company_id": 1, + "client_id": 58, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "11.38", + "applied": "11.38", + "refunded": "0.00", + "date": "2020-09-11", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5321, + "invoices": [ + { + "invoice_id": 10598, + "amount": "35.62", + "refunded": "0.00" + } + ], + "invoice_id": 10598, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "35.62", + "applied": "35.62", + "refunded": "0.00", + "date": "2020-04-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5322, + "invoices": [ + { + "invoice_id": 10599, + "amount": "6.07", + "refunded": "0.00" + } + ], + "invoice_id": 10599, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.07", + "applied": "6.07", + "refunded": "0.00", + "date": "2020-04-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5323, + "invoices": [ + { + "invoice_id": 10600, + "amount": "11.92", + "refunded": "0.00" + } + ], + "invoice_id": 10600, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "11.92", + "applied": "11.92", + "refunded": "0.00", + "date": "2020-05-11", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5324, + "invoices": [ + { + "invoice_id": 10601, + "amount": "47.58", + "refunded": "0.00" + } + ], + "invoice_id": 10601, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "47.58", + "applied": "47.58", + "refunded": "0.00", + "date": "2020-07-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5325, + "invoices": [ + { + "invoice_id": 10602, + "amount": "9.83", + "refunded": "0.00" + } + ], + "invoice_id": 10602, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "9.83", + "applied": "9.83", + "refunded": "0.00", + "date": "2020-04-09", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5326, + "invoices": [ + { + "invoice_id": 10603, + "amount": "13.59", + "refunded": "0.00" + } + ], + "invoice_id": 10603, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.59", + "applied": "13.59", + "refunded": "0.00", + "date": "2020-05-02", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5327, + "invoices": [ + { + "invoice_id": 10604, + "amount": "3.11", + "refunded": "0.00" + } + ], + "invoice_id": 10604, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.11", + "applied": "3.11", + "refunded": "0.00", + "date": "2020-09-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5328, + "invoices": [ + { + "invoice_id": 10605, + "amount": "15.81", + "refunded": "0.00" + } + ], + "invoice_id": 10605, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "15.81", + "applied": "15.81", + "refunded": "0.00", + "date": "2020-04-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5329, + "invoices": [ + { + "invoice_id": 10606, + "amount": "22.66", + "refunded": "0.00" + } + ], + "invoice_id": 10606, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "22.66", + "applied": "22.66", + "refunded": "0.00", + "date": "2020-06-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5330, + "invoices": [ + { + "invoice_id": 10607, + "amount": "8.15", + "refunded": "0.00" + } + ], + "invoice_id": 10607, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.15", + "applied": "8.15", + "refunded": "0.00", + "date": "2020-05-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5331, + "invoices": [ + { + "invoice_id": 10608, + "amount": "39.80", + "refunded": "0.00" + } + ], + "invoice_id": 10608, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "39.80", + "applied": "39.80", + "refunded": "0.00", + "date": "2020-04-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5332, + "invoices": [ + { + "invoice_id": 10609, + "amount": "18.39", + "refunded": "0.00" + } + ], + "invoice_id": 10609, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "18.39", + "applied": "18.39", + "refunded": "0.00", + "date": "2020-05-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5333, + "invoices": [ + { + "invoice_id": 10610, + "amount": "0.23", + "refunded": "0.00" + } + ], + "invoice_id": 10610, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.23", + "applied": "0.23", + "refunded": "0.00", + "date": "2020-07-31", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5334, + "invoices": [ + { + "invoice_id": 10611, + "amount": "29.90", + "refunded": "0.00" + } + ], + "invoice_id": 10611, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "29.90", + "applied": "29.90", + "refunded": "0.00", + "date": "2020-07-23", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5335, + "invoices": [ + { + "invoice_id": 10612, + "amount": "2.63", + "refunded": "0.00" + } + ], + "invoice_id": 10612, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.63", + "applied": "2.63", + "refunded": "0.00", + "date": "2020-10-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5336, + "invoices": [ + { + "invoice_id": 10613, + "amount": "3.76", + "refunded": "0.00" + } + ], + "invoice_id": 10613, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.76", + "applied": "3.76", + "refunded": "0.00", + "date": "2020-07-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5337, + "invoices": [ + { + "invoice_id": 10614, + "amount": "9.75", + "refunded": "0.00" + } + ], + "invoice_id": 10614, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "9.75", + "applied": "9.75", + "refunded": "0.00", + "date": "2020-07-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5338, + "invoices": [ + { + "invoice_id": 10615, + "amount": "17.45", + "refunded": "0.00" + } + ], + "invoice_id": 10615, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.45", + "applied": "17.45", + "refunded": "0.00", + "date": "2020-10-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5339, + "invoices": [ + { + "invoice_id": 10616, + "amount": "2.65", + "refunded": "0.00" + } + ], + "invoice_id": 10616, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.65", + "applied": "2.65", + "refunded": "0.00", + "date": "2020-05-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5340, + "invoices": [ + { + "invoice_id": 10617, + "amount": "0.21", + "refunded": "0.00" + } + ], + "invoice_id": 10617, + "company_id": 1, + "client_id": 59, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.21", + "applied": "0.21", + "refunded": "0.00", + "date": "2020-07-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5341, + "invoices": [ + { + "invoice_id": 10638, + "amount": "43.82", + "refunded": "0.00" + } + ], + "invoice_id": 10638, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "43.82", + "applied": "43.82", + "refunded": "0.00", + "date": "2020-09-01", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5342, + "invoices": [ + { + "invoice_id": 10639, + "amount": "10.91", + "refunded": "0.00" + } + ], + "invoice_id": 10639, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "10.91", + "applied": "10.91", + "refunded": "0.00", + "date": "2020-05-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5343, + "invoices": [ + { + "invoice_id": 10640, + "amount": "68.52", + "refunded": "0.00" + } + ], + "invoice_id": 10640, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "68.52", + "applied": "68.52", + "refunded": "0.00", + "date": "2020-05-05", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5344, + "invoices": [ + { + "invoice_id": 10641, + "amount": "13.45", + "refunded": "0.00" + } + ], + "invoice_id": 10641, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.45", + "applied": "13.45", + "refunded": "0.00", + "date": "2020-04-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5345, + "invoices": [ + { + "invoice_id": 10642, + "amount": "38.75", + "refunded": "0.00" + } + ], + "invoice_id": 10642, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "38.75", + "applied": "38.75", + "refunded": "0.00", + "date": "2020-09-14", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5346, + "invoices": [ + { + "invoice_id": 10643, + "amount": "7.61", + "refunded": "0.00" + } + ], + "invoice_id": 10643, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "7.61", + "applied": "7.61", + "refunded": "0.00", + "date": "2020-08-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5347, + "invoices": [ + { + "invoice_id": 10644, + "amount": "9.08", + "refunded": "0.00" + } + ], + "invoice_id": 10644, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "9.08", + "applied": "9.08", + "refunded": "0.00", + "date": "2020-09-09", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5348, + "invoices": [ + { + "invoice_id": 10645, + "amount": "2.82", + "refunded": "0.00" + } + ], + "invoice_id": 10645, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.82", + "applied": "2.82", + "refunded": "0.00", + "date": "2020-08-31", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5349, + "invoices": [ + { + "invoice_id": 10646, + "amount": "61.00", + "refunded": "0.00" + } + ], + "invoice_id": 10646, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "61.00", + "applied": "61.00", + "refunded": "0.00", + "date": "2020-09-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5350, + "invoices": [ + { + "invoice_id": 10647, + "amount": "4.88", + "refunded": "0.00" + } + ], + "invoice_id": 10647, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.88", + "applied": "4.88", + "refunded": "0.00", + "date": "2020-08-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5351, + "invoices": [ + { + "invoice_id": 10648, + "amount": "33.98", + "refunded": "0.00" + } + ], + "invoice_id": 10648, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "33.98", + "applied": "33.98", + "refunded": "0.00", + "date": "2020-07-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5352, + "invoices": [ + { + "invoice_id": 10649, + "amount": "11.63", + "refunded": "0.00" + } + ], + "invoice_id": 10649, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "11.63", + "applied": "11.63", + "refunded": "0.00", + "date": "2020-03-23", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5353, + "invoices": [ + { + "invoice_id": 10650, + "amount": "18.22", + "refunded": "0.00" + } + ], + "invoice_id": 10650, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "18.22", + "applied": "18.22", + "refunded": "0.00", + "date": "2020-05-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5354, + "invoices": [ + { + "invoice_id": 10651, + "amount": "25.24", + "refunded": "0.00" + } + ], + "invoice_id": 10651, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "25.24", + "applied": "25.24", + "refunded": "0.00", + "date": "2020-05-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5355, + "invoices": [ + { + "invoice_id": 10652, + "amount": "13.02", + "refunded": "0.00" + } + ], + "invoice_id": 10652, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.02", + "applied": "13.02", + "refunded": "0.00", + "date": "2020-06-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5356, + "invoices": [ + { + "invoice_id": 10653, + "amount": "6.61", + "refunded": "0.00" + } + ], + "invoice_id": 10653, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.61", + "applied": "6.61", + "refunded": "0.00", + "date": "2020-09-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5357, + "invoices": [ + { + "invoice_id": 10654, + "amount": "48.62", + "refunded": "0.00" + } + ], + "invoice_id": 10654, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "48.62", + "applied": "48.62", + "refunded": "0.00", + "date": "2020-05-31", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5358, + "invoices": [ + { + "invoice_id": 10655, + "amount": "4.59", + "refunded": "0.00" + } + ], + "invoice_id": 10655, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.59", + "applied": "4.59", + "refunded": "0.00", + "date": "2020-07-17", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5359, + "invoices": [ + { + "invoice_id": 10656, + "amount": "6.12", + "refunded": "0.00" + } + ], + "invoice_id": 10656, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.12", + "applied": "6.12", + "refunded": "0.00", + "date": "2020-05-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5360, + "invoices": [ + { + "invoice_id": 10657, + "amount": "8.50", + "refunded": "0.00" + } + ], + "invoice_id": 10657, + "company_id": 1, + "client_id": 60, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.50", + "applied": "8.50", + "refunded": "0.00", + "date": "2020-04-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5361, + "invoices": [ + { + "invoice_id": 10678, + "amount": "4.00", + "refunded": "0.00" + } + ], + "invoice_id": 10678, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.00", + "applied": "4.00", + "refunded": "0.00", + "date": "2020-05-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5362, + "invoices": [ + { + "invoice_id": 10679, + "amount": "25.95", + "refunded": "0.00" + } + ], + "invoice_id": 10679, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "25.95", + "applied": "25.95", + "refunded": "0.00", + "date": "2020-07-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5363, + "invoices": [ + { + "invoice_id": 10680, + "amount": "25.54", + "refunded": "0.00" + } + ], + "invoice_id": 10680, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "25.54", + "applied": "25.54", + "refunded": "0.00", + "date": "2020-03-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5364, + "invoices": [ + { + "invoice_id": 10681, + "amount": "6.53", + "refunded": "0.00" + } + ], + "invoice_id": 10681, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.53", + "applied": "6.53", + "refunded": "0.00", + "date": "2020-08-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5365, + "invoices": [ + { + "invoice_id": 10682, + "amount": "31.99", + "refunded": "0.00" + } + ], + "invoice_id": 10682, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "31.99", + "applied": "31.99", + "refunded": "0.00", + "date": "2020-05-30", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5366, + "invoices": [ + { + "invoice_id": 10683, + "amount": "32.73", + "refunded": "0.00" + } + ], + "invoice_id": 10683, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "32.73", + "applied": "32.73", + "refunded": "0.00", + "date": "2020-05-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5367, + "invoices": [ + { + "invoice_id": 10684, + "amount": "2.41", + "refunded": "0.00" + } + ], + "invoice_id": 10684, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.41", + "applied": "2.41", + "refunded": "0.00", + "date": "2020-05-26", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5368, + "invoices": [ + { + "invoice_id": 10685, + "amount": "4.74", + "refunded": "0.00" + } + ], + "invoice_id": 10685, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.74", + "applied": "4.74", + "refunded": "0.00", + "date": "2020-07-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5369, + "invoices": [ + { + "invoice_id": 10686, + "amount": "69.88", + "refunded": "0.00" + } + ], + "invoice_id": 10686, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "69.88", + "applied": "69.88", + "refunded": "0.00", + "date": "2020-06-12", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5370, + "invoices": [ + { + "invoice_id": 10687, + "amount": "3.36", + "refunded": "0.00" + } + ], + "invoice_id": 10687, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.36", + "applied": "3.36", + "refunded": "0.00", + "date": "2020-05-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5371, + "invoices": [ + { + "invoice_id": 10688, + "amount": "10.33", + "refunded": "0.00" + } + ], + "invoice_id": 10688, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "10.33", + "applied": "10.33", + "refunded": "0.00", + "date": "2020-06-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5372, + "invoices": [ + { + "invoice_id": 10689, + "amount": "0.63", + "refunded": "0.00" + } + ], + "invoice_id": 10689, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.63", + "applied": "0.63", + "refunded": "0.00", + "date": "2020-09-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5373, + "invoices": [ + { + "invoice_id": 10690, + "amount": "5.11", + "refunded": "0.00" + } + ], + "invoice_id": 10690, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.11", + "applied": "5.11", + "refunded": "0.00", + "date": "2020-03-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5374, + "invoices": [ + { + "invoice_id": 10691, + "amount": "0.50", + "refunded": "0.00" + } + ], + "invoice_id": 10691, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.50", + "applied": "0.50", + "refunded": "0.00", + "date": "2020-05-18", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5375, + "invoices": [ + { + "invoice_id": 10692, + "amount": "1.60", + "refunded": "0.00" + } + ], + "invoice_id": 10692, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.60", + "applied": "1.60", + "refunded": "0.00", + "date": "2020-09-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5376, + "invoices": [ + { + "invoice_id": 10693, + "amount": "6.91", + "refunded": "0.00" + } + ], + "invoice_id": 10693, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.91", + "applied": "6.91", + "refunded": "0.00", + "date": "2020-03-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5377, + "invoices": [ + { + "invoice_id": 10694, + "amount": "2.43", + "refunded": "0.00" + } + ], + "invoice_id": 10694, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.43", + "applied": "2.43", + "refunded": "0.00", + "date": "2020-09-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5378, + "invoices": [ + { + "invoice_id": 10695, + "amount": "8.08", + "refunded": "0.00" + } + ], + "invoice_id": 10695, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.08", + "applied": "8.08", + "refunded": "0.00", + "date": "2020-04-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5379, + "invoices": [ + { + "invoice_id": 10696, + "amount": "9.88", + "refunded": "0.00" + } + ], + "invoice_id": 10696, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "9.88", + "applied": "9.88", + "refunded": "0.00", + "date": "2020-08-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5380, + "invoices": [ + { + "invoice_id": 10697, + "amount": "3.76", + "refunded": "0.00" + } + ], + "invoice_id": 10697, + "company_id": 1, + "client_id": 61, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.76", + "applied": "3.76", + "refunded": "0.00", + "date": "2020-07-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5381, + "invoices": [ + { + "invoice_id": 10718, + "amount": "4.22", + "refunded": "0.00" + } + ], + "invoice_id": 10718, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.22", + "applied": "4.22", + "refunded": "0.00", + "date": "2020-10-04", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5382, + "invoices": [ + { + "invoice_id": 10719, + "amount": "14.93", + "refunded": "0.00" + } + ], + "invoice_id": 10719, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "14.93", + "applied": "14.93", + "refunded": "0.00", + "date": "2020-07-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5383, + "invoices": [ + { + "invoice_id": 10720, + "amount": "21.83", + "refunded": "0.00" + } + ], + "invoice_id": 10720, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "21.83", + "applied": "21.83", + "refunded": "0.00", + "date": "2020-09-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5384, + "invoices": [ + { + "invoice_id": 10721, + "amount": "47.69", + "refunded": "0.00" + } + ], + "invoice_id": 10721, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "47.69", + "applied": "47.69", + "refunded": "0.00", + "date": "2020-08-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5385, + "invoices": [ + { + "invoice_id": 10722, + "amount": "38.72", + "refunded": "0.00" + } + ], + "invoice_id": 10722, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "38.72", + "applied": "38.72", + "refunded": "0.00", + "date": "2020-07-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5386, + "invoices": [ + { + "invoice_id": 10723, + "amount": "25.41", + "refunded": "0.00" + } + ], + "invoice_id": 10723, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "25.41", + "applied": "25.41", + "refunded": "0.00", + "date": "2020-05-09", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5387, + "invoices": [ + { + "invoice_id": 10724, + "amount": "1.50", + "refunded": "0.00" + } + ], + "invoice_id": 10724, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.50", + "applied": "1.50", + "refunded": "0.00", + "date": "2020-03-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5388, + "invoices": [ + { + "invoice_id": 10725, + "amount": "10.32", + "refunded": "0.00" + } + ], + "invoice_id": 10725, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "10.32", + "applied": "10.32", + "refunded": "0.00", + "date": "2020-04-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5389, + "invoices": [ + { + "invoice_id": 10726, + "amount": "33.20", + "refunded": "0.00" + } + ], + "invoice_id": 10726, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "33.20", + "applied": "33.20", + "refunded": "0.00", + "date": "2020-07-17", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5390, + "invoices": [ + { + "invoice_id": 10727, + "amount": "25.16", + "refunded": "0.00" + } + ], + "invoice_id": 10727, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "25.16", + "applied": "25.16", + "refunded": "0.00", + "date": "2020-09-04", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5391, + "invoices": [ + { + "invoice_id": 10728, + "amount": "13.22", + "refunded": "0.00" + } + ], + "invoice_id": 10728, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.22", + "applied": "13.22", + "refunded": "0.00", + "date": "2020-08-18", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5392, + "invoices": [ + { + "invoice_id": 10729, + "amount": "5.60", + "refunded": "0.00" + } + ], + "invoice_id": 10729, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.60", + "applied": "5.60", + "refunded": "0.00", + "date": "2020-09-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5393, + "invoices": [ + { + "invoice_id": 10730, + "amount": "14.32", + "refunded": "0.00" + } + ], + "invoice_id": 10730, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "14.32", + "applied": "14.32", + "refunded": "0.00", + "date": "2020-06-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5394, + "invoices": [ + { + "invoice_id": 10731, + "amount": "16.05", + "refunded": "0.00" + } + ], + "invoice_id": 10731, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.05", + "applied": "16.05", + "refunded": "0.00", + "date": "2020-05-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5395, + "invoices": [ + { + "invoice_id": 10732, + "amount": "0.47", + "refunded": "0.00" + } + ], + "invoice_id": 10732, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.47", + "applied": "0.47", + "refunded": "0.00", + "date": "2020-08-11", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5396, + "invoices": [ + { + "invoice_id": 10733, + "amount": "0.87", + "refunded": "0.00" + } + ], + "invoice_id": 10733, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.87", + "applied": "0.87", + "refunded": "0.00", + "date": "2020-04-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5397, + "invoices": [ + { + "invoice_id": 10734, + "amount": "1.78", + "refunded": "0.00" + } + ], + "invoice_id": 10734, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.78", + "applied": "1.78", + "refunded": "0.00", + "date": "2020-04-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5398, + "invoices": [ + { + "invoice_id": 10735, + "amount": "10.23", + "refunded": "0.00" + } + ], + "invoice_id": 10735, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "10.23", + "applied": "10.23", + "refunded": "0.00", + "date": "2020-05-17", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5399, + "invoices": [ + { + "invoice_id": 10736, + "amount": "56.81", + "refunded": "0.00" + } + ], + "invoice_id": 10736, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "56.81", + "applied": "56.81", + "refunded": "0.00", + "date": "2020-07-05", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5400, + "invoices": [ + { + "invoice_id": 10737, + "amount": "7.11", + "refunded": "0.00" + } + ], + "invoice_id": 10737, + "company_id": 1, + "client_id": 62, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "7.11", + "applied": "7.11", + "refunded": "0.00", + "date": "2020-07-23", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5401, + "invoices": [ + { + "invoice_id": 10758, + "amount": "6.72", + "refunded": "0.00" + } + ], + "invoice_id": 10758, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.72", + "applied": "6.72", + "refunded": "0.00", + "date": "2020-09-12", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5402, + "invoices": [ + { + "invoice_id": 10759, + "amount": "18.07", + "refunded": "0.00" + } + ], + "invoice_id": 10759, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "18.07", + "applied": "18.07", + "refunded": "0.00", + "date": "2020-05-05", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5403, + "invoices": [ + { + "invoice_id": 10760, + "amount": "6.20", + "refunded": "0.00" + } + ], + "invoice_id": 10760, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.20", + "applied": "6.20", + "refunded": "0.00", + "date": "2020-04-12", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5404, + "invoices": [ + { + "invoice_id": 10761, + "amount": "19.60", + "refunded": "0.00" + } + ], + "invoice_id": 10761, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "19.60", + "applied": "19.60", + "refunded": "0.00", + "date": "2020-06-02", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5405, + "invoices": [ + { + "invoice_id": 10762, + "amount": "49.07", + "refunded": "0.00" + } + ], + "invoice_id": 10762, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "49.07", + "applied": "49.07", + "refunded": "0.00", + "date": "2020-09-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5406, + "invoices": [ + { + "invoice_id": 10763, + "amount": "9.55", + "refunded": "0.00" + } + ], + "invoice_id": 10763, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "9.55", + "applied": "9.55", + "refunded": "0.00", + "date": "2020-07-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5407, + "invoices": [ + { + "invoice_id": 10764, + "amount": "16.88", + "refunded": "0.00" + } + ], + "invoice_id": 10764, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.88", + "applied": "16.88", + "refunded": "0.00", + "date": "2020-08-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5408, + "invoices": [ + { + "invoice_id": 10765, + "amount": "57.80", + "refunded": "0.00" + } + ], + "invoice_id": 10765, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "57.80", + "applied": "57.80", + "refunded": "0.00", + "date": "2020-03-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5409, + "invoices": [ + { + "invoice_id": 10766, + "amount": "18.69", + "refunded": "0.00" + } + ], + "invoice_id": 10766, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "18.69", + "applied": "18.69", + "refunded": "0.00", + "date": "2020-09-23", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5410, + "invoices": [ + { + "invoice_id": 10767, + "amount": "6.99", + "refunded": "0.00" + } + ], + "invoice_id": 10767, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.99", + "applied": "6.99", + "refunded": "0.00", + "date": "2020-03-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5411, + "invoices": [ + { + "invoice_id": 10768, + "amount": "14.07", + "refunded": "0.00" + } + ], + "invoice_id": 10768, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "14.07", + "applied": "14.07", + "refunded": "0.00", + "date": "2020-09-02", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5412, + "invoices": [ + { + "invoice_id": 10769, + "amount": "15.92", + "refunded": "0.00" + } + ], + "invoice_id": 10769, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "15.92", + "applied": "15.92", + "refunded": "0.00", + "date": "2020-09-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5413, + "invoices": [ + { + "invoice_id": 10770, + "amount": "35.07", + "refunded": "0.00" + } + ], + "invoice_id": 10770, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "35.07", + "applied": "35.07", + "refunded": "0.00", + "date": "2020-06-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5414, + "invoices": [ + { + "invoice_id": 10771, + "amount": "13.46", + "refunded": "0.00" + } + ], + "invoice_id": 10771, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.46", + "applied": "13.46", + "refunded": "0.00", + "date": "2020-06-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5415, + "invoices": [ + { + "invoice_id": 10772, + "amount": "6.71", + "refunded": "0.00" + } + ], + "invoice_id": 10772, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.71", + "applied": "6.71", + "refunded": "0.00", + "date": "2020-09-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5416, + "invoices": [ + { + "invoice_id": 10773, + "amount": "16.47", + "refunded": "0.00" + } + ], + "invoice_id": 10773, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.47", + "applied": "16.47", + "refunded": "0.00", + "date": "2020-06-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5417, + "invoices": [ + { + "invoice_id": 10774, + "amount": "3.93", + "refunded": "0.00" + } + ], + "invoice_id": 10774, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.93", + "applied": "3.93", + "refunded": "0.00", + "date": "2020-07-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5418, + "invoices": [ + { + "invoice_id": 10775, + "amount": "3.59", + "refunded": "0.00" + } + ], + "invoice_id": 10775, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.59", + "applied": "3.59", + "refunded": "0.00", + "date": "2020-04-05", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5419, + "invoices": [ + { + "invoice_id": 10776, + "amount": "58.71", + "refunded": "0.00" + } + ], + "invoice_id": 10776, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "58.71", + "applied": "58.71", + "refunded": "0.00", + "date": "2020-04-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5420, + "invoices": [ + { + "invoice_id": 10777, + "amount": "18.33", + "refunded": "0.00" + } + ], + "invoice_id": 10777, + "company_id": 1, + "client_id": 63, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "18.33", + "applied": "18.33", + "refunded": "0.00", + "date": "2020-08-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5421, + "invoices": [ + { + "invoice_id": 10798, + "amount": "14.25", + "refunded": "0.00" + } + ], + "invoice_id": 10798, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "14.25", + "applied": "14.25", + "refunded": "0.00", + "date": "2020-03-26", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5422, + "invoices": [ + { + "invoice_id": 10799, + "amount": "2.78", + "refunded": "0.00" + } + ], + "invoice_id": 10799, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.78", + "applied": "2.78", + "refunded": "0.00", + "date": "2020-08-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5423, + "invoices": [ + { + "invoice_id": 10800, + "amount": "6.65", + "refunded": "0.00" + } + ], + "invoice_id": 10800, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.65", + "applied": "6.65", + "refunded": "0.00", + "date": "2020-10-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5424, + "invoices": [ + { + "invoice_id": 10801, + "amount": "8.11", + "refunded": "0.00" + } + ], + "invoice_id": 10801, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.11", + "applied": "8.11", + "refunded": "0.00", + "date": "2020-07-17", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5425, + "invoices": [ + { + "invoice_id": 10802, + "amount": "20.28", + "refunded": "0.00" + } + ], + "invoice_id": 10802, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "20.28", + "applied": "20.28", + "refunded": "0.00", + "date": "2020-06-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5426, + "invoices": [ + { + "invoice_id": 10803, + "amount": "27.50", + "refunded": "0.00" + } + ], + "invoice_id": 10803, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "27.50", + "applied": "27.50", + "refunded": "0.00", + "date": "2020-04-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5427, + "invoices": [ + { + "invoice_id": 10804, + "amount": "5.17", + "refunded": "0.00" + } + ], + "invoice_id": 10804, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.17", + "applied": "5.17", + "refunded": "0.00", + "date": "2020-03-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5428, + "invoices": [ + { + "invoice_id": 10805, + "amount": "1.45", + "refunded": "0.00" + } + ], + "invoice_id": 10805, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.45", + "applied": "1.45", + "refunded": "0.00", + "date": "2020-05-23", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5429, + "invoices": [ + { + "invoice_id": 10806, + "amount": "3.95", + "refunded": "0.00" + } + ], + "invoice_id": 10806, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.95", + "applied": "3.95", + "refunded": "0.00", + "date": "2020-07-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5430, + "invoices": [ + { + "invoice_id": 10807, + "amount": "24.51", + "refunded": "0.00" + } + ], + "invoice_id": 10807, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "24.51", + "applied": "24.51", + "refunded": "0.00", + "date": "2020-05-30", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5431, + "invoices": [ + { + "invoice_id": 10808, + "amount": "18.36", + "refunded": "0.00" + } + ], + "invoice_id": 10808, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "18.36", + "applied": "18.36", + "refunded": "0.00", + "date": "2020-04-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5432, + "invoices": [ + { + "invoice_id": 10809, + "amount": "16.44", + "refunded": "0.00" + } + ], + "invoice_id": 10809, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.44", + "applied": "16.44", + "refunded": "0.00", + "date": "2020-09-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5433, + "invoices": [ + { + "invoice_id": 10810, + "amount": "3.83", + "refunded": "0.00" + } + ], + "invoice_id": 10810, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.83", + "applied": "3.83", + "refunded": "0.00", + "date": "2020-06-09", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5434, + "invoices": [ + { + "invoice_id": 10811, + "amount": "10.89", + "refunded": "0.00" + } + ], + "invoice_id": 10811, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "10.89", + "applied": "10.89", + "refunded": "0.00", + "date": "2020-03-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5435, + "invoices": [ + { + "invoice_id": 10812, + "amount": "1.16", + "refunded": "0.00" + } + ], + "invoice_id": 10812, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.16", + "applied": "1.16", + "refunded": "0.00", + "date": "2020-09-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5436, + "invoices": [ + { + "invoice_id": 10813, + "amount": "13.88", + "refunded": "0.00" + } + ], + "invoice_id": 10813, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.88", + "applied": "13.88", + "refunded": "0.00", + "date": "2020-06-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5437, + "invoices": [ + { + "invoice_id": 10814, + "amount": "16.33", + "refunded": "0.00" + } + ], + "invoice_id": 10814, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.33", + "applied": "16.33", + "refunded": "0.00", + "date": "2020-06-26", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5438, + "invoices": [ + { + "invoice_id": 10815, + "amount": "18.72", + "refunded": "0.00" + } + ], + "invoice_id": 10815, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "18.72", + "applied": "18.72", + "refunded": "0.00", + "date": "2020-07-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5439, + "invoices": [ + { + "invoice_id": 10816, + "amount": "10.55", + "refunded": "0.00" + } + ], + "invoice_id": 10816, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "10.55", + "applied": "10.55", + "refunded": "0.00", + "date": "2020-04-23", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5440, + "invoices": [ + { + "invoice_id": 10817, + "amount": "8.30", + "refunded": "0.00" + } + ], + "invoice_id": 10817, + "company_id": 1, + "client_id": 64, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.30", + "applied": "8.30", + "refunded": "0.00", + "date": "2020-04-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5441, + "invoices": [ + { + "invoice_id": 10838, + "amount": "3.78", + "refunded": "0.00" + } + ], + "invoice_id": 10838, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.78", + "applied": "3.78", + "refunded": "0.00", + "date": "2020-09-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5442, + "invoices": [ + { + "invoice_id": 10839, + "amount": "11.25", + "refunded": "0.00" + } + ], + "invoice_id": 10839, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "11.25", + "applied": "11.25", + "refunded": "0.00", + "date": "2020-06-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5443, + "invoices": [ + { + "invoice_id": 10840, + "amount": "46.89", + "refunded": "0.00" + } + ], + "invoice_id": 10840, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "46.89", + "applied": "46.89", + "refunded": "0.00", + "date": "2020-08-18", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5444, + "invoices": [ + { + "invoice_id": 10841, + "amount": "1.76", + "refunded": "0.00" + } + ], + "invoice_id": 10841, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.76", + "applied": "1.76", + "refunded": "0.00", + "date": "2020-05-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5445, + "invoices": [ + { + "invoice_id": 10842, + "amount": "3.85", + "refunded": "0.00" + } + ], + "invoice_id": 10842, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.85", + "applied": "3.85", + "refunded": "0.00", + "date": "2020-04-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5446, + "invoices": [ + { + "invoice_id": 10843, + "amount": "6.36", + "refunded": "0.00" + } + ], + "invoice_id": 10843, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.36", + "applied": "6.36", + "refunded": "0.00", + "date": "2020-05-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5447, + "invoices": [ + { + "invoice_id": 10844, + "amount": "1.63", + "refunded": "0.00" + } + ], + "invoice_id": 10844, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.63", + "applied": "1.63", + "refunded": "0.00", + "date": "2020-05-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5448, + "invoices": [ + { + "invoice_id": 10845, + "amount": "14.02", + "refunded": "0.00" + } + ], + "invoice_id": 10845, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "14.02", + "applied": "14.02", + "refunded": "0.00", + "date": "2020-08-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5449, + "invoices": [ + { + "invoice_id": 10846, + "amount": "1.27", + "refunded": "0.00" + } + ], + "invoice_id": 10846, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.27", + "applied": "1.27", + "refunded": "0.00", + "date": "2020-05-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5450, + "invoices": [ + { + "invoice_id": 10847, + "amount": "55.66", + "refunded": "0.00" + } + ], + "invoice_id": 10847, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "55.66", + "applied": "55.66", + "refunded": "0.00", + "date": "2020-07-26", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5451, + "invoices": [ + { + "invoice_id": 10848, + "amount": "0.39", + "refunded": "0.00" + } + ], + "invoice_id": 10848, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.39", + "applied": "0.39", + "refunded": "0.00", + "date": "2020-09-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5452, + "invoices": [ + { + "invoice_id": 10849, + "amount": "13.15", + "refunded": "0.00" + } + ], + "invoice_id": 10849, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.15", + "applied": "13.15", + "refunded": "0.00", + "date": "2020-09-05", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5453, + "invoices": [ + { + "invoice_id": 10850, + "amount": "0.13", + "refunded": "0.00" + } + ], + "invoice_id": 10850, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.13", + "applied": "0.13", + "refunded": "0.00", + "date": "2020-06-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5454, + "invoices": [ + { + "invoice_id": 10851, + "amount": "17.28", + "refunded": "0.00" + } + ], + "invoice_id": 10851, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.28", + "applied": "17.28", + "refunded": "0.00", + "date": "2020-08-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5455, + "invoices": [ + { + "invoice_id": 10852, + "amount": "0.76", + "refunded": "0.00" + } + ], + "invoice_id": 10852, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.76", + "applied": "0.76", + "refunded": "0.00", + "date": "2020-05-11", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5456, + "invoices": [ + { + "invoice_id": 10853, + "amount": "0.06", + "refunded": "0.00" + } + ], + "invoice_id": 10853, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.06", + "applied": "0.06", + "refunded": "0.00", + "date": "2020-08-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5457, + "invoices": [ + { + "invoice_id": 10854, + "amount": "40.01", + "refunded": "0.00" + } + ], + "invoice_id": 10854, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "40.01", + "applied": "40.01", + "refunded": "0.00", + "date": "2020-09-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5458, + "invoices": [ + { + "invoice_id": 10855, + "amount": "50.81", + "refunded": "0.00" + } + ], + "invoice_id": 10855, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "50.81", + "applied": "50.81", + "refunded": "0.00", + "date": "2020-08-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5459, + "invoices": [ + { + "invoice_id": 10856, + "amount": "39.58", + "refunded": "0.00" + } + ], + "invoice_id": 10856, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "39.58", + "applied": "39.58", + "refunded": "0.00", + "date": "2020-09-17", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5460, + "invoices": [ + { + "invoice_id": 10857, + "amount": "6.28", + "refunded": "0.00" + } + ], + "invoice_id": 10857, + "company_id": 1, + "client_id": 65, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.28", + "applied": "6.28", + "refunded": "0.00", + "date": "2020-06-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5461, + "invoices": [ + { + "invoice_id": 10878, + "amount": "20.72", + "refunded": "0.00" + } + ], + "invoice_id": 10878, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "20.72", + "applied": "20.72", + "refunded": "0.00", + "date": "2020-05-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5462, + "invoices": [ + { + "invoice_id": 10879, + "amount": "11.62", + "refunded": "0.00" + } + ], + "invoice_id": 10879, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "11.62", + "applied": "11.62", + "refunded": "0.00", + "date": "2020-06-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5463, + "invoices": [ + { + "invoice_id": 10880, + "amount": "68.41", + "refunded": "0.00" + } + ], + "invoice_id": 10880, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "68.41", + "applied": "68.41", + "refunded": "0.00", + "date": "2020-07-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5464, + "invoices": [ + { + "invoice_id": 10881, + "amount": "14.12", + "refunded": "0.00" + } + ], + "invoice_id": 10881, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "14.12", + "applied": "14.12", + "refunded": "0.00", + "date": "2020-09-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5465, + "invoices": [ + { + "invoice_id": 10882, + "amount": "13.47", + "refunded": "0.00" + } + ], + "invoice_id": 10882, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.47", + "applied": "13.47", + "refunded": "0.00", + "date": "2020-05-31", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5466, + "invoices": [ + { + "invoice_id": 10883, + "amount": "3.44", + "refunded": "0.00" + } + ], + "invoice_id": 10883, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.44", + "applied": "3.44", + "refunded": "0.00", + "date": "2020-06-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5467, + "invoices": [ + { + "invoice_id": 10884, + "amount": "8.71", + "refunded": "0.00" + } + ], + "invoice_id": 10884, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.71", + "applied": "8.71", + "refunded": "0.00", + "date": "2020-09-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5468, + "invoices": [ + { + "invoice_id": 10885, + "amount": "25.41", + "refunded": "0.00" + } + ], + "invoice_id": 10885, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "25.41", + "applied": "25.41", + "refunded": "0.00", + "date": "2020-03-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5469, + "invoices": [ + { + "invoice_id": 10886, + "amount": "10.64", + "refunded": "0.00" + } + ], + "invoice_id": 10886, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "10.64", + "applied": "10.64", + "refunded": "0.00", + "date": "2020-09-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5470, + "invoices": [ + { + "invoice_id": 10887, + "amount": "0.84", + "refunded": "0.00" + } + ], + "invoice_id": 10887, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.84", + "applied": "0.84", + "refunded": "0.00", + "date": "2020-08-05", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5471, + "invoices": [ + { + "invoice_id": 10888, + "amount": "2.02", + "refunded": "0.00" + } + ], + "invoice_id": 10888, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.02", + "applied": "2.02", + "refunded": "0.00", + "date": "2020-05-30", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5472, + "invoices": [ + { + "invoice_id": 10889, + "amount": "26.24", + "refunded": "0.00" + } + ], + "invoice_id": 10889, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "26.24", + "applied": "26.24", + "refunded": "0.00", + "date": "2020-05-30", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5473, + "invoices": [ + { + "invoice_id": 10890, + "amount": "5.49", + "refunded": "0.00" + } + ], + "invoice_id": 10890, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.49", + "applied": "5.49", + "refunded": "0.00", + "date": "2020-09-05", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5474, + "invoices": [ + { + "invoice_id": 10891, + "amount": "1.00", + "refunded": "0.00" + } + ], + "invoice_id": 10891, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.00", + "applied": "1.00", + "refunded": "0.00", + "date": "2020-07-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5475, + "invoices": [ + { + "invoice_id": 10892, + "amount": "3.00", + "refunded": "0.00" + } + ], + "invoice_id": 10892, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.00", + "applied": "3.00", + "refunded": "0.00", + "date": "2020-06-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5476, + "invoices": [ + { + "invoice_id": 10893, + "amount": "13.16", + "refunded": "0.00" + } + ], + "invoice_id": 10893, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.16", + "applied": "13.16", + "refunded": "0.00", + "date": "2020-09-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5477, + "invoices": [ + { + "invoice_id": 10894, + "amount": "13.26", + "refunded": "0.00" + } + ], + "invoice_id": 10894, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.26", + "applied": "13.26", + "refunded": "0.00", + "date": "2020-04-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5478, + "invoices": [ + { + "invoice_id": 10895, + "amount": "16.78", + "refunded": "0.00" + } + ], + "invoice_id": 10895, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.78", + "applied": "16.78", + "refunded": "0.00", + "date": "2020-06-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5479, + "invoices": [ + { + "invoice_id": 10896, + "amount": "38.60", + "refunded": "0.00" + } + ], + "invoice_id": 10896, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "38.60", + "applied": "38.60", + "refunded": "0.00", + "date": "2020-04-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5480, + "invoices": [ + { + "invoice_id": 10897, + "amount": "3.16", + "refunded": "0.00" + } + ], + "invoice_id": 10897, + "company_id": 1, + "client_id": 66, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.16", + "applied": "3.16", + "refunded": "0.00", + "date": "2020-05-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5481, + "invoices": [ + { + "invoice_id": 10918, + "amount": "7.46", + "refunded": "0.00" + } + ], + "invoice_id": 10918, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "7.46", + "applied": "7.46", + "refunded": "0.00", + "date": "2020-09-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5482, + "invoices": [ + { + "invoice_id": 10919, + "amount": "8.24", + "refunded": "0.00" + } + ], + "invoice_id": 10919, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.24", + "applied": "8.24", + "refunded": "0.00", + "date": "2020-06-14", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5483, + "invoices": [ + { + "invoice_id": 10920, + "amount": "0.33", + "refunded": "0.00" + } + ], + "invoice_id": 10920, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.33", + "applied": "0.33", + "refunded": "0.00", + "date": "2020-08-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5484, + "invoices": [ + { + "invoice_id": 10921, + "amount": "2.22", + "refunded": "0.00" + } + ], + "invoice_id": 10921, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.22", + "applied": "2.22", + "refunded": "0.00", + "date": "2020-09-14", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5485, + "invoices": [ + { + "invoice_id": 10922, + "amount": "34.01", + "refunded": "0.00" + } + ], + "invoice_id": 10922, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "34.01", + "applied": "34.01", + "refunded": "0.00", + "date": "2020-08-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5486, + "invoices": [ + { + "invoice_id": 10923, + "amount": "3.97", + "refunded": "0.00" + } + ], + "invoice_id": 10923, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.97", + "applied": "3.97", + "refunded": "0.00", + "date": "2020-08-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5487, + "invoices": [ + { + "invoice_id": 10924, + "amount": "26.45", + "refunded": "0.00" + } + ], + "invoice_id": 10924, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "26.45", + "applied": "26.45", + "refunded": "0.00", + "date": "2020-07-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5488, + "invoices": [ + { + "invoice_id": 10925, + "amount": "1.02", + "refunded": "0.00" + } + ], + "invoice_id": 10925, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.02", + "applied": "1.02", + "refunded": "0.00", + "date": "2020-07-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5489, + "invoices": [ + { + "invoice_id": 10926, + "amount": "25.82", + "refunded": "0.00" + } + ], + "invoice_id": 10926, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "25.82", + "applied": "25.82", + "refunded": "0.00", + "date": "2020-03-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5490, + "invoices": [ + { + "invoice_id": 10927, + "amount": "6.88", + "refunded": "0.00" + } + ], + "invoice_id": 10927, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.88", + "applied": "6.88", + "refunded": "0.00", + "date": "2020-08-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5491, + "invoices": [ + { + "invoice_id": 10928, + "amount": "6.40", + "refunded": "0.00" + } + ], + "invoice_id": 10928, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.40", + "applied": "6.40", + "refunded": "0.00", + "date": "2020-07-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5492, + "invoices": [ + { + "invoice_id": 10929, + "amount": "16.98", + "refunded": "0.00" + } + ], + "invoice_id": 10929, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.98", + "applied": "16.98", + "refunded": "0.00", + "date": "2020-06-30", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5493, + "invoices": [ + { + "invoice_id": 10930, + "amount": "7.45", + "refunded": "0.00" + } + ], + "invoice_id": 10930, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "7.45", + "applied": "7.45", + "refunded": "0.00", + "date": "2020-06-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5494, + "invoices": [ + { + "invoice_id": 10931, + "amount": "47.40", + "refunded": "0.00" + } + ], + "invoice_id": 10931, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "47.40", + "applied": "47.40", + "refunded": "0.00", + "date": "2020-04-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5495, + "invoices": [ + { + "invoice_id": 10932, + "amount": "52.00", + "refunded": "0.00" + } + ], + "invoice_id": 10932, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "52.00", + "applied": "52.00", + "refunded": "0.00", + "date": "2020-06-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5496, + "invoices": [ + { + "invoice_id": 10933, + "amount": "4.22", + "refunded": "0.00" + } + ], + "invoice_id": 10933, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.22", + "applied": "4.22", + "refunded": "0.00", + "date": "2020-09-09", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5497, + "invoices": [ + { + "invoice_id": 10934, + "amount": "1.65", + "refunded": "0.00" + } + ], + "invoice_id": 10934, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.65", + "applied": "1.65", + "refunded": "0.00", + "date": "2020-03-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5498, + "invoices": [ + { + "invoice_id": 10935, + "amount": "6.57", + "refunded": "0.00" + } + ], + "invoice_id": 10935, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.57", + "applied": "6.57", + "refunded": "0.00", + "date": "2020-06-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5499, + "invoices": [ + { + "invoice_id": 10936, + "amount": "8.18", + "refunded": "0.00" + } + ], + "invoice_id": 10936, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.18", + "applied": "8.18", + "refunded": "0.00", + "date": "2020-06-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5500, + "invoices": [ + { + "invoice_id": 10937, + "amount": "12.83", + "refunded": "0.00" + } + ], + "invoice_id": 10937, + "company_id": 1, + "client_id": 67, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "12.83", + "applied": "12.83", + "refunded": "0.00", + "date": "2020-06-01", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5501, + "invoices": [ + { + "invoice_id": 10958, + "amount": "12.41", + "refunded": "0.00" + } + ], + "invoice_id": 10958, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "12.41", + "applied": "12.41", + "refunded": "0.00", + "date": "2020-07-02", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5502, + "invoices": [ + { + "invoice_id": 10959, + "amount": "6.93", + "refunded": "0.00" + } + ], + "invoice_id": 10959, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.93", + "applied": "6.93", + "refunded": "0.00", + "date": "2020-04-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5503, + "invoices": [ + { + "invoice_id": 10960, + "amount": "15.86", + "refunded": "0.00" + } + ], + "invoice_id": 10960, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "15.86", + "applied": "15.86", + "refunded": "0.00", + "date": "2020-09-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5504, + "invoices": [ + { + "invoice_id": 10961, + "amount": "46.30", + "refunded": "0.00" + } + ], + "invoice_id": 10961, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "46.30", + "applied": "46.30", + "refunded": "0.00", + "date": "2020-07-31", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5505, + "invoices": [ + { + "invoice_id": 10962, + "amount": "0.97", + "refunded": "0.00" + } + ], + "invoice_id": 10962, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.97", + "applied": "0.97", + "refunded": "0.00", + "date": "2020-07-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5506, + "invoices": [ + { + "invoice_id": 10963, + "amount": "3.53", + "refunded": "0.00" + } + ], + "invoice_id": 10963, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.53", + "applied": "3.53", + "refunded": "0.00", + "date": "2020-08-02", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5507, + "invoices": [ + { + "invoice_id": 10964, + "amount": "19.24", + "refunded": "0.00" + } + ], + "invoice_id": 10964, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "19.24", + "applied": "19.24", + "refunded": "0.00", + "date": "2020-08-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5508, + "invoices": [ + { + "invoice_id": 10965, + "amount": "0.57", + "refunded": "0.00" + } + ], + "invoice_id": 10965, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.57", + "applied": "0.57", + "refunded": "0.00", + "date": "2020-09-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5509, + "invoices": [ + { + "invoice_id": 10966, + "amount": "22.40", + "refunded": "0.00" + } + ], + "invoice_id": 10966, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "22.40", + "applied": "22.40", + "refunded": "0.00", + "date": "2020-07-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5510, + "invoices": [ + { + "invoice_id": 10967, + "amount": "33.02", + "refunded": "0.00" + } + ], + "invoice_id": 10967, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "33.02", + "applied": "33.02", + "refunded": "0.00", + "date": "2020-08-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5511, + "invoices": [ + { + "invoice_id": 10968, + "amount": "19.07", + "refunded": "0.00" + } + ], + "invoice_id": 10968, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "19.07", + "applied": "19.07", + "refunded": "0.00", + "date": "2020-03-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5512, + "invoices": [ + { + "invoice_id": 10969, + "amount": "49.20", + "refunded": "0.00" + } + ], + "invoice_id": 10969, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "49.20", + "applied": "49.20", + "refunded": "0.00", + "date": "2020-04-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5513, + "invoices": [ + { + "invoice_id": 10970, + "amount": "3.44", + "refunded": "0.00" + } + ], + "invoice_id": 10970, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.44", + "applied": "3.44", + "refunded": "0.00", + "date": "2020-06-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5514, + "invoices": [ + { + "invoice_id": 10971, + "amount": "5.52", + "refunded": "0.00" + } + ], + "invoice_id": 10971, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.52", + "applied": "5.52", + "refunded": "0.00", + "date": "2020-04-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5515, + "invoices": [ + { + "invoice_id": 10972, + "amount": "4.39", + "refunded": "0.00" + } + ], + "invoice_id": 10972, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.39", + "applied": "4.39", + "refunded": "0.00", + "date": "2020-03-30", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5516, + "invoices": [ + { + "invoice_id": 10973, + "amount": "11.41", + "refunded": "0.00" + } + ], + "invoice_id": 10973, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "11.41", + "applied": "11.41", + "refunded": "0.00", + "date": "2020-08-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5517, + "invoices": [ + { + "invoice_id": 10974, + "amount": "2.87", + "refunded": "0.00" + } + ], + "invoice_id": 10974, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.87", + "applied": "2.87", + "refunded": "0.00", + "date": "2020-07-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5518, + "invoices": [ + { + "invoice_id": 10975, + "amount": "9.34", + "refunded": "0.00" + } + ], + "invoice_id": 10975, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "9.34", + "applied": "9.34", + "refunded": "0.00", + "date": "2020-10-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5519, + "invoices": [ + { + "invoice_id": 10976, + "amount": "20.58", + "refunded": "0.00" + } + ], + "invoice_id": 10976, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "20.58", + "applied": "20.58", + "refunded": "0.00", + "date": "2020-05-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5520, + "invoices": [ + { + "invoice_id": 10977, + "amount": "5.40", + "refunded": "0.00" + } + ], + "invoice_id": 10977, + "company_id": 1, + "client_id": 68, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.40", + "applied": "5.40", + "refunded": "0.00", + "date": "2020-05-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5521, + "invoices": [ + { + "invoice_id": 10998, + "amount": "25.12", + "refunded": "0.00" + } + ], + "invoice_id": 10998, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "25.12", + "applied": "25.12", + "refunded": "0.00", + "date": "2020-05-14", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5522, + "invoices": [ + { + "invoice_id": 10999, + "amount": "3.56", + "refunded": "0.00" + } + ], + "invoice_id": 10999, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.56", + "applied": "3.56", + "refunded": "0.00", + "date": "2020-09-13", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5523, + "invoices": [ + { + "invoice_id": 11000, + "amount": "1.64", + "refunded": "0.00" + } + ], + "invoice_id": 11000, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.64", + "applied": "1.64", + "refunded": "0.00", + "date": "2020-06-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5524, + "invoices": [ + { + "invoice_id": 11001, + "amount": "29.68", + "refunded": "0.00" + } + ], + "invoice_id": 11001, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "29.68", + "applied": "29.68", + "refunded": "0.00", + "date": "2020-09-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5525, + "invoices": [ + { + "invoice_id": 11002, + "amount": "10.66", + "refunded": "0.00" + } + ], + "invoice_id": 11002, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "10.66", + "applied": "10.66", + "refunded": "0.00", + "date": "2020-05-01", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5526, + "invoices": [ + { + "invoice_id": 11003, + "amount": "6.77", + "refunded": "0.00" + } + ], + "invoice_id": 11003, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.77", + "applied": "6.77", + "refunded": "0.00", + "date": "2020-06-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5527, + "invoices": [ + { + "invoice_id": 11004, + "amount": "4.18", + "refunded": "0.00" + } + ], + "invoice_id": 11004, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.18", + "applied": "4.18", + "refunded": "0.00", + "date": "2020-07-04", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5528, + "invoices": [ + { + "invoice_id": 11005, + "amount": "65.27", + "refunded": "0.00" + } + ], + "invoice_id": 11005, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "65.27", + "applied": "65.27", + "refunded": "0.00", + "date": "2020-04-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5529, + "invoices": [ + { + "invoice_id": 11006, + "amount": "29.58", + "refunded": "0.00" + } + ], + "invoice_id": 11006, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "29.58", + "applied": "29.58", + "refunded": "0.00", + "date": "2020-06-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5530, + "invoices": [ + { + "invoice_id": 11007, + "amount": "17.44", + "refunded": "0.00" + } + ], + "invoice_id": 11007, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.44", + "applied": "17.44", + "refunded": "0.00", + "date": "2020-09-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5531, + "invoices": [ + { + "invoice_id": 11008, + "amount": "0.54", + "refunded": "0.00" + } + ], + "invoice_id": 11008, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.54", + "applied": "0.54", + "refunded": "0.00", + "date": "2020-06-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5532, + "invoices": [ + { + "invoice_id": 11009, + "amount": "4.03", + "refunded": "0.00" + } + ], + "invoice_id": 11009, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.03", + "applied": "4.03", + "refunded": "0.00", + "date": "2020-08-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5533, + "invoices": [ + { + "invoice_id": 11010, + "amount": "22.20", + "refunded": "0.00" + } + ], + "invoice_id": 11010, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "22.20", + "applied": "22.20", + "refunded": "0.00", + "date": "2020-06-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5534, + "invoices": [ + { + "invoice_id": 11011, + "amount": "16.35", + "refunded": "0.00" + } + ], + "invoice_id": 11011, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "16.35", + "applied": "16.35", + "refunded": "0.00", + "date": "2020-08-21", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5535, + "invoices": [ + { + "invoice_id": 11012, + "amount": "4.86", + "refunded": "0.00" + } + ], + "invoice_id": 11012, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.86", + "applied": "4.86", + "refunded": "0.00", + "date": "2020-08-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5536, + "invoices": [ + { + "invoice_id": 11013, + "amount": "15.77", + "refunded": "0.00" + } + ], + "invoice_id": 11013, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "15.77", + "applied": "15.77", + "refunded": "0.00", + "date": "2020-03-26", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5537, + "invoices": [ + { + "invoice_id": 11014, + "amount": "1.53", + "refunded": "0.00" + } + ], + "invoice_id": 11014, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.53", + "applied": "1.53", + "refunded": "0.00", + "date": "2020-06-18", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5538, + "invoices": [ + { + "invoice_id": 11015, + "amount": "5.11", + "refunded": "0.00" + } + ], + "invoice_id": 11015, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.11", + "applied": "5.11", + "refunded": "0.00", + "date": "2020-06-11", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5539, + "invoices": [ + { + "invoice_id": 11016, + "amount": "7.60", + "refunded": "0.00" + } + ], + "invoice_id": 11016, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "7.60", + "applied": "7.60", + "refunded": "0.00", + "date": "2020-07-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5540, + "invoices": [ + { + "invoice_id": 11017, + "amount": "7.96", + "refunded": "0.00" + } + ], + "invoice_id": 11017, + "company_id": 1, + "client_id": 69, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "7.96", + "applied": "7.96", + "refunded": "0.00", + "date": "2020-05-29", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5541, + "invoices": [ + { + "invoice_id": 11038, + "amount": "8.18", + "refunded": "0.00" + } + ], + "invoice_id": 11038, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.18", + "applied": "8.18", + "refunded": "0.00", + "date": "2020-10-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5542, + "invoices": [ + { + "invoice_id": 11039, + "amount": "33.77", + "refunded": "0.00" + } + ], + "invoice_id": 11039, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "33.77", + "applied": "33.77", + "refunded": "0.00", + "date": "2020-05-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5543, + "invoices": [ + { + "invoice_id": 11040, + "amount": "2.06", + "refunded": "0.00" + } + ], + "invoice_id": 11040, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.06", + "applied": "2.06", + "refunded": "0.00", + "date": "2020-05-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5544, + "invoices": [ + { + "invoice_id": 11041, + "amount": "3.44", + "refunded": "0.00" + } + ], + "invoice_id": 11041, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.44", + "applied": "3.44", + "refunded": "0.00", + "date": "2020-08-08", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5545, + "invoices": [ + { + "invoice_id": 11042, + "amount": "38.28", + "refunded": "0.00" + } + ], + "invoice_id": 11042, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "38.28", + "applied": "38.28", + "refunded": "0.00", + "date": "2020-05-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5546, + "invoices": [ + { + "invoice_id": 11043, + "amount": "14.80", + "refunded": "0.00" + } + ], + "invoice_id": 11043, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "14.80", + "applied": "14.80", + "refunded": "0.00", + "date": "2020-05-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5547, + "invoices": [ + { + "invoice_id": 11044, + "amount": "5.76", + "refunded": "0.00" + } + ], + "invoice_id": 11044, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.76", + "applied": "5.76", + "refunded": "0.00", + "date": "2020-08-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5548, + "invoices": [ + { + "invoice_id": 11045, + "amount": "4.04", + "refunded": "0.00" + } + ], + "invoice_id": 11045, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "4.04", + "applied": "4.04", + "refunded": "0.00", + "date": "2020-07-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5549, + "invoices": [ + { + "invoice_id": 11046, + "amount": "3.08", + "refunded": "0.00" + } + ], + "invoice_id": 11046, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.08", + "applied": "3.08", + "refunded": "0.00", + "date": "2020-07-05", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5550, + "invoices": [ + { + "invoice_id": 11047, + "amount": "66.63", + "refunded": "0.00" + } + ], + "invoice_id": 11047, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "66.63", + "applied": "66.63", + "refunded": "0.00", + "date": "2020-07-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5551, + "invoices": [ + { + "invoice_id": 11048, + "amount": "47.34", + "refunded": "0.00" + } + ], + "invoice_id": 11048, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "47.34", + "applied": "47.34", + "refunded": "0.00", + "date": "2020-09-04", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5552, + "invoices": [ + { + "invoice_id": 11049, + "amount": "1.02", + "refunded": "0.00" + } + ], + "invoice_id": 11049, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.02", + "applied": "1.02", + "refunded": "0.00", + "date": "2020-06-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5553, + "invoices": [ + { + "invoice_id": 11050, + "amount": "5.32", + "refunded": "0.00" + } + ], + "invoice_id": 11050, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.32", + "applied": "5.32", + "refunded": "0.00", + "date": "2020-05-31", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5554, + "invoices": [ + { + "invoice_id": 11051, + "amount": "17.47", + "refunded": "0.00" + } + ], + "invoice_id": 11051, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.47", + "applied": "17.47", + "refunded": "0.00", + "date": "2020-09-05", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5555, + "invoices": [ + { + "invoice_id": 11052, + "amount": "3.78", + "refunded": "0.00" + } + ], + "invoice_id": 11052, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.78", + "applied": "3.78", + "refunded": "0.00", + "date": "2020-06-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5556, + "invoices": [ + { + "invoice_id": 11053, + "amount": "7.46", + "refunded": "0.00" + } + ], + "invoice_id": 11053, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "7.46", + "applied": "7.46", + "refunded": "0.00", + "date": "2020-07-17", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5557, + "invoices": [ + { + "invoice_id": 11054, + "amount": "2.50", + "refunded": "0.00" + } + ], + "invoice_id": 11054, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.50", + "applied": "2.50", + "refunded": "0.00", + "date": "2020-09-14", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5558, + "invoices": [ + { + "invoice_id": 11055, + "amount": "3.84", + "refunded": "0.00" + } + ], + "invoice_id": 11055, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.84", + "applied": "3.84", + "refunded": "0.00", + "date": "2020-08-27", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5559, + "invoices": [ + { + "invoice_id": 11056, + "amount": "14.48", + "refunded": "0.00" + } + ], + "invoice_id": 11056, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "14.48", + "applied": "14.48", + "refunded": "0.00", + "date": "2020-06-12", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5560, + "invoices": [ + { + "invoice_id": 11057, + "amount": "2.13", + "refunded": "0.00" + } + ], + "invoice_id": 11057, + "company_id": 1, + "client_id": 70, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.13", + "applied": "2.13", + "refunded": "0.00", + "date": "2020-06-11", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5561, + "invoices": [ + { + "invoice_id": 11078, + "amount": "1.59", + "refunded": "0.00" + } + ], + "invoice_id": 11078, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.59", + "applied": "1.59", + "refunded": "0.00", + "date": "2020-08-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5562, + "invoices": [ + { + "invoice_id": 11079, + "amount": "21.31", + "refunded": "0.00" + } + ], + "invoice_id": 11079, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "21.31", + "applied": "21.31", + "refunded": "0.00", + "date": "2020-08-14", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5563, + "invoices": [ + { + "invoice_id": 11080, + "amount": "62.74", + "refunded": "0.00" + } + ], + "invoice_id": 11080, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "62.74", + "applied": "62.74", + "refunded": "0.00", + "date": "2020-09-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5564, + "invoices": [ + { + "invoice_id": 11081, + "amount": "7.32", + "refunded": "0.00" + } + ], + "invoice_id": 11081, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "7.32", + "applied": "7.32", + "refunded": "0.00", + "date": "2020-09-25", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5565, + "invoices": [ + { + "invoice_id": 11082, + "amount": "13.02", + "refunded": "0.00" + } + ], + "invoice_id": 11082, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.02", + "applied": "13.02", + "refunded": "0.00", + "date": "2020-04-14", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5566, + "invoices": [ + { + "invoice_id": 11083, + "amount": "1.23", + "refunded": "0.00" + } + ], + "invoice_id": 11083, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.23", + "applied": "1.23", + "refunded": "0.00", + "date": "2020-08-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5567, + "invoices": [ + { + "invoice_id": 11084, + "amount": "8.50", + "refunded": "0.00" + } + ], + "invoice_id": 11084, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.50", + "applied": "8.50", + "refunded": "0.00", + "date": "2020-08-24", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5568, + "invoices": [ + { + "invoice_id": 11085, + "amount": "0.86", + "refunded": "0.00" + } + ], + "invoice_id": 11085, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.86", + "applied": "0.86", + "refunded": "0.00", + "date": "2020-08-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5569, + "invoices": [ + { + "invoice_id": 11086, + "amount": "52.78", + "refunded": "0.00" + } + ], + "invoice_id": 11086, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "52.78", + "applied": "52.78", + "refunded": "0.00", + "date": "2020-08-01", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5570, + "invoices": [ + { + "invoice_id": 11087, + "amount": "22.62", + "refunded": "0.00" + } + ], + "invoice_id": 11087, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "22.62", + "applied": "22.62", + "refunded": "0.00", + "date": "2020-05-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5571, + "invoices": [ + { + "invoice_id": 11088, + "amount": "8.99", + "refunded": "0.00" + } + ], + "invoice_id": 11088, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "8.99", + "applied": "8.99", + "refunded": "0.00", + "date": "2020-04-23", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5572, + "invoices": [ + { + "invoice_id": 11089, + "amount": "74.29", + "refunded": "0.00" + } + ], + "invoice_id": 11089, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "74.29", + "applied": "74.29", + "refunded": "0.00", + "date": "2020-09-06", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5573, + "invoices": [ + { + "invoice_id": 11090, + "amount": "2.36", + "refunded": "0.00" + } + ], + "invoice_id": 11090, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "2.36", + "applied": "2.36", + "refunded": "0.00", + "date": "2020-09-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5574, + "invoices": [ + { + "invoice_id": 11091, + "amount": "1.67", + "refunded": "0.00" + } + ], + "invoice_id": 11091, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "1.67", + "applied": "1.67", + "refunded": "0.00", + "date": "2020-09-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5575, + "invoices": [ + { + "invoice_id": 11092, + "amount": "28.88", + "refunded": "0.00" + } + ], + "invoice_id": 11092, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "28.88", + "applied": "28.88", + "refunded": "0.00", + "date": "2020-04-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5576, + "invoices": [ + { + "invoice_id": 11093, + "amount": "3.84", + "refunded": "0.00" + } + ], + "invoice_id": 11093, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.84", + "applied": "3.84", + "refunded": "0.00", + "date": "2020-06-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5577, + "invoices": [ + { + "invoice_id": 11094, + "amount": "17.99", + "refunded": "0.00" + } + ], + "invoice_id": 11094, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.99", + "applied": "17.99", + "refunded": "0.00", + "date": "2020-04-09", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5578, + "invoices": [ + { + "invoice_id": 11095, + "amount": "3.52", + "refunded": "0.00" + } + ], + "invoice_id": 11095, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "3.52", + "applied": "3.52", + "refunded": "0.00", + "date": "2020-05-19", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5579, + "invoices": [ + { + "invoice_id": 11096, + "amount": "0.60", + "refunded": "0.00" + } + ], + "invoice_id": 11096, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.60", + "applied": "0.60", + "refunded": "0.00", + "date": "2020-06-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5580, + "invoices": [ + { + "invoice_id": 11097, + "amount": "50.59", + "refunded": "0.00" + } + ], + "invoice_id": 11097, + "company_id": 1, + "client_id": 71, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "50.59", + "applied": "50.59", + "refunded": "0.00", + "date": "2020-05-12", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5581, + "invoices": [ + { + "invoice_id": 11118, + "amount": "0.17", + "refunded": "0.00" + } + ], + "invoice_id": 11118, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.17", + "applied": "0.17", + "refunded": "0.00", + "date": "2020-03-31", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5582, + "invoices": [ + { + "invoice_id": 11119, + "amount": "18.79", + "refunded": "0.00" + } + ], + "invoice_id": 11119, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "18.79", + "applied": "18.79", + "refunded": "0.00", + "date": "2020-06-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5583, + "invoices": [ + { + "invoice_id": 11120, + "amount": "6.54", + "refunded": "0.00" + } + ], + "invoice_id": 11120, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.54", + "applied": "6.54", + "refunded": "0.00", + "date": "2020-08-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5584, + "invoices": [ + { + "invoice_id": 11121, + "amount": "0.16", + "refunded": "0.00" + } + ], + "invoice_id": 11121, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.16", + "applied": "0.16", + "refunded": "0.00", + "date": "2020-07-18", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5585, + "invoices": [ + { + "invoice_id": 11122, + "amount": "0.14", + "refunded": "0.00" + } + ], + "invoice_id": 11122, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "0.14", + "applied": "0.14", + "refunded": "0.00", + "date": "2020-07-22", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5586, + "invoices": [ + { + "invoice_id": 11123, + "amount": "5.48", + "refunded": "0.00" + } + ], + "invoice_id": 11123, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.48", + "applied": "5.48", + "refunded": "0.00", + "date": "2020-08-15", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5587, + "invoices": [ + { + "invoice_id": 11124, + "amount": "81.15", + "refunded": "0.00" + } + ], + "invoice_id": 11124, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "81.15", + "applied": "81.15", + "refunded": "0.00", + "date": "2020-06-04", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5588, + "invoices": [ + { + "invoice_id": 11125, + "amount": "6.75", + "refunded": "0.00" + } + ], + "invoice_id": 11125, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "6.75", + "applied": "6.75", + "refunded": "0.00", + "date": "2020-08-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5589, + "invoices": [ + { + "invoice_id": 11126, + "amount": "15.59", + "refunded": "0.00" + } + ], + "invoice_id": 11126, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "15.59", + "applied": "15.59", + "refunded": "0.00", + "date": "2020-05-26", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5590, + "invoices": [ + { + "invoice_id": 11127, + "amount": "51.37", + "refunded": "0.00" + } + ], + "invoice_id": 11127, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "51.37", + "applied": "51.37", + "refunded": "0.00", + "date": "2020-05-20", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5591, + "invoices": [ + { + "invoice_id": 11128, + "amount": "31.31", + "refunded": "0.00" + } + ], + "invoice_id": 11128, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "31.31", + "applied": "31.31", + "refunded": "0.00", + "date": "2020-07-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5592, + "invoices": [ + { + "invoice_id": 11129, + "amount": "14.67", + "refunded": "0.00" + } + ], + "invoice_id": 11129, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "14.67", + "applied": "14.67", + "refunded": "0.00", + "date": "2020-04-16", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5593, + "invoices": [ + { + "invoice_id": 11130, + "amount": "11.50", + "refunded": "0.00" + } + ], + "invoice_id": 11130, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "11.50", + "applied": "11.50", + "refunded": "0.00", + "date": "2020-06-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5594, + "invoices": [ + { + "invoice_id": 11131, + "amount": "5.40", + "refunded": "0.00" + } + ], + "invoice_id": 11131, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "5.40", + "applied": "5.40", + "refunded": "0.00", + "date": "2020-07-30", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5595, + "invoices": [ + { + "invoice_id": 11132, + "amount": "17.89", + "refunded": "0.00" + } + ], + "invoice_id": 11132, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "17.89", + "applied": "17.89", + "refunded": "0.00", + "date": "2020-07-07", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5596, + "invoices": [ + { + "invoice_id": 11133, + "amount": "11.92", + "refunded": "0.00" + } + ], + "invoice_id": 11133, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "11.92", + "applied": "11.92", + "refunded": "0.00", + "date": "2020-07-12", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5597, + "invoices": [ + { + "invoice_id": 11134, + "amount": "13.99", + "refunded": "0.00" + } + ], + "invoice_id": 11134, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "13.99", + "applied": "13.99", + "refunded": "0.00", + "date": "2020-05-03", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5598, + "invoices": [ + { + "invoice_id": 11135, + "amount": "22.69", + "refunded": "0.00" + } + ], + "invoice_id": 11135, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "22.69", + "applied": "22.69", + "refunded": "0.00", + "date": "2020-06-04", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5599, + "invoices": [ + { + "invoice_id": 11136, + "amount": "11.12", + "refunded": "0.00" + } + ], + "invoice_id": 11136, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "11.12", + "applied": "11.12", + "refunded": "0.00", + "date": "2020-08-28", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5600, + "invoices": [ + { + "invoice_id": 11137, + "amount": "22.15", + "refunded": "0.00" + } + ], + "invoice_id": 11137, + "company_id": 1, + "client_id": 72, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "22.15", + "applied": "22.15", + "refunded": "0.00", + "date": "2020-07-10", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-06-30", + "created_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5601, + "invoices": [ + { + "invoice_id": 11161, + "amount": "-1000.00", + "refunded": "0.00" + } + ], + "invoice_id": 11161, + "company_id": 1, + "client_id": 53, + "user_id": 1, + "client_contact_id": null, + "invitation_id": null, + "company_gateway_id": null, + "type_id": null, + "status_id": 4, + "amount": "-1000.00", + "applied": "-1000.00", + "refunded": "0.00", + "date": "2020-10-18", + "transaction_reference": "", + "payer_id": null, + "is_deleted": false, + "exchange_rate": "1.000000", + "exchange_currency_id": 0, + "currency_id": 1, + "updated_at": "2020-10-18", + "created_at": "2020-10-18", + "deleted_at": null + }, + { + "client_id": 53, + "user_id": 1, + "company_id": 1, + "is_deleted": 0, + "amount": "123.00", + "applied": 0, + "refunded": 0, + "date": null, + "created_at": "2020-10-18", + "updated_at": "2020-10-18", + "deleted_at": null + } + ], + "documents": [], + "company_gateways": [ { "id": 1, "user_id": 1, - "company_id": 1, - "invoice_id": 28, - "expense_id": null, - "path": "zuom5k2exmedyhztpgnkmwhwkzzxpbtk\/f8e8b45317131b60cd3177c13a5761ab278da43d.pdf", - "preview": "", - "name": "0019.pdf", - "type": "pdf", - "disk": "documents", - "hash": "f8e8b45317131b60cd3177c13a5761ab278da43d", - "size": 51397, - "width": null, - "height": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18" - }, - { - "id": 2, - "user_id": 1, - "company_id": 1, - "invoice_id": null, - "expense_id": null, - "path": "zuom5k2exmedyhztpgnkmwhwkzzxpbtk\/ddbba2265fe3e3d5ed1ce72bcc3e67e6dc6d9a2e.pdf", - "preview": "", - "name": "0001.pdf", - "type": "pdf", - "disk": "documents", - "hash": "ddbba2265fe3e3d5ed1ce72bcc3e67e6dc6d9a2e", - "size": 49393, - "width": null, - "height": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18" - }, - { - "id": 3, - "user_id": 1, - "company_id": 1, - "invoice_id": null, - "expense_id": 60, - "path": "zuom5k2exmedyhztpgnkmwhwkzzxpbtk\/858c794d4988ebcce27e01adb1cd8b2ba98d5668.pdf", - "preview": "", - "name": "0001.pdf", - "type": "pdf", - "disk": "documents", - "hash": "858c794d4988ebcce27e01adb1cd8b2ba98d5668", - "size": 51250, - "width": null, - "height": null, - "created_at": "2020-02-18", - "updated_at": "2020-02-18" - }, - { - "id": 4, - "user_id": 1, - "company_id": 1, - "invoice_id": 28, - "expense_id": null, - "path": "zuom5k2exmedyhztpgnkmwhwkzzxpbtk\/ed80d3d94084cefa54d41d3989fb99a757747276.pdf", - "preview": "", - "name": "Invoice_0028 (11).pdf", - "type": "pdf", - "disk": "documents", - "hash": "ed80d3d94084cefa54d41d3989fb99a757747276", - "size": 74468, - "width": null, - "height": null, - "created_at": "2020-02-21", - "updated_at": "2020-02-21" - }, - { - "id": 5, - "user_id": 1, - "company_id": 1, - "invoice_id": null, - "expense_id": 51, - "path": "zuom5k2exmedyhztpgnkmwhwkzzxpbtk\/c81cf7f4bae0c1e32b87835a39d056110a0d63ec.pdf", - "preview": "", - "name": "Invoice_0028 (8).pdf", - "type": "pdf", - "disk": "documents", - "hash": "c81cf7f4bae0c1e32b87835a39d056110a0d63ec", - "size": 28390, - "width": null, - "height": null, - "created_at": "2020-02-21", - "updated_at": "2020-02-21" - }, - { - "id": 6, - "user_id": 1, - "company_id": 1, - "invoice_id": null, - "expense_id": 51, - "path": "zuom5k2exmedyhztpgnkmwhwkzzxpbtk\/7ce4feb538a975856e29c47709698b5b792ec3b4.pdf", - "preview": "", - "name": "Invoice_0028 (6).pdf", - "type": "pdf", - "disk": "documents", - "hash": "7ce4feb538a975856e29c47709698b5b792ec3b4", - "size": 29613, - "width": null, - "height": null, - "created_at": "2020-02-21", - "updated_at": "2020-02-21" - }, - { - "id": 7, - "user_id": 1, - "company_id": 1, - "invoice_id": null, - "expense_id": 51, - "path": "zuom5k2exmedyhztpgnkmwhwkzzxpbtk\/1bbf0c9bd9024ceb83064daeeab9386d68097410.pdf", - "preview": "", - "name": "Invoice_0028 (5).pdf", - "type": "pdf", - "disk": "documents", - "hash": "1bbf0c9bd9024ceb83064daeeab9386d68097410", - "size": 28268, - "width": null, - "height": null, - "created_at": "2020-02-21", - "updated_at": "2020-02-21" - } - ], - "company_gateways": [ - { - "id": 3, - "user_id": 1, "gateway_key": "16dc1d3c8a865425421f64463faaf768", - "accepted_credit_cards": 31, - "require_cvv": 1, - "show_billing_address": null, - "show_shipping_address": 1, - "update_details": null, - "config": "{\"apiKey\":\"sk_test_faU9gVB7Hx19fCTo0e5ggZ0x\",\"publishableKey\":\"pk_test_iRPDj3jLiQs0Guae0lvSHaOD\",\"plaidClientId\":\"\",\"plaidSecret\":\"\",\"plaidPublicKey\":\"\",\"enableAlipay\":true,\"enableSofort\":true,\"enableSepa\":false,\"enableBitcoin\":false,\"enableApplePay\":true,\"enableAch\":true}", - "fees_and_limits": { - "min_limit": 234, - "max_limit": 65317, - "fee_amount": "0.00", - "fee_percent": "0.000", - "tax_name1": null, - "tax_rate1": null, - "tax_name2": null, - "tax_rate2": null, - "tax_name3": "", - "tax_rate3": 0 - }, - "custom_value1": "", - "custom_value2": "", - "custom_value3": "", - "custom_value4": "" - }, - { - "id": 3, - "user_id": 1, - "gateway_key": "16dc1d3c8a865425421f64463faaf768", - "accepted_credit_cards": 31, - "require_cvv": 1, - "show_billing_address": null, - "show_shipping_address": 1, - "update_details": null, - "config": "{\"apiKey\":\"sk_test_faU9gVB7Hx19fCTo0e5ggZ0x\",\"publishableKey\":\"pk_test_iRPDj3jLiQs0Guae0lvSHaOD\",\"plaidClientId\":\"\",\"plaidSecret\":\"\",\"plaidPublicKey\":\"\",\"enableAlipay\":true,\"enableSofort\":true,\"enableSepa\":false,\"enableBitcoin\":false,\"enableApplePay\":true,\"enableAch\":true}", - "fees_and_limits": {}, - "custom_value1": "", - "custom_value2": "", - "custom_value3": "", - "custom_value4": "" - }, - { - "id": 3, - "user_id": 1, - "gateway_key": "16dc1d3c8a865425421f64463faaf768", - "accepted_credit_cards": 31, - "require_cvv": 1, - "show_billing_address": null, - "show_shipping_address": 1, - "update_details": null, - "config": "{\"apiKey\":\"sk_test_faU9gVB7Hx19fCTo0e5ggZ0x\",\"publishableKey\":\"pk_test_iRPDj3jLiQs0Guae0lvSHaOD\",\"plaidClientId\":\"\",\"plaidSecret\":\"\",\"plaidPublicKey\":\"\",\"enableAlipay\":true,\"enableSofort\":true,\"enableSepa\":false,\"enableBitcoin\":false,\"enableApplePay\":true,\"enableAch\":true}", - "fees_and_limits": { - "min_limit": 147, - "max_limit": 53254, - "fee_amount": "0.00", - "fee_percent": "0.000", - "tax_name1": null, - "tax_rate1": null, - "tax_name2": null, - "tax_rate2": null, - "tax_name3": "", - "tax_rate3": 0 - }, - "custom_value1": "", - "custom_value2": "", - "custom_value3": "", - "custom_value4": "" - }, - { - "id": 3, - "user_id": 1, - "gateway_key": "16dc1d3c8a865425421f64463faaf768", - "accepted_credit_cards": 31, - "require_cvv": 1, - "show_billing_address": null, - "show_shipping_address": 1, - "update_details": null, - "config": "{\"apiKey\":\"sk_test_faU9gVB7Hx19fCTo0e5ggZ0x\",\"publishableKey\":\"pk_test_iRPDj3jLiQs0Guae0lvSHaOD\",\"plaidClientId\":\"\",\"plaidSecret\":\"\",\"plaidPublicKey\":\"\",\"enableAlipay\":true,\"enableSofort\":true,\"enableSepa\":false,\"enableBitcoin\":false,\"enableApplePay\":true,\"enableAch\":true}", - "fees_and_limits": { - "min_limit": 155, - "max_limit": 72857, - "fee_amount": "0.00", - "fee_percent": "0.000", - "tax_name1": null, - "tax_rate1": null, - "tax_name2": null, - "tax_rate2": null, - "tax_name3": "", - "tax_rate3": 0 - }, - "custom_value1": "", - "custom_value2": "", - "custom_value3": "", - "custom_value4": "" - }, - { - "id": 3, - "user_id": 1, - "gateway_key": "16dc1d3c8a865425421f64463faaf768", - "accepted_credit_cards": 31, - "require_cvv": 1, - "show_billing_address": null, - "show_shipping_address": 1, - "update_details": null, - "config": "{\"apiKey\":\"sk_test_faU9gVB7Hx19fCTo0e5ggZ0x\",\"publishableKey\":\"pk_test_iRPDj3jLiQs0Guae0lvSHaOD\",\"plaidClientId\":\"\",\"plaidSecret\":\"\",\"plaidPublicKey\":\"\",\"enableAlipay\":true,\"enableSofort\":true,\"enableSepa\":false,\"enableBitcoin\":false,\"enableApplePay\":true,\"enableAch\":true}", - "fees_and_limits": { - "min_limit": 139, - "max_limit": 71349, - "fee_amount": "0.00", - "fee_percent": "0.000", - "tax_name1": null, - "tax_rate1": null, - "tax_name2": null, - "tax_rate2": null, - "tax_name3": "", - "tax_rate3": 0 - }, - "custom_value1": "", - "custom_value2": "", - "custom_value3": "", - "custom_value4": "" - }, - { - "id": 3, - "user_id": 1, - "gateway_key": "16dc1d3c8a865425421f64463faaf768", - "accepted_credit_cards": 31, - "require_cvv": 1, - "show_billing_address": null, - "show_shipping_address": 1, - "update_details": null, - "config": "{\"apiKey\":\"sk_test_faU9gVB7Hx19fCTo0e5ggZ0x\",\"publishableKey\":\"pk_test_iRPDj3jLiQs0Guae0lvSHaOD\",\"plaidClientId\":\"\",\"plaidSecret\":\"\",\"plaidPublicKey\":\"\",\"enableAlipay\":true,\"enableSofort\":true,\"enableSepa\":false,\"enableBitcoin\":false,\"enableApplePay\":true,\"enableAch\":true}", - "fees_and_limits": { - "min_limit": 151, - "max_limit": 74365, - "fee_amount": "0.00", - "fee_percent": "0.000", - "tax_name1": null, - "tax_rate1": null, - "tax_name2": null, - "tax_rate2": null, - "tax_name3": "", - "tax_rate3": 0 - }, - "custom_value1": "", - "custom_value2": "", - "custom_value3": "", - "custom_value4": "" - }, - { - "id": 4, - "user_id": 1, - "gateway_key": "4c8f4e5d0f353a122045eb9a60cc0f2d", "accepted_credit_cards": 0, "require_cvv": 1, "show_billing_address": null, "show_shipping_address": 0, "update_details": null, - "config": "{\"username\":\"assas\",\"password\":\"asas\",\"signature\":\"sasas\",\"testMode\":\"1\",\"solutionType\":\"\",\"landingPage\":\"\",\"brandName\":\"\",\"headerImageUrl\":\"\",\"logoImageUrl\":\"\",\"borderColor\":\"\",\"plaidClientId\":\"\",\"plaidSecret\":\"\",\"plaidPublicKey\":\"\"}", + "config": "{\"apiKey\":\"345345345\",\"publishableKey\":\"5435345\",\"plaidClientId\":\"\",\"plaidSecret\":\"\",\"plaidPublicKey\":\"\",\"enableAlipay\":false,\"enableSofort\":false,\"enableSepa\":false,\"enableBitcoin\":false,\"enableApplePay\":false,\"enableAch\":false}", "fees_and_limits": { - "min_limit": 196, - "max_limit": 57303, - "fee_amount": "0.00", - "fee_percent": "0.000", - "tax_name1": null, - "tax_rate1": null, - "tax_name2": null, - "tax_rate2": null, - "tax_name3": "", - "tax_rate3": 0 + "1": { + "min_limit": 33, + "max_limit": 100000, + "fee_amount": "0.00", + "fee_percent": "0.000", + "fee_tax_name1": null, + "fee_tax_rate1": null, + "fee_tax_name2": null, + "fee_tax_rate2": null, + "fee_tax_name3": "", + "fee_tax_rate3": 0 + } }, "custom_value1": "", "custom_value2": "", "custom_value3": "", "custom_value4": "" + }, + { + "id": 1, + "user_id": 1, + "gateway_key": "16dc1d3c8a865425421f64463faaf768", + "accepted_credit_cards": 0, + "require_cvv": 1, + "show_billing_address": null, + "show_shipping_address": 0, + "update_details": null, + "config": "{\"apiKey\":\"345345345\",\"publishableKey\":\"5435345\",\"plaidClientId\":\"\",\"plaidSecret\":\"\",\"plaidPublicKey\":\"\",\"enableAlipay\":false,\"enableSofort\":false,\"enableSepa\":false,\"enableBitcoin\":false,\"enableApplePay\":false,\"enableAch\":false}", + "fees_and_limits": {}, + "custom_value1": "", + "custom_value2": "", + "custom_value3": "", + "custom_value4": "" } ], - "client_gateway_tokens": [ + "client_gateway_tokens": [], + "expense_categories": [ + { + "name": "Category 1", + "company_id": 1, + "id": 1, + "user_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "name": "Category 1", + "company_id": 1, + "id": 2, + "user_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + } + ], + "task_statuses": [ + { + "name": "Backlog", + "id": 1, + "company_id": 1, + "user_id": 1, + "status_sort_order": 0, + "is_deleted": false, + "created_at": "2020-09-22", + "updated_at": "2020-09-22", + "deleted_at": null + }, + { + "name": "Ready to do", + "id": 2, + "company_id": 1, + "user_id": 1, + "status_sort_order": 1, + "is_deleted": false, + "created_at": "2020-09-22", + "updated_at": "2020-09-22", + "deleted_at": null + }, + { + "name": "In progress", + "id": 3, + "company_id": 1, + "user_id": 1, + "status_sort_order": 2, + "is_deleted": false, + "created_at": "2020-09-22", + "updated_at": "2020-09-22", + "deleted_at": null + }, + { + "name": "Done", + "id": 4, + "company_id": 1, + "user_id": 1, + "status_sort_order": 3, + "is_deleted": false, + "created_at": "2020-09-22", + "updated_at": "2020-09-22", + "deleted_at": null + } + ], + "expenses": [ { "id": 1, "company_id": 1, - "client_id": 1, - "token": "pm_1GDkRQKmol8YQE9DVFNhOYnB", - "company_gateway_id": 3, - "gateway_customer_reference": "cus_GlGzLKx3oSM5N9", - "gateway_type_id": 1, - "is_default": true, - "meta": { - "exp_month": "02", - "exp_year": "2022", - "brand": "Visa Card", - "last4": "2022-02-01", - "type": 1 - } + "user_id": 1, + "amount": "1.01", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null }, { "id": 2, "company_id": 1, - "client_id": 1, - "token": "pm_1GDkcNKmol8YQE9DvNf1t6fx", - "company_gateway_id": 3, - "gateway_customer_reference": "cus_GlGzLKx3oSM5N9", - "gateway_type_id": 1, - "is_default": false, - "meta": { - "exp_month": "02", - "exp_year": "2022", - "brand": "Visa Card", - "last4": "2022-02-01", - "type": 1 - } + "user_id": 1, + "amount": "9.68", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 3, + "company_id": 1, + "user_id": 1, + "amount": "8.27", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-17", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 4, + "company_id": 1, + "user_id": 1, + "amount": "8.74", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 5, + "company_id": 1, + "user_id": 1, + "amount": "2.54", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 6, + "company_id": 1, + "user_id": 1, + "amount": "2.19", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 7, + "company_id": 1, + "user_id": 1, + "amount": "6.01", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 8, + "company_id": 1, + "user_id": 1, + "amount": "4.48", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 9, + "company_id": 1, + "user_id": 1, + "amount": "3.15", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 10, + "company_id": 1, + "user_id": 1, + "amount": "2.57", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 11, + "company_id": 1, + "user_id": 1, + "amount": "2.56", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 12, + "company_id": 1, + "user_id": 1, + "amount": "5.51", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-23", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 13, + "company_id": 1, + "user_id": 1, + "amount": "5.11", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 14, + "company_id": 1, + "user_id": 1, + "amount": "8.28", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-10", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 15, + "company_id": 1, + "user_id": 1, + "amount": "4.87", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 16, + "company_id": 1, + "user_id": 1, + "amount": "7.88", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-23", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 17, + "company_id": 1, + "user_id": 1, + "amount": "4.84", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 18, + "company_id": 1, + "user_id": 1, + "amount": "4.80", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 19, + "company_id": 1, + "user_id": 1, + "amount": "2.85", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 20, + "company_id": 1, + "user_id": 1, + "amount": "5.10", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-17", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 1, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 21, + "company_id": 1, + "user_id": 1, + "amount": "5.33", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 22, + "company_id": 1, + "user_id": 1, + "amount": "5.90", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-17", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 23, + "company_id": 1, + "user_id": 1, + "amount": "5.32", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 24, + "company_id": 1, + "user_id": 1, + "amount": "7.13", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 25, + "company_id": 1, + "user_id": 1, + "amount": "1.06", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 26, + "company_id": 1, + "user_id": 1, + "amount": "6.96", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 27, + "company_id": 1, + "user_id": 1, + "amount": "7.24", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-24", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 28, + "company_id": 1, + "user_id": 1, + "amount": "5.57", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-31", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 29, + "company_id": 1, + "user_id": 1, + "amount": "7.06", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 30, + "company_id": 1, + "user_id": 1, + "amount": "7.03", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 31, + "company_id": 1, + "user_id": 1, + "amount": "8.53", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 32, + "company_id": 1, + "user_id": 1, + "amount": "7.60", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 33, + "company_id": 1, + "user_id": 1, + "amount": "1.61", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 34, + "company_id": 1, + "user_id": 1, + "amount": "2.61", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 35, + "company_id": 1, + "user_id": 1, + "amount": "8.98", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 36, + "company_id": 1, + "user_id": 1, + "amount": "3.26", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 37, + "company_id": 1, + "user_id": 1, + "amount": "2.51", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 38, + "company_id": 1, + "user_id": 1, + "amount": "7.84", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 39, + "company_id": 1, + "user_id": 1, + "amount": "9.12", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 40, + "company_id": 1, + "user_id": 1, + "amount": "1.15", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-01", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 2, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 41, + "company_id": 1, + "user_id": 1, + "amount": "4.70", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 42, + "company_id": 1, + "user_id": 1, + "amount": "5.69", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 43, + "company_id": 1, + "user_id": 1, + "amount": "3.20", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 44, + "company_id": 1, + "user_id": 1, + "amount": "4.36", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 45, + "company_id": 1, + "user_id": 1, + "amount": "2.06", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 46, + "company_id": 1, + "user_id": 1, + "amount": "1.70", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 47, + "company_id": 1, + "user_id": 1, + "amount": "8.08", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 48, + "company_id": 1, + "user_id": 1, + "amount": "8.50", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 49, + "company_id": 1, + "user_id": 1, + "amount": "4.99", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 50, + "company_id": 1, + "user_id": 1, + "amount": "7.82", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 51, + "company_id": 1, + "user_id": 1, + "amount": "9.28", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 52, + "company_id": 1, + "user_id": 1, + "amount": "6.48", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 53, + "company_id": 1, + "user_id": 1, + "amount": "7.91", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 54, + "company_id": 1, + "user_id": 1, + "amount": "6.49", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-24", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 55, + "company_id": 1, + "user_id": 1, + "amount": "6.23", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-05", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 56, + "company_id": 1, + "user_id": 1, + "amount": "1.67", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 57, + "company_id": 1, + "user_id": 1, + "amount": "5.62", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-01", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 58, + "company_id": 1, + "user_id": 1, + "amount": "6.80", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 59, + "company_id": 1, + "user_id": 1, + "amount": "5.08", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 60, + "company_id": 1, + "user_id": 1, + "amount": "8.58", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 3, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 61, + "company_id": 1, + "user_id": 1, + "amount": "3.26", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 62, + "company_id": 1, + "user_id": 1, + "amount": "2.79", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 63, + "company_id": 1, + "user_id": 1, + "amount": "2.24", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-14", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 64, + "company_id": 1, + "user_id": 1, + "amount": "1.17", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 65, + "company_id": 1, + "user_id": 1, + "amount": "3.89", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-10", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 66, + "company_id": 1, + "user_id": 1, + "amount": "4.78", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-01", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 67, + "company_id": 1, + "user_id": 1, + "amount": "3.60", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 68, + "company_id": 1, + "user_id": 1, + "amount": "3.24", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-14", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 69, + "company_id": 1, + "user_id": 1, + "amount": "6.17", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 70, + "company_id": 1, + "user_id": 1, + "amount": "1.91", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 71, + "company_id": 1, + "user_id": 1, + "amount": "3.42", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 72, + "company_id": 1, + "user_id": 1, + "amount": "9.39", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 73, + "company_id": 1, + "user_id": 1, + "amount": "2.63", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-05", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 74, + "company_id": 1, + "user_id": 1, + "amount": "7.48", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 75, + "company_id": 1, + "user_id": 1, + "amount": "6.44", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-10", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 76, + "company_id": 1, + "user_id": 1, + "amount": "5.92", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 77, + "company_id": 1, + "user_id": 1, + "amount": "6.31", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-01", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 78, + "company_id": 1, + "user_id": 1, + "amount": "5.32", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 79, + "company_id": 1, + "user_id": 1, + "amount": "1.16", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 80, + "company_id": 1, + "user_id": 1, + "amount": "1.26", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-24", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 4, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 81, + "company_id": 1, + "user_id": 1, + "amount": "2.16", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 82, + "company_id": 1, + "user_id": 1, + "amount": "7.99", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 83, + "company_id": 1, + "user_id": 1, + "amount": "8.98", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-09", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 84, + "company_id": 1, + "user_id": 1, + "amount": "8.02", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 85, + "company_id": 1, + "user_id": 1, + "amount": "6.26", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 86, + "company_id": 1, + "user_id": 1, + "amount": "3.52", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 87, + "company_id": 1, + "user_id": 1, + "amount": "3.27", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 88, + "company_id": 1, + "user_id": 1, + "amount": "6.88", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 89, + "company_id": 1, + "user_id": 1, + "amount": "9.28", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 90, + "company_id": 1, + "user_id": 1, + "amount": "3.98", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-28", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 91, + "company_id": 1, + "user_id": 1, + "amount": "6.18", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-20", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 92, + "company_id": 1, + "user_id": 1, + "amount": "8.56", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-24", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 93, + "company_id": 1, + "user_id": 1, + "amount": "7.14", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 94, + "company_id": 1, + "user_id": 1, + "amount": "9.47", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 95, + "company_id": 1, + "user_id": 1, + "amount": "4.68", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 96, + "company_id": 1, + "user_id": 1, + "amount": "8.90", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-09", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 97, + "company_id": 1, + "user_id": 1, + "amount": "7.43", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-31", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 98, + "company_id": 1, + "user_id": 1, + "amount": "9.10", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-28", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 99, + "company_id": 1, + "user_id": 1, + "amount": "9.61", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 100, + "company_id": 1, + "user_id": 1, + "amount": "5.84", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-17", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 5, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 101, + "company_id": 1, + "user_id": 1, + "amount": "2.38", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 102, + "company_id": 1, + "user_id": 1, + "amount": "5.41", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 103, + "company_id": 1, + "user_id": 1, + "amount": "5.72", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 104, + "company_id": 1, + "user_id": 1, + "amount": "7.52", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 105, + "company_id": 1, + "user_id": 1, + "amount": "2.84", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-28", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 106, + "company_id": 1, + "user_id": 1, + "amount": "4.02", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-23", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 107, + "company_id": 1, + "user_id": 1, + "amount": "8.93", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 108, + "company_id": 1, + "user_id": 1, + "amount": "2.42", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 109, + "company_id": 1, + "user_id": 1, + "amount": "2.86", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 110, + "company_id": 1, + "user_id": 1, + "amount": "1.08", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-31", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 111, + "company_id": 1, + "user_id": 1, + "amount": "7.09", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 112, + "company_id": 1, + "user_id": 1, + "amount": "2.70", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 113, + "company_id": 1, + "user_id": 1, + "amount": "3.27", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 114, + "company_id": 1, + "user_id": 1, + "amount": "5.12", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 115, + "company_id": 1, + "user_id": 1, + "amount": "7.09", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 116, + "company_id": 1, + "user_id": 1, + "amount": "3.65", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 117, + "company_id": 1, + "user_id": 1, + "amount": "1.80", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 118, + "company_id": 1, + "user_id": 1, + "amount": "9.26", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 119, + "company_id": 1, + "user_id": 1, + "amount": "8.36", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-20", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 120, + "company_id": 1, + "user_id": 1, + "amount": "8.63", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 6, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 121, + "company_id": 1, + "user_id": 1, + "amount": "4.50", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 122, + "company_id": 1, + "user_id": 1, + "amount": "7.79", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 123, + "company_id": 1, + "user_id": 1, + "amount": "9.52", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 124, + "company_id": 1, + "user_id": 1, + "amount": "4.50", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 125, + "company_id": 1, + "user_id": 1, + "amount": "2.55", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-05", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 126, + "company_id": 1, + "user_id": 1, + "amount": "8.64", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-31", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 127, + "company_id": 1, + "user_id": 1, + "amount": "9.70", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-14", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 128, + "company_id": 1, + "user_id": 1, + "amount": "5.14", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 129, + "company_id": 1, + "user_id": 1, + "amount": "5.65", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 130, + "company_id": 1, + "user_id": 1, + "amount": "1.10", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 131, + "company_id": 1, + "user_id": 1, + "amount": "6.47", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-20", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 132, + "company_id": 1, + "user_id": 1, + "amount": "2.00", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 133, + "company_id": 1, + "user_id": 1, + "amount": "6.03", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 134, + "company_id": 1, + "user_id": 1, + "amount": "9.39", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 135, + "company_id": 1, + "user_id": 1, + "amount": "8.72", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 136, + "company_id": 1, + "user_id": 1, + "amount": "1.10", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-20", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 137, + "company_id": 1, + "user_id": 1, + "amount": "3.77", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-17", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 138, + "company_id": 1, + "user_id": 1, + "amount": "5.01", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 139, + "company_id": 1, + "user_id": 1, + "amount": "4.86", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 140, + "company_id": 1, + "user_id": 1, + "amount": "8.54", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 7, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 141, + "company_id": 1, + "user_id": 1, + "amount": "2.09", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 142, + "company_id": 1, + "user_id": 1, + "amount": "6.67", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 143, + "company_id": 1, + "user_id": 1, + "amount": "4.31", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 144, + "company_id": 1, + "user_id": 1, + "amount": "6.79", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 145, + "company_id": 1, + "user_id": 1, + "amount": "9.49", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 146, + "company_id": 1, + "user_id": 1, + "amount": "8.01", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 147, + "company_id": 1, + "user_id": 1, + "amount": "4.53", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 148, + "company_id": 1, + "user_id": 1, + "amount": "8.23", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 149, + "company_id": 1, + "user_id": 1, + "amount": "6.26", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 150, + "company_id": 1, + "user_id": 1, + "amount": "3.61", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 151, + "company_id": 1, + "user_id": 1, + "amount": "6.55", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 152, + "company_id": 1, + "user_id": 1, + "amount": "7.34", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-28", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 153, + "company_id": 1, + "user_id": 1, + "amount": "1.40", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 154, + "company_id": 1, + "user_id": 1, + "amount": "9.82", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 155, + "company_id": 1, + "user_id": 1, + "amount": "6.09", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 156, + "company_id": 1, + "user_id": 1, + "amount": "3.88", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 157, + "company_id": 1, + "user_id": 1, + "amount": "7.42", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 158, + "company_id": 1, + "user_id": 1, + "amount": "9.51", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 159, + "company_id": 1, + "user_id": 1, + "amount": "8.01", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 160, + "company_id": 1, + "user_id": 1, + "amount": "9.89", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 8, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 161, + "company_id": 1, + "user_id": 1, + "amount": "5.19", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 162, + "company_id": 1, + "user_id": 1, + "amount": "1.73", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 163, + "company_id": 1, + "user_id": 1, + "amount": "7.67", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 164, + "company_id": 1, + "user_id": 1, + "amount": "3.42", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 165, + "company_id": 1, + "user_id": 1, + "amount": "6.37", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-17", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 166, + "company_id": 1, + "user_id": 1, + "amount": "6.42", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-09", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 167, + "company_id": 1, + "user_id": 1, + "amount": "2.24", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 168, + "company_id": 1, + "user_id": 1, + "amount": "4.41", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 169, + "company_id": 1, + "user_id": 1, + "amount": "2.26", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 170, + "company_id": 1, + "user_id": 1, + "amount": "3.57", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 171, + "company_id": 1, + "user_id": 1, + "amount": "5.58", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 172, + "company_id": 1, + "user_id": 1, + "amount": "7.33", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 173, + "company_id": 1, + "user_id": 1, + "amount": "6.71", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 174, + "company_id": 1, + "user_id": 1, + "amount": "6.46", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 175, + "company_id": 1, + "user_id": 1, + "amount": "2.78", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 176, + "company_id": 1, + "user_id": 1, + "amount": "4.20", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-14", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 177, + "company_id": 1, + "user_id": 1, + "amount": "3.58", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-23", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 178, + "company_id": 1, + "user_id": 1, + "amount": "3.27", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-31", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 179, + "company_id": 1, + "user_id": 1, + "amount": "7.43", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 180, + "company_id": 1, + "user_id": 1, + "amount": "6.66", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-24", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 9, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 181, + "company_id": 1, + "user_id": 1, + "amount": "9.02", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 182, + "company_id": 1, + "user_id": 1, + "amount": "8.03", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 183, + "company_id": 1, + "user_id": 1, + "amount": "9.55", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-01", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 184, + "company_id": 1, + "user_id": 1, + "amount": "8.83", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-17", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 185, + "company_id": 1, + "user_id": 1, + "amount": "1.26", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 186, + "company_id": 1, + "user_id": 1, + "amount": "1.85", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-24", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 187, + "company_id": 1, + "user_id": 1, + "amount": "1.35", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 188, + "company_id": 1, + "user_id": 1, + "amount": "1.54", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 189, + "company_id": 1, + "user_id": 1, + "amount": "3.41", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 190, + "company_id": 1, + "user_id": 1, + "amount": "3.21", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 191, + "company_id": 1, + "user_id": 1, + "amount": "4.81", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 192, + "company_id": 1, + "user_id": 1, + "amount": "6.01", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-09", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 193, + "company_id": 1, + "user_id": 1, + "amount": "3.53", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 194, + "company_id": 1, + "user_id": 1, + "amount": "7.22", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 195, + "company_id": 1, + "user_id": 1, + "amount": "3.40", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 196, + "company_id": 1, + "user_id": 1, + "amount": "4.12", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-14", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 197, + "company_id": 1, + "user_id": 1, + "amount": "9.21", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 198, + "company_id": 1, + "user_id": 1, + "amount": "2.03", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 199, + "company_id": 1, + "user_id": 1, + "amount": "6.91", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-17", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 200, + "company_id": 1, + "user_id": 1, + "amount": "1.42", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 10, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 201, + "company_id": 1, + "user_id": 1, + "amount": "4.59", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 202, + "company_id": 1, + "user_id": 1, + "amount": "4.92", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-28", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 203, + "company_id": 1, + "user_id": 1, + "amount": "2.01", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 204, + "company_id": 1, + "user_id": 1, + "amount": "3.01", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-23", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 205, + "company_id": 1, + "user_id": 1, + "amount": "8.04", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 206, + "company_id": 1, + "user_id": 1, + "amount": "8.93", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 207, + "company_id": 1, + "user_id": 1, + "amount": "3.60", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 208, + "company_id": 1, + "user_id": 1, + "amount": "9.90", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-01", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 209, + "company_id": 1, + "user_id": 1, + "amount": "2.91", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 210, + "company_id": 1, + "user_id": 1, + "amount": "5.90", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 211, + "company_id": 1, + "user_id": 1, + "amount": "9.35", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 212, + "company_id": 1, + "user_id": 1, + "amount": "5.44", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-31", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 213, + "company_id": 1, + "user_id": 1, + "amount": "4.29", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-14", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 214, + "company_id": 1, + "user_id": 1, + "amount": "2.15", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 215, + "company_id": 1, + "user_id": 1, + "amount": "1.01", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-01", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 216, + "company_id": 1, + "user_id": 1, + "amount": "5.16", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 217, + "company_id": 1, + "user_id": 1, + "amount": "6.14", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-14", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 218, + "company_id": 1, + "user_id": 1, + "amount": "7.11", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-09", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 219, + "company_id": 1, + "user_id": 1, + "amount": "9.02", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 220, + "company_id": 1, + "user_id": 1, + "amount": "3.82", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 11, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 221, + "company_id": 1, + "user_id": 1, + "amount": "8.76", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-09", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 222, + "company_id": 1, + "user_id": 1, + "amount": "6.74", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 223, + "company_id": 1, + "user_id": 1, + "amount": "2.42", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 224, + "company_id": 1, + "user_id": 1, + "amount": "1.11", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 225, + "company_id": 1, + "user_id": 1, + "amount": "6.86", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 226, + "company_id": 1, + "user_id": 1, + "amount": "9.85", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 227, + "company_id": 1, + "user_id": 1, + "amount": "8.23", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-24", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 228, + "company_id": 1, + "user_id": 1, + "amount": "1.33", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 229, + "company_id": 1, + "user_id": 1, + "amount": "2.66", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-05", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 230, + "company_id": 1, + "user_id": 1, + "amount": "2.61", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 231, + "company_id": 1, + "user_id": 1, + "amount": "9.38", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 232, + "company_id": 1, + "user_id": 1, + "amount": "6.52", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-01", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 233, + "company_id": 1, + "user_id": 1, + "amount": "6.92", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 234, + "company_id": 1, + "user_id": 1, + "amount": "9.80", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 235, + "company_id": 1, + "user_id": 1, + "amount": "2.84", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 236, + "company_id": 1, + "user_id": 1, + "amount": "8.25", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 237, + "company_id": 1, + "user_id": 1, + "amount": "6.85", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 238, + "company_id": 1, + "user_id": 1, + "amount": "6.31", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 239, + "company_id": 1, + "user_id": 1, + "amount": "1.08", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 240, + "company_id": 1, + "user_id": 1, + "amount": "4.70", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 12, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 241, + "company_id": 1, + "user_id": 1, + "amount": "8.47", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 242, + "company_id": 1, + "user_id": 1, + "amount": "4.07", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 243, + "company_id": 1, + "user_id": 1, + "amount": "2.16", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 244, + "company_id": 1, + "user_id": 1, + "amount": "7.81", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-20", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 245, + "company_id": 1, + "user_id": 1, + "amount": "3.20", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 246, + "company_id": 1, + "user_id": 1, + "amount": "9.64", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-24", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 247, + "company_id": 1, + "user_id": 1, + "amount": "6.56", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 248, + "company_id": 1, + "user_id": 1, + "amount": "1.00", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 249, + "company_id": 1, + "user_id": 1, + "amount": "7.67", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 250, + "company_id": 1, + "user_id": 1, + "amount": "2.68", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 251, + "company_id": 1, + "user_id": 1, + "amount": "7.44", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 252, + "company_id": 1, + "user_id": 1, + "amount": "7.81", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 253, + "company_id": 1, + "user_id": 1, + "amount": "5.49", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 254, + "company_id": 1, + "user_id": 1, + "amount": "1.44", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 255, + "company_id": 1, + "user_id": 1, + "amount": "9.76", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 256, + "company_id": 1, + "user_id": 1, + "amount": "9.32", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 257, + "company_id": 1, + "user_id": 1, + "amount": "8.58", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 258, + "company_id": 1, + "user_id": 1, + "amount": "3.68", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 259, + "company_id": 1, + "user_id": 1, + "amount": "7.18", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 260, + "company_id": 1, + "user_id": 1, + "amount": "9.13", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 13, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 261, + "company_id": 1, + "user_id": 1, + "amount": "4.15", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 262, + "company_id": 1, + "user_id": 1, + "amount": "9.31", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 263, + "company_id": 1, + "user_id": 1, + "amount": "4.09", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 264, + "company_id": 1, + "user_id": 1, + "amount": "4.13", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 265, + "company_id": 1, + "user_id": 1, + "amount": "9.58", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 266, + "company_id": 1, + "user_id": 1, + "amount": "6.90", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-28", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 267, + "company_id": 1, + "user_id": 1, + "amount": "9.57", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-20", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 268, + "company_id": 1, + "user_id": 1, + "amount": "4.90", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-20", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 269, + "company_id": 1, + "user_id": 1, + "amount": "6.95", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 270, + "company_id": 1, + "user_id": 1, + "amount": "5.05", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 271, + "company_id": 1, + "user_id": 1, + "amount": "9.38", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 272, + "company_id": 1, + "user_id": 1, + "amount": "4.41", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 273, + "company_id": 1, + "user_id": 1, + "amount": "6.45", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 274, + "company_id": 1, + "user_id": 1, + "amount": "8.11", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 275, + "company_id": 1, + "user_id": 1, + "amount": "1.44", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 276, + "company_id": 1, + "user_id": 1, + "amount": "9.29", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 277, + "company_id": 1, + "user_id": 1, + "amount": "2.14", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 278, + "company_id": 1, + "user_id": 1, + "amount": "4.09", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 279, + "company_id": 1, + "user_id": 1, + "amount": "2.07", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 280, + "company_id": 1, + "user_id": 1, + "amount": "9.02", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-09", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 14, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 281, + "company_id": 1, + "user_id": 1, + "amount": "2.36", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 282, + "company_id": 1, + "user_id": 1, + "amount": "4.77", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-05", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 283, + "company_id": 1, + "user_id": 1, + "amount": "4.63", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 284, + "company_id": 1, + "user_id": 1, + "amount": "5.04", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-28", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 285, + "company_id": 1, + "user_id": 1, + "amount": "6.87", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 286, + "company_id": 1, + "user_id": 1, + "amount": "9.41", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 287, + "company_id": 1, + "user_id": 1, + "amount": "2.42", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-31", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 288, + "company_id": 1, + "user_id": 1, + "amount": "7.39", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-14", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 289, + "company_id": 1, + "user_id": 1, + "amount": "5.91", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 290, + "company_id": 1, + "user_id": 1, + "amount": "2.51", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 291, + "company_id": 1, + "user_id": 1, + "amount": "1.77", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 292, + "company_id": 1, + "user_id": 1, + "amount": "6.03", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 293, + "company_id": 1, + "user_id": 1, + "amount": "3.39", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 294, + "company_id": 1, + "user_id": 1, + "amount": "6.03", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-28", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 295, + "company_id": 1, + "user_id": 1, + "amount": "5.76", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 296, + "company_id": 1, + "user_id": 1, + "amount": "2.37", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-10", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 297, + "company_id": 1, + "user_id": 1, + "amount": "1.10", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 298, + "company_id": 1, + "user_id": 1, + "amount": "8.78", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 299, + "company_id": 1, + "user_id": 1, + "amount": "4.74", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-28", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 300, + "company_id": 1, + "user_id": 1, + "amount": "2.92", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-01", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 15, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 301, + "company_id": 1, + "user_id": 1, + "amount": "8.44", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-10", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 302, + "company_id": 1, + "user_id": 1, + "amount": "5.07", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 303, + "company_id": 1, + "user_id": 1, + "amount": "1.04", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 304, + "company_id": 1, + "user_id": 1, + "amount": "1.75", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 305, + "company_id": 1, + "user_id": 1, + "amount": "4.64", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 306, + "company_id": 1, + "user_id": 1, + "amount": "7.27", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-23", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 307, + "company_id": 1, + "user_id": 1, + "amount": "6.26", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 308, + "company_id": 1, + "user_id": 1, + "amount": "7.92", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 309, + "company_id": 1, + "user_id": 1, + "amount": "7.29", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-17", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 310, + "company_id": 1, + "user_id": 1, + "amount": "8.03", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 311, + "company_id": 1, + "user_id": 1, + "amount": "9.76", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 312, + "company_id": 1, + "user_id": 1, + "amount": "5.31", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 313, + "company_id": 1, + "user_id": 1, + "amount": "1.33", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 314, + "company_id": 1, + "user_id": 1, + "amount": "2.10", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-28", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 315, + "company_id": 1, + "user_id": 1, + "amount": "5.23", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 316, + "company_id": 1, + "user_id": 1, + "amount": "2.64", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-10", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 317, + "company_id": 1, + "user_id": 1, + "amount": "2.80", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 318, + "company_id": 1, + "user_id": 1, + "amount": "7.69", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 319, + "company_id": 1, + "user_id": 1, + "amount": "5.47", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 320, + "company_id": 1, + "user_id": 1, + "amount": "9.66", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-01", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 16, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 321, + "company_id": 1, + "user_id": 1, + "amount": "9.33", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-10-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 322, + "company_id": 1, + "user_id": 1, + "amount": "6.92", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 323, + "company_id": 1, + "user_id": 1, + "amount": "7.35", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 324, + "company_id": 1, + "user_id": 1, + "amount": "6.65", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 325, + "company_id": 1, + "user_id": 1, + "amount": "2.90", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-28", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 326, + "company_id": 1, + "user_id": 1, + "amount": "1.42", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 327, + "company_id": 1, + "user_id": 1, + "amount": "1.21", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-24", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 328, + "company_id": 1, + "user_id": 1, + "amount": "7.67", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 329, + "company_id": 1, + "user_id": 1, + "amount": "7.41", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-14", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 330, + "company_id": 1, + "user_id": 1, + "amount": "6.90", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 331, + "company_id": 1, + "user_id": 1, + "amount": "8.16", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 332, + "company_id": 1, + "user_id": 1, + "amount": "2.52", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-06", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 333, + "company_id": 1, + "user_id": 1, + "amount": "2.15", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 334, + "company_id": 1, + "user_id": 1, + "amount": "4.74", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 335, + "company_id": 1, + "user_id": 1, + "amount": "8.78", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 336, + "company_id": 1, + "user_id": 1, + "amount": "2.60", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-17", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 337, + "company_id": 1, + "user_id": 1, + "amount": "7.44", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-23", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 338, + "company_id": 1, + "user_id": 1, + "amount": "7.75", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 339, + "company_id": 1, + "user_id": 1, + "amount": "9.34", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 340, + "company_id": 1, + "user_id": 1, + "amount": "9.00", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 17, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 341, + "company_id": 1, + "user_id": 1, + "amount": "2.28", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 342, + "company_id": 1, + "user_id": 1, + "amount": "3.77", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 343, + "company_id": 1, + "user_id": 1, + "amount": "9.41", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 344, + "company_id": 1, + "user_id": 1, + "amount": "5.36", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-05", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 345, + "company_id": 1, + "user_id": 1, + "amount": "2.64", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 346, + "company_id": 1, + "user_id": 1, + "amount": "6.33", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 347, + "company_id": 1, + "user_id": 1, + "amount": "7.79", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-03", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 348, + "company_id": 1, + "user_id": 1, + "amount": "2.93", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 349, + "company_id": 1, + "user_id": 1, + "amount": "8.52", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 350, + "company_id": 1, + "user_id": 1, + "amount": "5.76", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-17", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 351, + "company_id": 1, + "user_id": 1, + "amount": "3.80", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 352, + "company_id": 1, + "user_id": 1, + "amount": "6.94", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 353, + "company_id": 1, + "user_id": 1, + "amount": "4.52", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 354, + "company_id": 1, + "user_id": 1, + "amount": "1.81", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 355, + "company_id": 1, + "user_id": 1, + "amount": "3.88", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-10", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 356, + "company_id": 1, + "user_id": 1, + "amount": "9.48", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-23", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 357, + "company_id": 1, + "user_id": 1, + "amount": "8.72", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 358, + "company_id": 1, + "user_id": 1, + "amount": "2.60", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 359, + "company_id": 1, + "user_id": 1, + "amount": "2.65", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-11", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 360, + "company_id": 1, + "user_id": 1, + "amount": "5.43", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-24", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 18, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 361, + "company_id": 1, + "user_id": 1, + "amount": "8.87", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 362, + "company_id": 1, + "user_id": 1, + "amount": "9.10", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 363, + "company_id": 1, + "user_id": 1, + "amount": "7.90", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 364, + "company_id": 1, + "user_id": 1, + "amount": "6.08", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-25", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 365, + "company_id": 1, + "user_id": 1, + "amount": "3.03", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-10", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 366, + "company_id": 1, + "user_id": 1, + "amount": "4.12", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 367, + "company_id": 1, + "user_id": 1, + "amount": "2.26", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 368, + "company_id": 1, + "user_id": 1, + "amount": "5.63", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-12", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 369, + "company_id": 1, + "user_id": 1, + "amount": "6.71", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 370, + "company_id": 1, + "user_id": 1, + "amount": "6.76", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 371, + "company_id": 1, + "user_id": 1, + "amount": "9.65", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-09", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 372, + "company_id": 1, + "user_id": 1, + "amount": "1.61", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-04", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 373, + "company_id": 1, + "user_id": 1, + "amount": "1.67", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 374, + "company_id": 1, + "user_id": 1, + "amount": "4.63", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-15", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 375, + "company_id": 1, + "user_id": 1, + "amount": "4.72", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-03-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 376, + "company_id": 1, + "user_id": 1, + "amount": "5.86", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-21", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 377, + "company_id": 1, + "user_id": 1, + "amount": "2.90", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-22", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 378, + "company_id": 1, + "user_id": 1, + "amount": "4.71", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 379, + "company_id": 1, + "user_id": 1, + "amount": "6.21", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-19", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 380, + "company_id": 1, + "user_id": 1, + "amount": "9.24", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-14", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 19, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 381, + "company_id": 1, + "user_id": 1, + "amount": "6.20", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-02", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 382, + "company_id": 1, + "user_id": 1, + "amount": "7.20", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 383, + "company_id": 1, + "user_id": 1, + "amount": "5.25", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-26", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 384, + "company_id": 1, + "user_id": 1, + "amount": "2.60", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 385, + "company_id": 1, + "user_id": 1, + "amount": "2.48", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-05", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 386, + "company_id": 1, + "user_id": 1, + "amount": "7.49", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-13", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 387, + "company_id": 1, + "user_id": 1, + "amount": "5.46", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 388, + "company_id": 1, + "user_id": 1, + "amount": "1.53", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 389, + "company_id": 1, + "user_id": 1, + "amount": "3.19", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-30", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 390, + "company_id": 1, + "user_id": 1, + "amount": "6.03", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-07-29", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 391, + "company_id": 1, + "user_id": 1, + "amount": "9.48", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 392, + "company_id": 1, + "user_id": 1, + "amount": "6.14", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-16", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 393, + "company_id": 1, + "user_id": 1, + "amount": "4.67", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 394, + "company_id": 1, + "user_id": 1, + "amount": "4.64", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-27", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 395, + "company_id": 1, + "user_id": 1, + "amount": "8.69", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-06-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 396, + "company_id": 1, + "user_id": 1, + "amount": "6.07", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-09-08", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 397, + "company_id": 1, + "user_id": 1, + "amount": "7.59", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-04-18", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 398, + "company_id": 1, + "user_id": 1, + "amount": "3.19", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 399, + "company_id": 1, + "user_id": 1, + "amount": "3.28", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-08-07", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + }, + { + "id": 400, + "company_id": 1, + "user_id": 1, + "amount": "2.39", + "bank_id": null, + "client_id": null, + "custom_value1": null, + "custom_value2": null, + "custom_value3": "", + "custom_value4": "", + "exchange_rate": "1.0000", + "category_id": null, + "currency_id": 1, + "date": "2020-05-01", + "foreign_amount": 0, + "invoice_currency_id": 1, + "invoice_documents": 1, + "invoice_id": null, + "payment_date": null, + "payment_type_id": null, + "private_notes": "", + "public_notes": "", + "recurring_expense_id": null, + "should_be_invoiced": 1, + "tax_name1": null, + "tax_name2": null, + "tax_name3": "", + "tax_rate1": "0.000", + "tax_rate2": "0.000", + "tax_rate3": 0, + "transaction_id": null, + "transaction_reference": null, + "vendor_id": 20, + "is_deleted": 0, + "created_at": "2020-06-30", + "updated_at": "2020-06-30", + "deleted_at": null + } + ], + "tasks": [ + { + "id": 1, + "company_id": 1, + "client_id": 62, + "custom_value1": null, + "custom_value2": null, + "custom_value3": null, + "custom_value4": null, + "description": "", + "invoice_id": null, + "is_running": 1, + "project_id": null, + "status_id": 1, + "status_sort_order": 0, + "time_log": "[[1603102363,false]]", + "user_id": 1, + "is_deleted": 0, + "created_at": "2020-10-19", + "updated_at": "2020-10-19", + "deleted_at": null + }, + { + "id": 2, + "company_id": 1, + "client_id": 53, + "custom_value1": null, + "custom_value2": null, + "custom_value3": null, + "custom_value4": null, + "description": "tasky", + "invoice_id": null, + "is_running": 0, + "project_id": 1, + "status_id": null, + "status_sort_order": 9999, + "time_log": "[[1604059108,1604059109]]", + "user_id": 1, + "is_deleted": 0, + "created_at": "2020-10-30", + "updated_at": "2020-10-30", + "deleted_at": null } ] } \ No newline at end of file diff --git a/tests/Unit/Migration/migration.zip b/tests/Unit/Migration/migration.zip index 959bc1525a1edb3dc4662dc0f9a4e2ddc819ed14..27bccf75b6c33120ccea5d6aae11a4a122365e07 100644 GIT binary patch literal 309515 zcmYJ+VV0xHj)l?x9z_lTFxW60gYo=_(EE$J-Tl^jwdz(nF+@m5M@I^=P3!qLJ*V|= zUZ?4ATKZ$}kN5NUxBa&H?>wIG$MV^?zh%0gf79%z&wcv*EuTJj_lN)ey}qyG@p`|P zzt{X;|6a%I_xHM&`|tI6KmT68*Zp^2zwh7Xf{*WYz5b46`TDl=_jmlZpDQ2Fzy13? z{@(BJ=kI=P>to*U`|o(a@4xx8fBrt}_WAo>+v#tve5~K~@A-VaAM1U1j_cU|=HuG_ zrq6TsgJb@i)?@m+wq^Od-q-zj|9-!}Yk7YEmSy*Y{qh`_yWf`A^0%M+?ylbN$LqHq zf3J0O&*$t1$GQ35_xJC2xP#yC`}=dL=i^>o@BQ`D&*yyo{Z5bnd*8?3=Y0SC?RWn@ zf9Lg>W~=eJe#hVR{rp_C&pp4M=N6zi@vBc;3_j^6x zf9HJoj`y@azOVWFcmMqK{(Sw$%WZ5gYju6D@89RWy?op8d3=B0+ZU}?_jmj}>igx( z*XQ5&`LzK*>vujq@Ba2{*Xz99%hZScaV`7hd4KNoH$8i{;A4MquIV~ z%5~0v?~{Ri&zlWB&!f-1|J;vzKKtq6Qunf0=VN*PeRjWg{+^q4dAlJu^#2gYFqvEH~rn;>Gpv4$?pBy-u5ug_uqHl_s8}7UEIL^9f#{(pI2YG zyZnbGetz%SjoGypdkL794e9qjM-aTTlfcx{ts`*~EGH~9f8`941E$Y9Ye)r9tE}z@ZSe)tk`#xUtvHZFJE6cbbj~c@A>iJ`*eTn%B{}#+f%kypYz`Sw)eC=Eb;X>{}|k7du~wFzMUtN zx{h`GTX)ZUdg{k-`Mv+%%kRbHt^M?VZT!t6?DyJ2yicII?C{{n!rs1Po0YSW zVEOy_9BA6$?hJ=+U;bWhn*#elDL8z3!oS_7`|$00Zx>((4D+`gHq>stpf4P<@h-q! zw(sw;tx(=YCRbVPzV-Z@@0R`PVcv&5|IPaX|Gr$~XR*)UDG)q;o4;8)zS|FA6Abq` zNb~-QgXeo+frm)POM%Rb+5T?m{r(-(vD2J$e_AGZbv>A= zJNRXA`^>n$`-@o|qDByYzx~DuOZd6n7kUnc4l>@NgTJwy{Uzp|9Q{vtv%i;}h5~Hp zcjQ7g>Ua6@e%S6ajNOjU?_u-V(CYHpbK0HsGhc-kltb$)z4GbqU4wl$zQS7wo2 z-RJcB`_7+>WqS^{3wYlCxF;@tz4-69VEEgFozETof9>!0z7F?nb%(+IzL19H@r4EC z{)8~$Wb(NQDnBhg-{KnE?umZy@5MGehrk4+m-FP8_U*kPEYFX{SwwIty%B9n1d2n>MI& zY(n|IK>_pt-5S`LseF&qf3nfXb}lm>21f23@}DpE%(qzBc3Z32zulnfAxwlIqVDgo zVAHi`3^PQsc7ID)=PuUA`?$rFf)`ZUQ8fm#XB*GM?;gd~?-Jf$fal)b^K{>^goAJr zkH5`tc5toS51KuG6F-6$t;Wm3zScgBk?q$J;6d-tGJnEnj`+123+%I@pa92osaLm) z8+1MXcJhUfKMO^kZO0VsubTu2oc((LUGwkrus|Mg@qkbT!Fb!jCB`EX@yi`AS=jOe zj)|}zAlR>oE*^__XVe1UQxs-!`{%Ljp!CkD@fVT!zh6-Jg%wll!eAGlCmPKY9GMOpMD8cn;6|-f#BDM(vhA-k}O; z2?}CvGneFpj32vx+@KnJm;q0r?b-!CG359=!n*Iqu8_dxVO`ne#Y8bg{&ulWaZ8Mv zJ=={+BT5S%+rRm8>r$LXEx0&<`uogaZu+bqX8C*`pO>FbZ>Ykkk<`s%|2~-3`hLxf z!S0{)YkMH@?yB|sOe1NCU}P%W&qu`3;S2cv*WHWQ0RU6kqWer27kI-{YlHi6y~lK0 zp}iYA7g%RC1&o7P%xm~OZ7%=0kH_bnM1vntu=^`76MC23Pv0{b<`4|&-sZ<~GreDA z@jUsZAe0fh6q3dCUhH(XPLC_jKR@HK+l3E(Jcm6IQ)Ev?5`5QX*wxLWPKJ3Lwic7* zYB!5GZV$Lzr#uSQKaSOHOhLOK5xJjo4TI@e)o%m*WAIBpi#_`2Bs>zvYnUy-Qm@;UDNL zc&*dp{VgN-KxJf;!%A{&ZO*>ikE=*B35)Iz!vl`oKp5)T+^NqLaU!3d=s=e3FUS7P zzW2RyoM#EqdwTiZomt#ZcX0gh4Qt2*4*qM)_(%NZ#eV+eSLjiT!`R^gf&gx$bNg4^ zKfATp#227)x9cW_qo=&gV_^^RgGnlLp%wG|o&60Ke^0UYmY_c7$;JzaP>REO7|a)e zw|UsZ-}*$8pMuTfehE((1|BSo*3D&hvTzLi3q$5&BeV}g!F!5 z+&A8ilK7%f;JJI4WrIU|AickU(eDW;kop<_lhb{1)4%89?w1)*;A@K(_1I~92?|b$EH3bVFeceM!rPYzmVjc~#;Rd>hkcYF$ZO@Wyl13tE2y$#r7ft? z^BckaxN!@?u2#fm5SH)kb1>hgMBYEw&QxChZMu*3v3(0W3{{}w;@5iu50|aLK_J6R z#`3!E6>stp%oG$9NjOEi07Uw*ALa;X=d1X3uqL=@Ls!;5|AM)vHGM-%zU8O)7alxI zAD)-6^PX(V(TcNnboIr&Vew+I%LhN!{(HO0=LL+8>AUbtYya5^0jE%jU_9}Nx1Gkg zQOOtPd#{DXZ+gj(%rfYfOj_}l4&6}9=gPYhKe-p9n>W5vu zKSUxd3XU_%=$4qb&$!eJ3wmD6Vw>DEe-#Km__LU2IcZmE3hw?AcIKNm?y@nz0qZ3G z;YM`p=f=@w(dA}lFSss4<3}Vdyz`i@$Mb?TBo(-^_~VDT=R!a*zHxYJ-gt_GeG#;P zD*4R!Ctro-c-_to=4Y@pN0sL*x5hXzToBdmH1}P90-I3k0p-jUr zJjE#55(625Pi`e&6^TEmyMoL@Q7PV>I`a+3e~Yz3mhfG4$=`g3s3ESt2U`LoQU&l8 zv;2Xe$H_c-GE@1z2yfz`eY--v+;5qz+D)#oZ@yAw>U*umeU87e;`5A0+}57JCtpB# zZDZj$-adZgkW6BcJpRACir3vR2R(uU14=ooUA5w`l_y_6i%4wP@f@LTWMiTgKo)1+ zZmIs!11>C#sCeR?#osS?ew~8rcNcJP!jU~f5x<8&nBVc(k<5U?t)-kix3+uss8DmH zpuYF~;zN5+gjQJtkrTt_lG4w-7MXoh7Tx!RH(AN)Rhlb3^t~wEJ@Ke(yFu$eN8wnB{Judj?hG_zJWu3@JE&v{PwgXrf!-(|BUY^S7? zC5qU`+l@<0fg2ym6dzv&<%Kq*l-sK3e1e+RWuBneN? zOWs`^eCO;I+*hV9tjP(-t9v2;f@^vhhzMz<6yKBG`&upp`~LQ2Tnb#TBKrf3Fy#zn z-8c#C#dE&28+3~^y<#`-5B&g)`cLA|K(1GE)>jtdiOLPG5eTxY!-C-+|jxr71> zds!vzVg-h`ZQ=*uF0*ET8<>YB1bd-^;&n(u?va(Bw|qYU#rJHZL|#1ik%8z#T6;;> zN*-^z-rx}Sk?zD z<$a)@jX&Qryg$UtP2kElKmoN7Xu&WGiSMrQ5~3$R;#Sk_JNDbo>{%1}p2+shq?VY% z2R;vd$Tdf9AQ-+_j^tL%OS>TshS?Xq|A@7V-}^geS3aj_O1V(PFB$rtAz^cm`{LrS zr`Ua!)Tjd3vJ~(yeLHTO!R^^SlR8tk&}T_{O!fP;x~CgV&W}f&-^YUcNn}gSPn(Qs z`GIV{dQUkWbG*KbxPPPA*OGZB>Tm@vG<)88_Pcn9CucuC#}Sv^THze@gA_>S|*nPG(b^)*ZCtH6!zK;L}T2OHT93~KpbUdDroZiGu&(h|NsjwrzQDurs*CHmX zll|GftoL=x&z~y-1mLI@m&Zbnn8jRPM*e)PlwTB^GrcCeZ!baaS5Ak*vA?QID_xlW zV*Mr-5{CI3wFaw#Aa4pCq)B!?>D~lGd0E>ylmyp!K_r>f{rqhk1vfRJbQt2l%8@R_Un+k)KDwdTk3madPeyW%83%Q{n!l*E%YRYz^ldpRFa)0N}d(;(pE zIZ8|AlQvmtCV1t)N<_TOQ%d6cat^UcoZzXC$Qg3jsk}!NlIU>By$G@AjcE#G2an%v z2s84$0s%Y#Uy^4;39dcyJPH~|TtFN!TH!9)D)h!4UW(|e96qO`(&h0a7PfJn0XMd9VJpucvwZNHqJtBQPzhMm32{Brwiw_2Rqh&kHUksS)%=Eq zJ?6_D*yLIYe7RCG`m35P1D6qqL=2MGB{=(a;8PoTaMART<{-w%jG?v$~^|VU)HwNl8c!0Tk(VzC$1pXR5Da-Tj8!RRA5JkCnP- z`5^41zm`0PO-MM@T6L~U)d+Cl9bu zXC&riNQ~ICT@cgN@lHb04F|11dyi6Fi#~1bnNQ zyh_a_Frvn~(1$R-e{O&5e80UEz}w58y&Qj|Thh^y;A8?WR7OudvNNL@;Arjp&!5o7 z--OgnxT@Wxs++L$Q>)-_zG$9s3z7moF&KeaC2@icN0!(H!?Gu)H?v|vj$Yg@j0B%Y zwMYEztbc=!1SnpGJBkgQ^f#&ovYjt17n~%+pg@r@v$XVD;07jR=_b*zaY9~~A(e)5pX>#`MfJ=Rn@ww5>)`LRrQ%$@src(laW^0 zkJ6>j3q?ephM{wNbp#jXd8muH_2jx9-xn#%x~nSlFWd85faTSd&qFE(WicK%3 zw`EOoB)a_6Pcvn;R7?CRAyR|{S}w2nFL-I`QO5=aoGuhqClO`aEsHJftMg~1|JCg; z4(s*=s>J?n6PZR#CJITfqup?0aXtICR#v<;23eu{LDWKXXHNW<>khq>0pt9cx0(_= zSY-sCsFi{&qya%W-Ag=*AGD47tpp5Jsn(AlO-$;SyuGjZ{n|=uy|UdO#Gjd2#6_wA z*X-aIhr6g{;*tFjum!aGU*0FtUq7(tO0|3@+|WwI_XSPGVGvX)fc}uXR1_^hs^zTkfCRjy zA`(t)Kw|4&&G18A@sWXq3wyqJj}CyS3(|X(lF0+)m#vGMT+u~dCP&0O>+>Mf_>ECn zsh33Tu@F0zZa%-WehVfb%ksQ?^{CBat4q2+(GN8h#;A*5b;Njk(i&PJFxT=R-YSdL z`@wL8_jT4k1g|{@D9|EkFDZ!s{w8Y~j)O}H8+7l`2Q3I*8PaA4g$f^O#n&T^OzjTu zBvXNGTcKVpe;Xt}^O@;?uiycn!pAoTcV@+!7-DYXG!`%EKT3XPnaz7wpT@#-gLdHt z@c$V@v7!o*KvFWLJ}8m1equgnsu2FKZN_dXvk5Un!Oi{@BlBuG^J-$I|%6d{#$P z)mQH+CsE2|y8@(S0y+kfO5zr*s_$#XJBb?X^drwBM)_WRL6{ZoQTcQqE2%NYzO6Q1 z!O5e(Td*@}jofJMxdzMTB>v`eQVM$~uYCc_R}AVItsoyGov zGe8#Kes$nL(y|>-j+>D>YjTh75FH`z!6`h*lT+qupOTTLoL*6TiQr z)4VZ5vK60ak>o4Lk>3T8Y{;{`;3SmSW>CKkL04Qhr91mQy$8u2?#da(DXgW?=qDQlF6R@O?JoX)(R-) zW&4K?r=88Z{5bnZRoNfFSCnMCej@a?I7+hO7OtWr55+-y>?P6UjHTHubfK~seMx-* zS)s3u@Q%@9@PgNgLE-%jghBJ^Wulu2@0OkP;<0=O2zpaJU4^R&d_IS5K4xF%$*nWJ zBty4M^8xj~vqc19aX5JZR$J(GJ$)?VOyx6QhAVH%I`e{|U>^FB-fkS&4m!h>HIi!7#v1T(^Z&-71!KYzoQLE zjKgm5;v{cmLOQ42)2eYW?Hga~XQyO2pi0bDf3w}U^xa(vO86h-s!c=D z7I+Zqz;ep~zB&7%ew|n|`W|$-X6BNyya_;zNP~(^DNvya4(y zdOKYO`h0P8H7`~?pmd<V(7(>xs&DD}CPk()|Vli|iw`VDt_AI2Fu7}ow zugc_yRvPC6YWM88z;L0bjIFH5q#l1I_tpoh{i@;tet_Ws=~<}!4z(M_ zRLn&Nc}SRVqhHgOEEmfTefgb3kpFO7Kh0}q5Nh4*h; zUM5P^+g-vT{E0`$R==LF)aICcH&PG5e@8X0`htis;D)wDx3wf7O`O*C$nz}wH5V#T z>4ZUxed^QNXobq7qZms$^U3zj@3$c%0ME9plz`wydeMVxB zrVW6c^eioK<6C|8vN5h92~qT2AFs>5v1vxLU`8VgeATzPu3-JE5h~i~d7-cU<;1uN zDTn@E+>dQSIQ{5D&(U{XYYtbid9@>(4K1X6rY>``>YbNH`%j6YyYm$IQ7w^9tBz(0(w z!XaOUgo-T^&$+r#X~t_MPAMZwrW}1?lln6DHxqzLM6A>;kqJwSK`jX%3dV`D)Am?q z7uYn{vb8}7N*^jU;$}$x!V+K92K8UDTlDO(4HAQu0)SeP-m_$2FKK|i`l;iw1X#cO zWCGLV@rRs12o%~@K}ilm_pUq-JFGL0D3Z8<1_n6pQD5~VaYp^^b$K68{_E%imQi<+ zwIVNq>PRL374jeUq#Va>Xj!y~FWLL1@t?0sUp*QDOcTENQD!auv~T>J8(5}EZAY_t zkHDwZL|*Fb%vPU=w6soHc2sMQ%!Z=w2Q@GxO*(&s@iommq_Wd~AbkTUn$PJac0rm3hkl*2S>fq2!554Pv91l< zQLU%%6{xhrMgv0NXtD^wSQo#m?r&#~cx(!WQWWS@`tfWwN=A_eY7KZEgR^kGBGD;bg$@sL|UuEaCxx(!vsVb3;CvnxbzkCX$%)el+eRaZ6{BZ=Bon53&{ zowD{~ynm;+SGgc%qYKseaNx3&kqeP>y--NdxqUlFAz*s%14z(f#v(S#<*5VO>2M(REbHKVho}Fr)uRa~dx{YHr zk}5zwzJoI)_d-{3D@9Io3w}@wl$M98@b*K16w8vqty=1!D9(D^X#jw!2@~ZhHa|88 z9iafnDb>Q;(^UN~1J0h+8}&+y8aWtx3P3CU{uUm8qy$39(1H%9ULk%|69zeP%$lIf zQ$!ND_Qc2t2Ke7cDAz43))ri+$^#x(5FP@Z14C?$ACVI>c^g0y$RU6)d9AQLY%WYgU{fEc(Xy+Am5sJv&xkhwJ8 z?x2_FK(Q4(au(@a$ z+N)cuBSkWrj-(F3|4FPPF$UkEh0mR6p0bHxqZ%vY>s*4o+2=ZYSl{}Q*@|UQrRE@a zA*YiLKaTA5PUlh?Ko(DrO05u?YKY*a$o7G6KwL0aw>2?<6YnUAe4JZpcd#xJCsdan zu}iNdfb|)-ltW{;|oO29~2RQE?tv>c^i#ABffeZ1b^8sKUH z5S^t<^&+Y&uqO53ha8SI)s{#1u^)@Ox}Pjtw^D*y%;T8xI}-!N+W)NL;9&Ls|#Iw@IpWJSSVbC9(W)C43mNw{<)z7r1plb zJU-1M(c})1gf+;(P01(1QwJ7Q2K3i;nn-<&#t2_oCsVe#xwC{EGDl{2b&V?DM3C-@`;Rym$SI_sfM;FE?N>yl?#F|A+fX+*{PB)n}zoU7R4qIxnMUUqNTgUK|Kh- zxAT%{wtTgiC)Yquo`UOmdvMg+OeC~C|UG@UMbtR0O;2~z;WQI zQo!=ibuLZQ0O%^Bv+9K#ex^jT1$n>fz(~t&zu2v0X!e%0$b6pQh8!mL%z>LiVwjCTi?|%DdPPXc_^UJVBeiTKu)A{5*7=XtPc6q|b>>^? zG8j%;fAF zm5QeWv)}6HODeXM#fA=@pS!>@=JO;l34H03^fl!pm+J7bmQs!#q31zRrKVu1OKJ*y zc1)?QuuO<5gsZM5Ot7$jM9xOdyL^9fsstBJo|vE+1%m+bg&U+GAATl7mLF+&R?@JK zE})X6?3bJ{f`3X|0+UR$zWU0A&0TO-DQ}EyzsKLC8BUbL#PWRu2`qbhog@&_lp-Hb zB7z*&f7a2sKHtkjS_K|hENW1SvQ;RZ-G+n|?J0rTzcYJ@9iBuAz@uqObGe=Iz*eoy zVVp^lcP zUUBDL@0u-RC91q|&B^MDAQ5nvKg14oL|5io)tzIdt(tWJEl~)PMf;}jONS9&QY*Sx zBWtSyILgpYhFa6~aS=jD{ym#PIF zZ&!Z9{^yYO%MyW^kgy|YPep(Ec?ef&6*F>``ilXB)h+foY(ntU7FvI7Epu{R!+S7= zI%?-vy51-ocY4$b3jLyK*S{K`F{9Wz9o%xy;sF44}XRWDjsW8CQ?1JTx6n8sRsGM-as^M4Cw7J8=|E(I+qcCHF z@e)VbIpTtcQ5&(PbT}64{yG9K$42fN24ty5=Pf(vz&`7g8tJA5;ZTYK!Zkh#bc8eX zl3uK@(pow5nJAI;0uE(fagYK_v3B2QeJu(5gLBcy3JD%-jAR-qk2wScFh}F*r*O>y zL0*BMb1+^@LUQ>ITSG$kr?F4pFz(1WQI~P@Pfvz*;gUE)A;H2rB0^8BXH122tP8|! zG7n7}tlvlnOt5(~p2KnQh|!Z;BF5@6eqlmY%M-Onj`hCi{LI$Jq$uvAjH+nLkC08V zto|lLTj)sDQ_NQZxh3v*-UvG7OimbhEI~;UCk|H7g5Fj`YG{Q}b|eA##zAP`*17u8 zKb{CJ>2(pqF+8PCMLBUy0XFIM#_#J9UMDt0gST&W5$aLowVm}aiU**WeFcZ|nflkL zgKZSpr2F&;LA_}<*{OLM#ac%*fJZ$iIy8hu!jB^f2*%O_Dz3x7Mj0W|9>LM}5@=3* z3kehpk7}Sy`5-;#=ig8;)Sy#?22@pktVK{N%!S|vE`a}qNLRw85{9hOq9S}ue#L-l zS4>uSPE#2H{*5+>)_z}sn^GWMxv=BlK}wN6T8#q&M(W!#rj|UB4t*$GvbKd$^roY$ zLpX#aa#}FBQ;w+U{k&8oryXRBtdhUcJO81S-*qHElybYuyyAzJ6g*Lw=op##FXa`{ zGV{{-bcY1wGpNBOf{lXP0a+g!oNYHbImi{6#$mZMkEy<9g$5Yg+@r&30$)TG65UH+ zY?Kn1^{cW+$Z|st-CGwvjjknVurL&?E)XfBj12Opbcn&~YOLQ{3F>l322#0D`vE$A z;dSGn-K8;=zkxKmAX1qWp~S>LF2O+yLHQfAoiVS6CUW_&6MakyfYMs~4cDU(NJ8q3 zm*DHOBy@QWUi+&F#;g;|9))-&E~}e*7>}x6#>TZ&^}CF4v>lC!Z9{uS8KURnpw>i* zjwT0o@5(eqaC2F9y&1l;V{`u4zRntNKf=%0b1nM?wdg+!*$Vr-K0Y>Ejxi(>OJ+u{D1eh zV`w~OG`BcqQ9Q?Tk@Ux?HoFL8twSvvkH(Y2UfhK*5!5VY=hgV-WDSTKfhF7+N9dQG zJJUA#`EtnP#SUM@)_`Rn@i)_naMm&BZmyA8CzkWwZi5zHz-51CRMeM&B#hF&vpj%X zYdimNr}9qNS@qR<3insKNy6g`P1gDmLFLJQYGILt6Qvu6Koqs$UtF2`hW40)q~Fm4 zt_r7?(>>GS2o+I3HJ_Bltj?r2cmP$dScYnYs}vHDW0FO!*<YCx3Fkuw2C z=dTdRY6KV30ny64SI z_CMo)b)kQ29-+;Vnxdv_6(?=4%TI`28sDHW z7ujWoEU{YFp)v}uJO?#Tn5c=vIUC5|X?IBAiL|b{1ASj`(jC-JiAD0km%lB8x+HhN zPxkE8)?*yOSe~}qG{uq-$WM*o1`hVN0bqEdM_`xupF>GRiO6RsX(;?SR}q#G!Z3qk zk(`y;y%aoZjCqW&vI@ZLmnM2T4IER1xP!P z27yN*muc5`<14G#Yzc3Si$ydpL^qc29l{%2lBf9G>ZDjP1sT(%4l=R>^Y#QKaILOZ ze<$vP6}YwHrR10i)Ezy}4?5u?X=Rl3Fkh)8?AxZ1(^M=nNRp_oVkou4 zH3Kni^2!GtMiVu-lzI<*u_A1;njB>e9>nk@Sx6m%3x$CWcNJ^p)4h%aBh~ z!(6#jd03ira`h&&6iI)NfbPe`O7TknHz$NBcdn=R+~+z&?&KApp=P=bMnjVEfIASB zL78WC`_B<7b+URk$I5IT-*?#6mkYZIrucIaaj3NvNPby&k75;xQK zS6tAqa*6Cz#OT}bx1w`#;oLM4LD$+o==|s!mfKuJE&64tTthddcvMi*y^;zhKj(Pd zueLmZOz9}P%sRJ$J`+&HV>$CyJQ=r-OlcaOS{9&zHu|z{_fU`=?-*%^7a)`k#HTHr7c+^w9cjar-m0OFZt zN<&s_5*Aa-{F8Z5spk@AIs0Pcg*QUVBwoTIFxPA^xleW~r&9+91us8sHZHTZA2<@v zD^FI`Zyo@?3k}84PTV*S;VJ8_5XE~KUZJW@->uhb?JVsWrZhDkz%pCienUei+-S~| zzI6zvlc1wXw7vpONaC+?J*C`(1tGW%>C)N=8A`rk7%Wlc*7r~=(kQ)s>)vTHnbA4EL%U%X z+W|WBjK~S}gGQN~$_gXO2UUNN2~*P1RqPP)(9dPm6kaUr)xV(F*|A(r{m9NqdqB&| z5z8A3sd}mzX1%(HT1B^pY&S90Fe_d$`kN|sk3z;$PaDP650X2OW>lkNhYn$jAA$%A zlN64_$7VK!H0(vUD=vD_Q1Cdq<02~>F+f%d+>8ZrS4@Q%5a5Xc#v92)4ab2N0c8Jw%5$n=~ z1BH%llh$EmNTV*=aOn%dA#eXwj}a8 z7vtMRH43)G&TnwZ63TX~lk(TBSCaCT#E4QmU zDLpT+4 z`uVVXb~M68p{V1r`opTO(|kE+sxE~&R^4#rjD) zS7}4l;PRtNmw}+_jo^@Bit(D+DlsCoeMrh>5mf)+=&HpLCK2gHP+j zkpx`*>EbUeL4f>iOaMMcKYF3Jk;%K`R}>6ep$;huoo-UIoK10#tUL1?Sug7_kmMS6`{|0LXTS-~T0D%>goYrZ!m7KrL0BGZj&79Ny2o(Nr3dv%{ol z3S)?tkyM>0`8W2{^J=TFCTEkW{zV9PD%jVIC%<$y!(uonL2E|&EoSmtUyR*KEaAh&ID2z8Ttk|m)k>D$Mz;~;szylIR*&@$V zH_cv$?$LWjo`f1+Po)=v=w|RmSqWje0N~mFot> znvfvFP|)NB4;@VIe&}2~2g9UA#LC7BI^k7%v5D>Cxu*n}f>(=8XtWU2ez|z*Vg2ZO zm&{#=i&Cv{q^9jFtGNwq%yTFdP>%TwmY{BLg%sgA_QYqjwzGp~b~#hS4HT*TR34zg zLd;8MnbDd24Pp7<_s+W3VNb;Yr_IyngC3HLC#cOy%G%bEi4q+oA2R4!YR;30IObIq z=p743+?p*rJWCcpL_DB6MBL{DpmV3O@Oh5N zKv-v?9M}zk4qjF1YA7;5_K_p7EZJk-$rGMZyA$2E3b_Nw?*3mU!uS=TnWvD$7_h1JiZAA^t3E)1M({Zc z73H*VYzsrFq|5dN3{rxAM}S9#{lLEMYAi%L z2Q;g?BR|@>AHG45Bs(_nJB?H${%O#ru>$o?4 zqiJt4U$;>c+c@0ebR14Ii2?dM#oFeFd9RNSl8n|*t!I8!sh>(F^%jXUi4UZ z1uPS>P+jF7PpLpC+aY2(-QI5D*}GSA#6THMmT2fk{D2D?Z{dj&7HI$SywNU(TBaAv zSj@!nfXr+hAkh*n1`rjTOQ;+Y3-T}`qE{l=3Qw-D7iL#p=CycOn#Vd@T}6S!scyGC zMYBgp+cxO)#6 z3)cZG?};&XFjzaF1#5~CP?h$*xV=MGJP*31>+wcHH9HX1xTN6UBa%AUwBaCb&jJ)ytfawgJ`YoH-LZs`7Z_0MF}y!R?ehXLs&Iu(l*u z5SePg127NG`(dZ;F`=H@J4c|Efx8qJ=rmZt-jdXd_%haqyYOjVhQA=K306WSO$Beq z@aQkNcPFGBpG<(TzdCU00%4B8!xDGuaz*PwWI1u~eb8d=++F>m)HJVUzfh$+RziMlA_(cBZ5T$i)Fp-Iv7MqCKh)DtCH3n1@qx>a?B>sMF+k*>#Jhmyuk|atY79B z@;8qbI|oa`mFM+DhBE5YDvU9!`ZxT*CfmG)RHwU@F?_{KtOAY?7pe$s-}u4;Ky`;$ z7Y8={h8hNuSUgV-q!TLH$A&d3*+yeBfGSs0h)kZ)zpMAM^qS7)&}GRF)+gwaz0An6 zM+LdF`f3H_f%nhOok+lAxx9j|XX&68yE4~ax>}64&Llw~qZ7?WaeKh(@yF~egF33e zLAdyV9vh3uLHtczI91(HmnwE_N*`HzM12&_P5=N&i4@eAi%}Aj4uf|bq;q$COKo31 zCTuDs<(y2>d9xomVoA-6-3-YcBEWDhv&}Ou9 z?XoB~nDlRKly_hJtualG{#N5_)oQ{wZWBdB+$(d$i^Y9CVBLso!(#N@;WW36qPIjU*@ka)6%4KUqHZH%IQkS6zABM`!s=qCa<}MLa-qe+x4lXfD?b0miy3A)@kG8-Uax%V;%AybjiYcKxGI|6u>J*gMU*6G+T-lPLI-o!vn`QBlIj*(~mpd*y$MJ zgpXU@&NoUP%Rh3&cj{4k*mzBfsS_Y5pw+KSm#Wvr%ce-I6$-q6CAAEyNaJlqvn=?G zzLt()_*K-o!ECxG_(#m#EC0mgF(<*eP-kkau_fjegBUYu3Vn;YNecoN9J}lu=~^_ z^S^v=YI0+;M>n{mX+x)W8=W2T33e~{!ziE%xb@Pxnl}3Y+{oP4)htU%T$yR zNEwK59ctP)oZBf@IN#kPSVV;a^xO#-^bMmh{6l1t7vRqlEEouVNM0U+n|gvIepFn8 zGo7&cowTXsUdBKk3MjaX`j(HZ8CP{!C9nEfEfZy%{b^xOTN00q*I|F`o~p!3n#be# z3(RRY5E(b!0;)g@h?Jmf16eU^!Z!f-ctMN?5XR8BWz}GJ-^3y^KVx_u-n%rq#=U)x zl-Ne~2EX^$Hu_z>xZ~bB;TGSUfSqPe><&t8#R~PKjTlOGUG$3mF^;sz0wg^3PkybY zF8UgYM%PqXhyJh{#w{$(vVtYa94n|-SK}Bb=`2d*9j;-opp*+8zI-&;zB+qlucDxe;X*!J)cc|F@Hl}L1l8X*|=Rl=%^{KU1YaWv(a@G zk*4}P-Ct-cL-rdT5-^L(Zh31D1t>6bEQr7HOEcyLS5jat86vTHChQ8pJ3*DEuiwH% zr6F))hmGP9%4CLR`RvM8#Fhly@=!!rduLu@qnx{77Hut6$?bOFL+2jd(Hlt!zhpF~ zQSH;l!+h(agP*&wdk0{BF8?(I-gi()cu!8}O_6~riLl8T#<}75!<6sXuv|5w4mWC3 z8%~UcQ%($|G0({J5^E{e*KRVs_*!JJ(?_l!qQc#LQ9pU)9KJu8t_eoCc)HkW)SkjC=?94j=KlpP zO+AI0p1fwa@$!PTbAg)Huna??yjKBH(#p;`i|nRk?9@3qp?AhoY?3GFO=S)i(F1uuNfNMgH9l8U z&7hJ54J+QO0yXh6YHP1w1>w_KZM$psP*)o2R%Xjy9C>n+CVZKL!Bdo|7=M!4r-Q9a zXSGHvgLyJ+O{)Yvu;R{FxLrg{Jc0+}Z8>&vVb(e7G#q@cCP(k9%mK(K^1w)Zx4LXx zW(a+>7piNpPJ|Dw$dk?7lr{&~4pRE^CVPmXV_pkh7c152&O}qT>7~9SvTg5dPv@-V zM|qUT-%^w1Op(u_4g0X%OoY%**<2xLc7*axWzh7;1DY^Ifc1b<1qPxXSpmzi6MCwizxk$d=OV)7}Z~L-zl|pHwfJ{Zf4#s@TT#4HH`D?w`o@mPoz0Q7# zu&Gvvmr_8dO>BU3l^vKdK*sY%NzA4~G_xz6QWt{a8yc!lTf?F^0| z(bqct<4lr#rg>Gv^TfP-0i-cAoi&b1;t|Z2-q-3v3lme5x3kWqFvWVo|6f00nP#en zDfiZ@G4lRjE1ZvPUeRS|4s+Vd)H!x}ya=IlPdxIb0#sKd;U0WiDou~THo+39UAvuo zVf>KZuT=!mVuLsJUPk$rh!_ip?Vb5?Q6oA)hG9OycU0@~SUI6AtN3Pss{3oe`rKGF z4Gd)jScaNrbJTsM_W}8-(o|R0AmCt}^vjbYR3eyJ3Z0`b1lmr7Dn{qQ|@ao zVOZy$qS%5G6p7%rWwlZpnCN-OSaqrf|6nT4HYXufSM$Jb2Ro$HSWO= zj7nlTzET&6)u=J`y}BzQmEI&}=FYy{k)i~9lv6`p>YMacIf?iqQ0tpxO_V3gG+wAy zUz)i`o;<%C-6EYFa^5QV_a-jh&Bk@4RM2v#hTFNJ#&f3`iPP-B$(+gqRb-nO?H71= zM`0EFid*sp>&hm3UzT2gGzwsjM@W7u9Advvpgtq>H$?GRY61qmD?hmGPN1a|IQ)94TySqVK7jMN#Ya^Wf*Gy9`G zbl?LV_^^14DM*K}jt@x+Wo`94@&$wd+hzw=a;mgyt;*v;5UI|FN{YST@1KF-AmjA+ z7;fLpOt3EWj?3%*qSuXb+`p@!x-~1nCoKwTX##!Nt`F47+H^e-=_&scx{uxqpe-X! zM)b2i<}ns}Ww=qqepfkj)acs``!RF_IKa%F00ZHN+5fG2MOH*ify zBwt9d(rClvF(7zg5!KIAsDvjIiRmRK`aqxZE#!=`3Okq(x8l1@+1+E#Gd$?lltD=c zqj-?jX-x;_-1*r{XrO<55~tCfWi=8noC^V)O-a-5O@Q|DD-;`+^0;1am-li(W>#zQwE_T~s}rik zIO|MY={+?@7Gm7Jolxs!Ng*CK=Jsg6koI|+`px9iA+YR;VOD47&Sl`RU3tr$c3eto zMfWL2c^jO?)+e4wB*YXx9m*5vD{v!A_&s}!YQW-VWqYw45X2$MKX8zQUqgqR$I}{g z_(^L3)vEH!nBC!&rO=j)A$L?CY?eGT zwa_<_#3qaHwS8Cv6$*6?t0C3r`>|%}Ou8eZ8S_gRlSSk{`it$k)@}i<3M%$*2Wx`S zI_?L(-piEi=IKK?WX^I{`fx@Oy=>wbk|u!HO@A)tQIHLJz(|97_bn;S^VWeqMj~2g z_w3oMA2cJbLZ4coMty5c&d^*?GLWupLZa_=r)a3f9y9!gcWXQF&h+3S69ue0YB@O3ph03Z%a&)_D=oAP-DybdfmX>qs2a=#% z#sk={Z)1O+7a%v?iRMX9Y>b(AnkB%-m6cmP-4hB9pn|YX^a>4gfDPMsmD+|7RFOhTeTg1Z~E7u z-mkL{P8G=JXRMoaK1y`~Z^=@U)b}41*AtBxwq-;P z52HasDCeeX#Uim0S>a2!ODx2vY;6a%jn|XhQoj>s+_>%_x;Imiwc#%rzZDAVA)Lgk z$SLcX@6+sVOHc4D+*U zJJ9zI2GLo{*!)wF_HT#|k0OIZvoYqcUJ@8BCy^r4!#IxDVCxTSimzg>eQRWZMhEsB zzoJ!p-o_G8KT6Z=rG6w)w|UZr33Kt@pG+hcr>QH<2N?C5ElcMr#%K6&WgP>Hu*fkF zIVC|PP6Py{EJe%G7~e9^X*NGc!-qOV@8-}X1^POoKKjlg< zRAQ2gUQ{8a1v_2;3voX~(k~#FkGRH$qjY!2JDta?J;WMtG8>9Tw+w`Dt>M znL%{rG8R{1_Z?`Y$@)stMCqnbuE^p}=?82YEh}w7b>W7?{{mn1qYAmM)3hb$m`6(= z{6t|J{pWygOk7)Xh9Ag%WH~T?&C7rQ~SH zFxukvw7?R&yj~LNYllhY6FNB~TTiDK4c@HCE*qbpNieSKi2)^j& z7v5!USrfU5fTO$5YK&0i5$K81buGiy5n})-iHf^W1eQfax1l>hti6kG6#C|#qx+qK zQD2qVMfar&{?_fPskCa%Thc~tLsL`633GszVa8}dE}u?Q=sg#maHAXqhrZHTf3l&f zErhe!qY+J~g!kPwKx@3>f|_EnQ_uuv{Ho&aIN?DevmebLa(dKlI9|;DTuP6Z=#s8% zoDA@tzVy>(7kQJl=jf#OJX$yE*%1(Pb_-hrTyrK=Gq!AK3<@agMFQFV=tND!^I>tO zw-pG^K&Gj&V_eec9n?+)i_^ZI&=&u*TmQ~2&h+({1hf(edsw`53H(S0Xa`!@3NTc2B`9V6a-Dnuzp~nk}87pSFOk5QIe;8b!(=!x<(-FdmX67y=e!GA@bA-cs+9X zUk83Q;#x3g44vDFVmBq%fm~07h;ba7N1Y*$H7Olk&^H`W8X7m2*9~zxS-3sYNI}5K zki3^t|3Szwgtu~2<7&X+m|p1Z06xNNjW$zXZBDc_S&PEx?8^PnFevJ96;rnCqD%Ht zjOu(h3t%dB4QV`PSK82RZN)@yTaovGb@NZK=FWuBT0Opq>!HO}9kmt*q0~3RS3#fe zE&mV$*lDQZtVoicH6_={lN+Jrjk&=MPa&b83wt|_({U!W$M8LN+B?=!^c=_YV)~F! zqn6Z7T}TI*$^|+iu8N#qpM`CX_kQ&%3=S$Nsia9fF-wm@zjCA=z>9DAvfMdnrV0x& zqo7}ZyRJ3w+4Bxm-UDv*Oj!FGcE{N?eW{G!NHmvkK3rLhUJ7Z8<4B~~q|Ty-Q}u)j z{KKy`@46nK-mt}h32z4V^X}%uIgrspNarfUh|@9xwXjqx(NAJ$lY7bEX!*iO%FsF= z(1=By^HAPj?Ip(J<%0IS^Tetx0M99Y*TXU8Txkyy7~c!;4XTi*FeEjCXc>J-x`j*C z1LSX_P>o7hOXgi9Y1WW#40%Nb3g}RoGW5~t!A`9j^R7cJS)_T_I+3_!r#VLVnBg@5 zuTe|Rm-2=27J~Yq^r{vYTIVKFPH&9N4g&Lfz$u;3M-QL+FXYmO3_P0XPbl-1RYwRI zZe!y!-qWCt6IZsO0!EXP^zB67xSD2#QX|H%!Jc2X6_B3r20bwS^50Got4+8-Gpn@~ zq?fR937>d=2vpwoLfuMh@!nw}rsjXOw(1(S@6{e>_xVgG;hdmH-vl@ts;*%!i8xpp z-@6RNig1@6;Q@;-mXAdYg%7CG6K$vLLM;MIf&`HCzy)a2ktbTrU_xXOa+YkEtq6-2Up{@Wi|lR z;4`^jg@2<{frkU4`pwuWbnPmAWdpt-p*Z8vMTq3Fii4O7KAe zcA+}4UL5eR-p_0Gkr^mj>y_|%b`5JXavIZ=DlHE&Q~x z)>>jfZp|&S0`@`xv~+Rh4srlJ(9(E#XYOr9`Xsu5$2vj=JHZFaM7oqn&5@s_X;~~%MYp`5Qxj(g=4<%i$*O*F%e&5Nb*MP zrbe&PoS{zO4r;}e{S$=jbmuSGb76v|*vncJ#_M7=AVsIe6lBM~EnLW1OKGzXe$n2; zuu#9&7!`V&+oiL>0}8!Ho04TnjRavqqf4r-V74B*Is}zdp#L|h(W7d4XHDtFe%EhM ztYk{wt1ym?jUyf7e3{k_i__3FQbC=l!kB&658U{5WAvbu*G!CO^Eq^j5WqueNPveP z>p%cnTS#y^6Db_ANi$x%O)G^M?bCKk%E+0q*Z-< z<_?bBSw}*MY~-J9IErPf^2^<8)Y9gSYKbm1<5t%qf*NQo>Ev2jE@= z8^dGlOa_9{I~N1KbV|UDF-pO?3>R>d21A$6$n*4I%+4LVT_teX?hT*3TdCGq_L>0@ z3^`5JYjXpTFFDu?AiJ;)&^*npK#(1@6`huK4v5ZG2~2H5xbvQ#|DuovM=r#pD5<l()KHjdEwjY(;pGQ97bAKb8vw(KTMCxU0_2 zij6Y!pH0m%ebc&hPMG4|1BS|-kH;8G0XPmN454Z`n8xaqUMo3Xr{`4|^$nN9j)kb3 zc}^%3FEp>$T<`dh?IxkC8{m`9)J2M*s97;l2$A?;XCfzCGykdgDa8((<}9tX$(56o zKCGVr><_!@K)t$4RMOdXx7HaVTO`6}td2<3m&P0!qCCFHWHlITRyQO<)GFTO0c~xo zi#I7;B$p$ux*!r@-Nxiq9` zZI@gnv~`n|4M?4GLQD};l4C5NKC)gD;7PfGd@erOw-wZr`Nn)HN1?1=P>T2qsR>)x zVqI*W`|Bm5$Q(l8NQS)3ci3cAqs~!z0bP0HNGVc|`(3$T^RKWkqdgoji%R|*;oq1XBB!uz2m-qjXO!dJnknD@C>uYp=4<>Bha-RB8xeZln*5C;YQLwxWhG7? z2-|uO?77=ea)=n#M{7iEM*8(W@E+y6k;c#jz-Y^W>1)aKq#bP0IY{=Aj>#ybl z%%eApps<1JsjqZYM@IKp^TWo$Lf_L`F&ZIS@Ym4waCNsq+OarFQ4R-te1PI3KIha| zXF}kbkk4x!Dy;P8%hL%_GdQH-v2en-46LF9!yLpPAg6~peTIS72k&iwn zq$8mL)CAvAlY|t?n(B1Ii>lP6-c+@BgBn(RCp)v&4AIr=1jKZO+zSugr(Yzp%;A@1j zXd|6pAF~zG0qb*gscEv#R6alL{UlmstPmToJ}BJvJ~@0t)acdc>IC4hgWs|_yQ)Ou zdXP|OA%g3j3Mf0f(kUy4=ndl9h}~a09IKF>)EvYgtkrni*TNzQ&I(#c9E+gC`CXb; zK}l0i#NXzTB2te;Y!!BlvAG{wj@dzHI5fGZJ=iz%b3m^1G$Ln?SRb-dsH&g_JA|On z;V@67(6SwPpd{iCG_UtzShcsU7;}UrhPE-PE6eaOz2%ObH_rp2%U;vSQvA&tCcIfr zem)e3R9*SG5;5~pBtT9I7}j3Y1&6c-$ysM*?594NGD!Iv8^;V$#Pp#ibL0FKKx0N; z#%3;)JuEAD4Q_HK0K6LG>z(!Y6O^9%S!PY!Ix@9AGpOu}&B{6)8^ZJV~PfCM2N9NJ>O zPPg-l;0BMY8mZ1{Y)6$Ebc@KziPZstx!W+1CUF#kn9<<9+|3tt#>_*rc?1o;Bqphq zJ3Cl9%!!@2q<5wqCs%Hr5B26Y(o659;83MTVgLc#952Wy5Ac*unI?)^KV>URQszK@ zrzEHn@(*&a=BmJ#VohoJv1k%@68JQ}7_=%m{{axcXEtDBx9D%q%eCtEg4|a4M43 z|WZ)YkP?bow0!f>_VM!PFW#YYBqSRc&^~N*itkGW&?Fgkka)kV{+;(s%G%Hvg5+mAA(@m4=YD*ItCofN2x2GbvhO3dy^ zk99A)gaU4#GbI8NHVDzjY-l`UOd8b^DWG+XLh_8-u0S{;h&4X5XrbVEQ$BXp9jHim#Qp zkN+$OBUF??`g5ClDO62dHqsQuXoBj`cRX}h@7C_uMLvWd^oY}Ss$Z;iP=@pdoV7G z8<2?s+F{I>Px%zxt*-gL#YP~AfZGp{i)Y&zo`+uvEOrKrG?Yi@8h7@NE@VOgCqP&n zbl*98apBio)6wru5kPD@+-pczu#{Y6kRg4tTr!!I+8rK%b((~nt~U(Y2?7piF<%rR zF#8hVb#h4m2S|h5?m1r9^j5E^qU$y2oNIvx=h9$195*7L%%XCb&aY~zT?}qObVHgs zr*eO-42-%{bnhDJ*{+31Z>Q2j@7}@V{IKunH7;u2VnwZlMiaVh3LOnXM9%{hYb8{OVD*g2 z6zD$11vPr6(o8^I5cqCIIOqQ*KcgpAYl!|P;fZF49j=wIckU;^R=%*Dq(6Cu)JPwh z6>`ExHsMG{Kw)dgw1w=&=m~x<_QKs%?0!ud0&{C3sdIZt0wSm5bk$2NhWXd0cXn+M+@F#VmiowIT0 zXRMn2PU!$pqq*5}Pdt(RIk+a37BSq5C~1Zr-2ILq%osFc)n5|hu7Azt-F?lLT4#8Q z$Xp@U>bm>%c0jQT^p0*J9knbuZyx!KEEYeEHPzSGNpwf3q;AcFx13zE3El)8o=1+S zZlxo2s$Gy_yj(%=zBp|q zor{U84UdwQqb@^75`ZdrfI0e5U7cP+K<@A+53vkbN=$q>K^#7lnd3u7DS+@^583N+ z;{qa6bz(h0>`GDsEu0(E(8&%eyL%^6&c_tr%c}F#Ei8L-im*k$q#R7fzO{LyL4dLYRfskCRm>d62|Kw)r!R;G!a6G`sP&i~}sDEPz4s{d!ngeO{UEo`7r`Iuje(6_zFI^z%o*!W; z^2<(->ZU>rJC&?=vwQ|!faAPkB-P%OtNDu`0c6Nu^OCg1JiMV!2YA}|*u7>5TT60O zfVRnWW{G0@{TN@`3(y?Qw1dsh*5Qm2SA#UQ!$LUvq7H_*QeE{p)Gdrg1<29M#texA zY*(XJ^|JUW!&Fi8xhjw9&O9I~Ry7Igk!bYOSU;j&rYz83z1h{_Hk`i#S+AtcsOjEy zL?Ql?%<<}v#;q(BX*8Cz#Kr;2WATy(t(w`;^;m>lHz5zoOVEO#U|468dE8i#SwmbS zyh2}qQE$Q=@18R9QiWU#k2)fYkRK#j00k4Dcwj~uHKvg$`yfwf=;Ocf#G z_hVD6v*KEPb0EVUSMfI~$NMT<*uZFdscZVKy&_Kxh4OM!QOF>w^3{wV!i~0% zF%QMaV768_srisdLOL)y$vR0pWCEbz#5Lae@7-N^;&}0{aRXefmOfH0c<5zkQnKD_ zX*J07Qsj>K6GGWRErNzL_>E#z?3!*NJdvNpEpxd1zz%**jRdNKoSSC{(lPUl?1FpY zLaDVzkn+5bB{s>Z0wdftkgxe`RvaP4fg?{Sk{jwRxDcIDH+4gWlOHvu^wl|LZwiE> zDUh13I=Th#Vetsyz2C*9xJSJ`)|B8^r(Ji@5H>oiIPK-!^bPiGfJ%lgN}3r|DHNn} zwQ$YqDl>UMM3rwPu!>C{P#2xc_x=>+Bci9)!nV;IhsrwMX(kYi6T@E!0+t|albk3e zG(pvH{UyHA5jH<)RH^t|UQw1X&a0&WSw3|&b3dcgmc$#-cx?)4$F$VinUu1dm2{qI zE$gL)cQ(U^$V65pVtjl$)*NU}0zVoZ{h4?+e0lRKq zi;iy2)X6m|G5@VdLn{>3I3e5!xYJ6M{ z#Pl*s?}6v0Rq<|vljz<(ZwH*6&=lz^<~V#O*i>pX3pWEcKgXzg#C1$t=tQ%ch)6sp zswa}8{0ULLcfB)vo=A8q`q7L9X79+9$4kSZZLCV4k;xIDzV}Tyx~f<_x_oLbb^5@) z)K-SG$`?K%a3dQ{$N?x#E^vTMT=2RP`vF17FZAb3o{Gc9JMvEL;73i6viY{G<7Rq| z*h~G?)XzAu3&6ylygX&RU#+29qD1F4a6NscbiFigefgHXnFx|8@K5%`o5T;KPomSo zI6@_bWt18X?k0w$A9TF9u{*uT8227+Z@q!o?ib2onD$O~m8!<)s)Kn{HFV3~lQUa4 z*`z5k#A7vi(>b)x5AqbfUvZ>z#50woxs5Id!pC$S4qHDugVU=b=j3XR*}$vX(>bUo z3einWpqq`3fbD;ny0`R1t|bVg?~FzQBw#o~m-!FjtUn6d=S5%Jt%j<-^BNhMNoP!b z_Lj~wJjX*u2Czn>c&Pnlm`YyD16_*=alyERd>PCm+Z4bQFT+Mf<|`=2>;&E~)~@;+ z=h}Dx5GH$IPN%s6%&UOW7acPeO5rmjT7R9NSWE}eN#zl?&X*&)ca4j~iX9{S^7G`cWg+nPA~)v2_y-;lVxzCk zlWJ@yb@eSuqg+Mvfei|&_#!%lE7%(z%}T&So~zA5xEK$?o=X9QDhbPR;DPo+`Hl_q z!YOn(E&j7m*Pn_vjME9$)c=NkGMgw>{SJ_9eU`2u-&>hY0>}p-``I%(TAp{4La}S3 zAV&c(CqaN4jwu?}=elh&H74;Pbn9F6#plT@!s{f45o5%$CV9wRvfes51#;2y)=gv! z4kM_PL}K|jNTE2eZ&u(7@Q z(Z`pc(W}WlMMZ)*2;}Sz6?VJsOJzHEERNOl9%||ZZS3~{xKwl+;@vyp<9JKlr4;Ag+P6hh9q(0oN;v4BuGmQFkQXNGxV2b5thAs7Ez>;@YASl?#{Bq;F43^a6u- z(^!M==E-<-TYHLqs%^8)RJ>=tO6#|e{;XG~Ida6YTB^YXVu5&MDj!0KDqZ-Pp1Jvn z7I=Bf@-3EyF63PhPU%*&1TO7wG;2bh;$6Ktd#{8oV$|KsP{2@BZZm1znARwJ&Z3MU zl=zgTMve8-JHo!yg1d>Nwo}3N2Km&+jh)V#X(LhH^v_)HB7I7H?DHy|*_5F0X9Wts z*U(LpogF7%IL`;$5e7b|^b1ci;mN;&JAvy`&BqrM!gxcLlnlK2)B$M4n6 zYtwii<#A09FJIMv$pSIl4OusLq7SU9uk-dA2I{ipXj-QU9|~_ zE1FF6w92+ix>TWypj2c>RmM~lUzy$*NNH|-1zMC+A<0c@gl;CwLL}=4lTr0XwVyr3 z6p>I80TqKDyr{HG!F2}0l#Fth^s>2c7|8|9h2nK5X=dgoOnU+;mq@hV;F-y=3z65T zjsw&nbEbIEymJbDB|Z?$|WUOZnZ70YXyVf``&sA?QY@s8-vc~bh_0#3LpVE zX{`hhqx<+zcqbDi;!c_TKWs&QKYzI=z>*>$*c0#}28zvh*aejvYQ+DP7RWzPMk=g} zpE+F?uD%$+X9-~B>(Cj!WD>C?3^`gI*77N5TJQu$%dQcNXjYt%ntu@)qN}{;!Z$KV z^fF$Mm0ut;z$lNyy&IKChMH4^zd&ru;}w?})vGvX6$Bewgvo8Suf}qMNf+;mE$)`? z3RuA9WL0_?>;)b40SIjN`o=MgL#3WVKyn0N7H8G^W8EtipxAqqa*`N{gIyD^wE_l2 zq@P`;`FRx!B=E-yA0eRZIlp*$+Xa zxNa9(U)B@0L2*cvG{Z5q*i7~*pJ_HYYH_gzP1btN*_@>)gr9&EWbu3IOd+H~3;Je- zUs*3R*T>UMDioe5uJe11y1_%1W>lp$tUT?3Gw5~_rc`dF73^~-Zr(F{ko~g|hY&(c z{T|0Bih{n0{^hG=7vwA5JZy=70flfW-NzP}Ty@yvn@RQc1hW<;#u6CE)Fg5>5U^_* zec`k?Ta;_4g3nv_{?04`m^k5a{c6fqkZHfJY;owmie2%LOa!6Z$G-<-G)e3Yt^4FU zh~5O`o1BWVNW@JH42JY8RjZ`k?TeO%GdUDC4w`ldr`vLPBaJIduohY-^v@tE3LIRS zd3Yk#2C9I=%5eP!3M4a9-IN)pE~8Diy$KOU-cy&FVSIFd?dTM&_>|?cmp8}kZ!1LV zB?EppB0+5}WrEkCxj40(V^`Jkm31u`%ppbTtV~vxOnC(Jz1<}<_tc>75ZrEx6NrksFLzP9^hT;J zfKdL@aubhR5D0f*r5wcIO2k%1pXsA6_!gv=c4vb2L+;&M3fXl_mHvwz`9i$cEVTu* z0*ogu)5ll+m*i;nta8gbsy4f~sC9%;z?^Fn%PudI2dI_FO&y{cChzrGOAj-p+L_#2 z+cI#zrH5&N2{r;vL|;4)zanae8FgE@3*@w-H;4;VQWh=7H1E2Oe+47o8|RL*_dt=1 z(S|+g$`WdAcmVl@s0S*F4Ak9Ip^9eGxGaXTa7*0)Fh*Uf9^Nk;fleCk$?gwk)6pTP zW)$S1YY~BY7TmEa5S0R!GC8AVm`Hb?i4@0H+rImFEK%QK#soo1B_o5XT<}cdX?X>M z_pXzMsS>b|WUm$NgD0=PkabkEX+JT^j@tun<3y_G8QCCru49Si6OFVt(uyfD^^c1( zI@&>07sBghMmBJ_1l5$&C;kR?arU81EQ6*nS#R1XHxqOuG=I&@xL1`%=k)=`*Qh}* z5#v5NNM^3tCkQEcoBS9L<_sh@e$N1HuN7S0U^aX;*Nv0g{wN~V`YcFYAL?daKlmd% z`3Rv}M|)9<9;hk8B(!HoEUahE=nUFsOu+hf>WL$qoE%u!ML{*xFN=pLr=)|XNHF6U z``aKIlaT~P0l(rskH$-d4EHIyJGveRS05z%!sNEFj5gP& z1W8aclho92r7S5bV5Qx!e=9x%XF=4Qy=!EBq(%l|@N{xcfSS5rGvl-%6dJJn9H0BG z7AW1Km&X{h`UhJFhokK-+d8Q2gueArG>Ul;1TTzI2Xjn%bl9*vofctx)xn1OZj&wq z>f9Z@l)!-CDycbLnH+}}&qHV>45$l2U?`4I@R2=vdaJwGmxg*stXbfgZ00Nk7nx%S zunJFfbO0tv*Lbw8SK9CZrQ|?feTLQ(kdmgcJAWBaQ`|6A`NmIX$zPIFSsc8*s$g-6 zF)y5TQ`R;0P>pOh<{8ha8Lc@9YJllixI9oiv&j*!hdkiTZVILX5J{6Yg?Xc~(yl{;xkcUI+KmOKfvnz-nJ2t%ar zx2p%@GtF}|cS88v^BIRlVteyOk}wB?n1TsNm_G2U?}d61xTZhq?qXUbeb?FF@- zBv_LHZEONZ%79vb6z)SIkXd{vcBOpZ^8p{h;4Ml!=AT}Ku%Z;XMiqo_<{J(t?8cj@ zHWnz>G7e6SN){nwn$T5kgXGUK5mEY~yU4i^z4fmubJ9>ghVd0&fi{?t?oC#nEnZ3{ z*fA|x?$<`Ue%U-8D!$eL1q6y+MZ)-In$j!~4k!Pi&r8|fl`U#%6s^Johtbw)HC8WE zUoVWdx^7k9cDWqnNKTagGF8}xafI{Tlp)?1du0MLd+J%}KGAC&rGXecXIPc63~sAG zjP-FJg>UqihZUtUxdGh>gv#X2)7PBpoL3bbvi&Eq)8kq7A;h6co-C_5V|61CM28)@ zPen4E)t#HJFC|<5w8=r$?M1$=J~CZayw>*E-dmpHuM1P zsd$j1*)}|}*(GHYZ~FJE30L?s3^83Dn3T?#I{D8Jebxd3x0NWbhse?jm)w{a?dUSO z_CS+PxL!Kw?44=sHY(`#wPNz2?%d=wu>ik~XU;=tpOFWPNzM>g=jbxeRNOo3w!-o0!>52 zHgv0Dw67o3iefiUl_H|1aOK=k1azMg>VgXAQfz|}fx>q=4QbU?`lZUjxYaTyspi#e z6&IX{o3NzV`@wBd|F+XxHx~3mDNgLj9rOFdJ6@?MBaB-NXQ!yVVh|UyxMPZFzDMryUnL3D%hTb~GVY(EZwPGH@@KS6yF8OZ@SGhgT&?b`_^ zAk@lqJZGIbWGkI2XM&Ex<&v5Af5k~7jdMcycuZ%LR~R@~G~W3?0BbQxN$bc&2#I-CK+jZsxb5N~kIq>1WQ z>fr(jW-Dr(wd<+7m7K2cQ+#C|x4@7nYbxV-D4YnP%(9LRZ~% z{fKCTQo$zVC{=8a1c#eD(cl4mG=JC)x*ql~;6uDCc&$Hxp*6CMjV(2Ia!gf|bMY#r zOHI+wsUJ89nt?1@hTs(_v2um~tY*F4txCe=-bNw$K2xB0>LB6;fvNeAHn1Z*;1D$b z3fADMnzDojP^{;A7!*e4-yi4==4wQvgM0XnJkxG#XVm>7fJpo5^jX3Ia+In6Rft60prP3ouZ?*=NE< z@zuAAcjNl{JeF1gu;C?bRgFVt&!G!ra1s`f0S zkHZ&%sS>d!hyQMec@r=j{G%V1>>4cSS;o{}`~oy05tZ!{i?$@#Poi3Cj2TB7 zUsUuf@G9w&Dfxd*y0A|zJW(jL;p_}83@1rV5G+xW$_P+g=hD7%R7d=)9FPPOu9wSKnQF>E8EI?`~3=f z$(1z$^3eF%mnh8w8}UJ5yiTc7sQiAN${OSJ*BSy1BlEpRrqGYlaB)s)kfVEqC$b0T zrgZUw?eOO~UKjc0F}o<&%XRZ9Jfix!=z7;34UFr}m^UN|2g4mTUKOBbUsfCZpah<; z?Y0URv>U07`Da;mGx$Bdq2g09lJ-1Nz5fgdAO}q}#C%Mom>XpheFRCTfi`g#>6=72 z(nV)gO0fuD2*zF&0Ga#9K)vCXpsHG&JJQG*jS|vVsWD_nL@Hh0f&kp1@VVy zu)wl>>hdG69qG}Fi({MCxN3_e*fX~<#rbic6^oIyd4ud4ZnAK}H_0YMH|@~!3ao`r zR*^!{AxjTujW31T4nt`-pdys0{#qSEd`_)sqe3wJFCVJWJtxw8RGk}kjmI3Y${nb(GTe*yCgkbE5-G1*YC%!1yntv+8V0g$&L?Cbu zzp5L9<@f(c(>^rZF-yHrtxck0&*YDm@$m&Qup5jI_KMS_jV@VZSNTV&Ws|jR^kAgT z5Fv!#7q_4~Q&G76ZG8&oP@HJW10XrP_zy5(Ub9a@1yMt**IcYjNjg(N7E)^oDy$)W z6XKw&Fy?KU5DJO3^u`0lT;8MYKE~VftN1@z0q0jdgof=$Ihbu86>chWDURzWj+pS@ zk375F*5kIk{%qt4=b&E_-n_yv;V-qs`k<2K({f^=LEGEErJL%%u2wg>@Uj*MiQEcR z>^RD0Vj*(FH4wkJ1$Bs$YW7s~6Y&oElg&BtuilM~um`JX^Na7nzpNCMJm(VFZI@C& zWm`Kx)1p^UWNOba0^_}E85Q_0J|P(wKf<4b165L3v-ow&I_!884j|dWj}~v#x}}eR zcrRc5t#GZYl-M?tQn<@bMoQ;(^xeg{WR<*hPEIo~GuO-kliY>-Ce1i@_n|9*g=;kq zyoK}1Ll|M0`(&0l*gT@&V;p(Jj?Nqnk#wmq0ArWu18O4F!D7Be{j0_)5WRnYFvISx zF{eft$dveZzt=5n=3Y0*(v&VqM}QyV5?eL13~=E3&u5HeM&!OSv?;8TmA5)yqC*=k z@0=^^&?B6zc>k#JJcJT?;i^|{zLe13T!Wb8wum!O4SOG7)Y&k7t-`g3BSM|e1ChxQ z>9{ydJn5MsHhC)-O_>zI9fbIxAL%&}XfT_3xo%;b3F2Ek9^{nK|HJE(F2UkB*NN!& zfPFu}NK{RqTjDKW0Lh8WBk0zop@R{8eV;bM?mz#EEcL+Dz)GGnA z%%MHTu*~t0opZyTB_=H9z}w0zh)*7^XQ_FXo-+?0(lKg4O14)EA&TXy)!F1A9+p^; zD-p6_n}J&IoM45r3y=2W8x#%IRTro0qzST60a>1cJi`w0R+_+;WbWPIyY<{kjS}x7 zsJ0XxXHel9P$6<-Y49lgt%^{_+7H=q#V5!Ri$ zY1Tv7LyB2?xOdh^m!-6{X0JXn4BNs7QYimkhn{>m3v0;gtt7kL34ICXE{I8R9eIf&f>CRJB^ zczr>1`HUyPbQCrg$!P7N>?nsYJo6~j;OJIjVbKQR7xiYPV8{(c(aAvHBr5nNqU$Bl z+><8-9TPLIS05_l8$rOd2KKqdzyJvLw7t!^GdWG-19)>T?bgN%7hl=z<3B61w&@;d zGMNq7_c9jZ2 zfe252kXCi#rFhLbF@q!pbK>8q4TJ$hmjYbd|67j8tb>O0h=D{!uYwbpTalJ}7W-GB zo&o4F$h}dR1*r*x8IVCVgul2+7L&ba^yRSyEZu75V4l)1n~xX6*<8-1r%Q+&tS2J7 zRG0d)T;nHJ2vP#l4;$_+m{WMb6<~~*W^&*w8=*7?7|!t|BrWBjn2G+0j>Al0-<4g|&DdjF}f)4`3C=C1*re zkgsJ4q_;LV`ME+X(E|k*l>4C=EqIdmhAJ<)Ewl$n)dXu z2st(CtmMa7Hl7FJIg$=Hq1Hyh9@WK-oXyV!6Sx3)Mu2n4PgEa~z6iw+IGjHrojQYN zW;PQ`9Of}FRt0=D?c%@P@Z1)zva6t=g7Cu<|@OJ>q*zjA3q? zu4wEzJr98d!TEoUMh8GtN`V0=<_LCBF+&W+;{oDeQ8HOW8L4|kmUuhP`GP%xH-T>( zZ_}J2PgQdVMRXd%Yw@3VLp#sfwlB39T{(|!Z_u<|kKB7()$9+JX0+QA^$j0HhiM;G z(BX{`sicgKUY92^7( zWbU98MHDXzGUk*Gs{qdxmsYVk#gi-{{4Y#v^kvCjStX6ff|IYF#ec}i1SEc#A?`#< z1FNUvY&@ESZE_HR-I+G=GdMLl5L(6mv*|@`;^}cMX{$BB4Pxq0Citg%sMk_rg3H$r zW`v(7t@O+HR0iY&d=YzfbznFq!p0Sl?`dern2Fd#Zv(3MZ9GdCDuQzRQ9+PEpNkPL=4vV-Q|t+bY}Z61{A?O;utIi&Z-nXiy|OV%N4K(~iZb@TRwYBqk^9{nG#HHpB$|kFKrl;^&3c=g zLhW6=PjOBW4F!hHEmMPIvulqvN7z2THlM(F`isbs6~fifGlGFz333ccK$7A=pi`_F2n1bz8I=p@b7!`gfs6rjm~I4WJh(Tij-Y+bFlJiIeOf(E!ZX*lNH9~_5zCBm~cTo_g=wwn@@ygcwb4jUjw6|FqLEi z#FIKnC78LYd4aXLWi-V`ZPEnuPH05+6`u|MDYh;5!~9gYipWyk9w)>J>FMIeh_Y!5 z?2wr_JXmwQ?$p3aBZ}B?arf?3(<2CJwo?@34b%st*5S+wj}#)p@2l`SN%!kt)IZGv zoN zX}}xPvL(-V%qPhxkun#n0stPK-r)kia=IqeiSIMv*@$9H!K-g8?qp)UkqS@dKUvHF zCWHV|7Py&gw#QU&B$Hx`q_`xQy~#~*`SFnV1LXLDzw0ZxEk|c=udfuyNu1njbGOW? zV25xQ=p{7(A&aj4V}Xc=WEj|&VtE8Y+Ra_De-clzPDR$Tz;pGPKS?^!DvJsI^;X4o zZp+KC%ErCX0KtjYsu&ACkKOR`1}xEYISyA8hb1(5RMA#u$hj!2p~k)(o~RN9x`J00 z64N6kUg}5brW!gy$cwdh>VE1`aJ-y9|HgWIs#YKA1eQQI1<&4x`ah_jDwOml`%DrY z@wn5iwig4sH#0xXhf{CV(jOd6nT!!&PwSH8W~Be^Cq_PTeq$-;SC#n4TH8C}FOC!Q zMBu=i8dq8$kmviTAgI_^^@d>LiDa*;>^*`FwW#YirRNqC#L7`?d;K6UFgx*mNc5k> zhVPOH4YeF@XgnPh;YmtdBYK?Jn|33S)^FwCX0*5t#kw4jnI20I8I%ALJwE*E#y&NK z*T_+KS^FOZNa&&pK>hk6Bw=<^gyP0TX${WYoE`u9;$Y}XcIQG8{1=h*noc#DIf!s6 z)pT;OB2BY}K{?LZ#HI|uqD{VR%Y&-xBIr4$!Z%cEaab)yqF+Z+(>Q3Zs4ulrojcNc zt%BmPRuGxTMQ4~{xT6=ed=2c{&{7p~Qfxplyo8=hgM2__TD(IcY;yvItNs*T=gC%| z5rv!3RBb}a`0W*}_T#bD=V_iZ1?;Gs)~KV#kWp|m>JYxS2$_sCJh5327n{$(J#B`m zRK~wh8R3ZujZTBe8NyKWTFh+>qQ>1M8z>d*L0+RRS&9~dj!y}U=t#Vw`MM}5iaB}4 z)UJ&0W>mI(Xq~Z!6T!2?W4V3G{u?)-gV6uM4A;AUtq)vBf&7C{AngH?4M1MUIyi@F z4CZTIpQjS9H5$Z(4ezVT-M0}7q#>&I6uue4;X=()z)#E-iI2o#MSUCOT!k0CSOn0f zKT#0eI~03FFTRlQXDxud+>YBo&0LM-6l>Uxov6@qEyuWl-7&5K)$B57!;p^o8VbhxNdlcn$s z8JcOHuId*-5_^aB_4Ig)-nU5-O~P`a+3Ys%iMx30&7CQ|QCU!D%9Q>!KT#oxG~t>; zFo?2rko{9i8QGHmaDyAcr^y}yRKDeKxL(6@y2fzy@<#1(1kQb|P^uV~Q|EdOF!zFw zz;7H#c0*>PUdfHc597*(h#t`G(|GkAw%x#gd1E+DKm|t{GFBl7z(M}FEPQ28Y9)ZY zo3|Rd3Oj~_tP|b*Pfn>uBGZG3Bk&7fbnnY+7_mUITh^)}fTl#~gwpZYm>lY%(qYX- zPNTTf=Q;5v5+IS&fM&7w1FqM%wW^4uz$oe%v3k_0RVMdwYu=@sg6LUV$8oz8YnzF6Sg` zD%KBRo@$G)kcxf0uvvl36PVo?)Z|I6L+9=kka}Ncz5IyrWg{|{LQ_d$;wUs@^?-u> zVAi7Tf4Ds)2akk8aJ~8l$VM0csnW{t^N4=KgGW_yngproh2}o`(-si4f6F=Wh|vp; zBj>y0H6PR7ayzEeI(91tP9hfyfwI6&l)cv<&lY>PhAzD_&GPuR&d5|Lc~I3*Vetu@p+*CW5b`4T^OO zPrMP425E1V1E9Oh6NvaRRW7o>EbQs!kXRK-(IB@C5^1}U4W>A}^0DSPQK zMmrHm(Blbe$JE~#KS$FguUiDFK~2_CJC`|-bQR=UKxL1FrXSKCo3E0+j3C6u|KmbQ zZ1K2+R6kvL^6Lj<$&(AfaVY4yfX|XY`s<_k1s|m`yR#y!%BBvs%tlAKFKRrf1i?P4 zCNARj2}ql0sKCf&ZK|FZ3C1YTlULZ$=bs@WmyHPsqCBiA){qQoK}At#DvwIH1Rnlv zb9+E(9BHwSj>^8W_)nt^zu*JZ)|enwbQe!uG{f-X&5aican{gGd_qU8)(Os!1%mw! z{B94b+3^K;Y!f_O-V>zaqPdApMy_>L1m$s~nPRSaTyF!*^L z|4<}!`(e4SAF}t0R`23Jw!L{MrY`1F0z#u>2_SnncJi`#Xy&ViX*d$(X?blMqBIzB zhSIwbFL`ZOYXBbMZxk7?#(y+&Uq<1M>>z>(>f5$~jRShXZa^88qWlRcBn(}PaLahj zq%i+J6oUS;SLS^MQFm4}*=N#yyY1k> zS$Q2`t^!~xSQ0^LzZGRTKj}GL)z@O)tAGHf-{XErzLC5MbrT$+)BY6VAclq~)_?;@ zDE0L({G}`vv?zLYE`WEkii_MQ?~Bs}~iCsY(~PCuikD!SU)T-bkk|dsVJ$ofj(_ zZflC!>xcQ3w&2rMSlULMR?9if#P^GV&HenQ>woU<^%yd~-a zm!^pS|D#Gnk$G(9z;yN?;J2+VkS!*$G5f(R0odG*Xn{Z9E|R#;2&Nfi z@qyNOeycraih4yO-~4n_31!3SB{>j}x~=xA;frE&dQ^Gq$bn+OrQOH@@um{}2ta9eC*;Kdz zEEj5>J#h{~Za{oO*-edbYEc-`VF>1yZ{qsY4<;H>=MYpnH8{0IHqaRBC3{eT_Ue6g zfd;AYdHfUsZfKw3DKt3}K2Ho6XdZl|YJm+wva~|p`97frWB*_d7_RlgG_K%M;9l0&qVVVD z!|^rjP)r1^Hyh*7?3Ng#Nq3byU`y{0!N=JAAgFAv6VSsB@1gcf>Q&b&s+*-A->GANd~-R08wsZ$D~CMQ zYG7_{#)FkYP8F8b;>y=%=IVED91*@AGXmFSy-9>Z5IG3T<%y_)OUJVWTd%B$AK-l> zX@8p%4E7SxuT2%_YPt+5zw-=<-owI1CD|C~EKPbRus?f`V&qIi zyTLZRT96s*C7h1lU`ZwP{7qc+*tEKtt7*HKog}dv{nks zD2UL+Iex_%y4uz{>D+gIn}O3nbQD)Y-LxZ7I14friqvHzum07hb#IOh|0ZJr4{{E4 zOFiEkHKT&Lg5TGnYKw>@uDM&xfwZs5P#(U(FtEW21O1!=VUeYPDqimT-!?G;^*0F4 zg)*`5m-^$ys02M$#3(mL5|davLO^B=fRDpVYyY%nQUG=v3-R#Wo8{H?$OF-4`U{yb z2S|ux02IR$1R~wy2oMQ?iWUEK%F5d0mz#k@1pHe&JqTebPrbR$o&anAb_RYAVO0W? z+4S+{LiK6JQo-{Q(_H8Wz6$%-8fS%93eg^8=%}Wm)b5pB~V*P6JO% zo0oVffCM(5B<9}##42`+u^TGL)Jj~ksi*om8IKA#z_K7hTE^vbngMEJ8ug0io|75x z(I7B)M3c4Pk!)^O&g9FXF5bgM37R>ymLwVr3*jsOkS7wybqdsvNEmz=#Gat9IE`dMj^si)J-p}sb%yD7PAM1{MR*Y-wMM3wqF z2$PJ}LkpQ&<$zh|FJd3tp2Ore%Uf2&X&UTu`f8zzR4Dj_DPY26MXe#hM$NO6XADGr zB9Q3q9%m(7h-L}Y+xb2kY8457Do^% zRGuhA-N*56lJ9zse$fA&2Iyu=VEW4t_gQHu*z!zgMo zc!cFYS5T&I6{IhsBsuo}4B=tEzd`Dt^#1+A2xRKajV(ly8}G z>fYi<_=AWnGM-%=&M!WQNYeQk|HxwU@gMaim?K$4<~Z>i1D9Dn?LM8PCxB&!&6&?C z6kx-2(fEKuNe}_mUB&C}a#iOyCEVX_Tj5L{lv~xr!zZ@;} z^X%i9Ahx(94#I*T(YQzUlsqR*HaIizp@^WSkm#!B&C5j#phs`wY$%Ig>G#kY=>jhd zn`3C*zIzK#{2uS7sWke=Ty5O{r(?II7*u6jYc&<0qa2BG{2x`$gIm&oRv>eClR@sYEBW|s*)OBOQyBvH_P9@KgCN=N2Vsj+W1YJ|}Y0T4n?JuAdJsbjK> zpvrcn6V3ey&i8I;jQn|&b^7Xi&2)ByP8?2y@1xf3G{oLsE6X3m)plj{Y)=|@S`eMQ zfMdQkJS9CxB+3&zKS6Ivh&$3#7Z0z}dGlHAf(2nl$1)w2xxTS4GCt2oMvr+=BL*JA zz)gZ^9FtRG05<1Dl%dX8yE!)lr}nkuvi&)qu9); z)p)ixGMX370FofTly|!Zc^T+nlxAECFB6pz9aRKX0LjtoKWcA=6L+g6o+=kkEvnDG z(NY`qA$(>JbW!Kf`pQths>lL9;Z^{hRLu_vq;pQATKu8|gY(+NtX!5VEt}IJLXV#( zZ6gePePghtv?97mq%QBf8iq6y!z#ZIK5i7e3^d@J_z0RI4lzDpU`Kfb>b ziKDajQL1nW2YE)hj?E|Yz)Rb}p~kRU-pMKlFbR=Z;2IkBX=i+wmx)!xdmbZ1-F$ya zQW_3GB>V?sReklVf-lAq5v|Ctdo=O(EK(9m*G|3I4sdS@p=`jp)+k0k1fO**y;tPY zy_}o1Pf4+zX{j|&Z&prSq-v;Rkr7u3ydXnHQ#9|8*k&RtUleS6%jhP+b7$IwNe`8M zrhepEGFoBNIA3qMDr4&j>{wG=a|7@u(SuM5oK=Z)w0J%*WHtySY#nyXo?hi|5?3ZD zM4f^2;5LxT^4TVH8yOxh@I)Vq3Z$T@bgRb)(S$cOZ_W@73MPP*H!{cyw?67lkAz3$ z6g$#Y2wiv~ngUM1GjawhbZ!+PvyaL;iWC6;E=6fyd?0_LY1AO+a2+I7-#a{wa<&W$ z=S(bMzY;m1zm`*o9c%6RMl11^#9Kh`Nei|s4C9#-Ov?{wnU`Z2J){qShGLbtJh$~B z7eDFU9Z^QIIh{tHW^6HcCz0~g0i0Zb(;zzD67E{PM_lBCIQ82%_}*HE%{v%Dah?h$r_X{19L0Z)||H=^+6^E>E>pMydo|+{qv}O+(CY z-cr*@4C#jtRYRjtv@Es=izGE~-kd&T_2lDM)Sfs<2BjwNn}HUr9>rGv5M+sU^$F9# zYh!1v|KN42ETig?-7+eOVbTsibzVe8E34?Hd|yH%OQr1OIe%HL65*i!E#|*A+7X|S zhaJS!x#7fCN~LeN2OJZGPC_#eLD{Vg=Ng0fD^LjHh=sjmb`8i)Yj@P)nxT-&!1Xd( zzS3wVo=&$r9!hw2>ki;AY?DcOX-cVnNJ0&W4Ud;62S`R`kPtcX5&5u8XpbYAp|yBh z9A>_`1je_KY^Q4&Tr2^0L;D$M$g^nw@OkFEFiQlO-I*K^s)k z7JIMNk_}t3QWp`5VwyTm=K_fFRF%|BU33r)pD~|MXy4!(yAixc^T;rN_COG&{&Q&U zKaeeh9G}qUSr?#CLMCOOqr*Vk%8z(#rL2&}_+fDa3?m>u#aCL5JVs1jyJ09vO_+>= zdZThFxetJ7cB-CJlKr_7qK{wmgbm5|DVeAYCj^8t0<@=nl~@76%m6ym5$G0JiJTH| z%;(hE-Y@@!amX%ool)-NbnRZOn)O_YX)VW}g-OK?>Y;73iwz;Bp*IaRO z-Jt)pGR;9idd*>GC`?VD3(YCIGfpD?|9*%7vJvK?__yyZ&JnKhQAX0cJkKJ{5DVN~ zirQ!MpGgVS)Y%Ij`?rL(EkI@?GK?U3w;-=(68wOup3h7%Jf0j&JIGW3 z=|^p#$Q_JUVHq+m;dhVr#ejE&KCE5~+JG~h!>7xGJQt)gD6KJ&AJHi7i4I$U?+nP5 z&AK7}d?V^)l?!nRcO(}o^)+eAg$Dex)U0D18)!VUgw@}^9Wh~0lUSR9x5_6pAQhTz z=bo(e7AL9-uu`G0zdW6wjesD)Nk{y$mSFzKcDK_;;41Jsl1R6Vs5jq6&r*0KW4fiO z^VA{oevFLD8AG;$o5ovr85!W1RcCIz6}$mL3M1O~c0-l>xi>vTUnd)NXb-Jp4*3+6Aa7KY#UnLnw5_N` zf3nInzh67ZcrpUeoLAL?CVG(`(J(iA^2`FmW{I-nuC|dC`uth5U)UU)kibjuq)#N? zYvd)&$r&DDV-A zAp#ui|M4>%1~IGW;%Gg}REdc=|A_CJW}J&;irsYvKu@xfpFvra44_X`8Wb!ZKlmA3 zC=!vAL*}8d4KBQB=!6tim)xLQNwz)_+2_rq3r41=e<%sTzxd>C@EI4(o^W=25w{J( zyp;!9e?0dNA+6JqX^PoD9xd-u<}aqen-iQW zVe<;@@4nqadfT7uX_>w-JRG^Qj!=zSVjx}wGe;$Ywa+ycoP63vX$SNjRM+Gn;brn? z{DTBbeuJOmZ!cUT2Pt;^XqAH%$joLF`3&aeSa_vyu4JR6tKq-oh{Ar*H$8vBJN}t8 zH{QQ+#*|2U9_8P-KEa}dnoxrigc0Ek`uDYNij`X|3ZeGP)0C`=c_^tkIpvAv)8T)L zJ~MEe7`Qg(NL`1`XRUUcR8klR0EEJt^@v8x7pHCf3Zlq9Zv7tx&w--y)P~ ziK}=@1O$~nK0HT&4A*NLl;+Wl%s)S192ptTi+=Fkay9#jWoXm@izbRHMvseE!dC@w zbO@N9UaSj`O$}ya=T~EuSfk@#REE}*$Xjvdn>BNbmLsbu4i=as!M{^clhVlSVoOH(9 zME@x&tx7RGv3?;T61=$m-D{#&d-lui-CR-#x~6Zi63=XZvQc^&ei7@S=GN8d1 z?~+836*J60nMdJ$g}baztw;VD4Q+yynpb6L23c^e&e?(;+l%BCk%+WMP^Mo);$C)K$Pf1<%P$e{X*|JO{AoW*B)sOhkbXs!CVG>LjH<5J7an-cS=%4u#YCu!- zJ!%*V2oj0V54hl98^UT1T=S6xO09m=JsBd*|7yDQr_2ok2`g$46+BjG>VxGZjcSGu z7pf6u0_%NS9*JMqoT4DJ<(!2Y@(9A!m@5;-C1NOTeXQ0 zv%qRoZ63`p=C)ZfqT+o8$SF>+X8B-LWf&g(V3flps312-hnp9rUYgeWV+mWg#ZS9g z`D*Kwy&B_DN3KTJJi7~h%`uF}UFM}FUsQnSTq#tLRWbz^Wa@3ca>?>C=Ni?bgUDJ4 zK^*qFTkBaFcow{)o=jo?1A4Y&di#`YPWqwz2$vT&ZVo-313mB9Sv_HLYZ2^6a1aP}^?9+Z z^?#T#P%VMOFq4NfG-B6d6nooGU@p5~(Rg3NG0&O#4?MmK@`6wA8>bw6L(o++)R{uV$?FZpQ%E@x2T1~{7e;zPkcg|NMh z5n=qV*b#M=^RJm1t;hLA65GN?1eI!3P!js&S&A&(XJI_Q zs?e%NDk?B{!P%>PFscz)4I^+a;dTvx^;YF+g!Euhb& z>1T3BxJ%Apyp{u3F7t}{t(xh3!>{PISFOcs{0Otu0ZcXb{y!N74<(`Y^bCsjCTA5C zfgS8e4oE^t9K$2{!F;XPQgD*eZfxa1vDzab#d!_9a4YXUpSlRHenzxCW1-rG#F)fCgNQ~W}ZorZOv5!q4@}4bB z4hK;`b_|A7q*C^8M=0unMa$H==v8h*AVps zpY>5(f*^>|U#E&zM{#?8VWaPx)UctdKR+QN!5FU}{5h)(NvK8&qLK9HbuCu%r~0QA zjrf%INXSk=qP1;`*Ccz1ylHPDk8luG1ObL|3*<%Iq=-z+Dv5JZytBb{M3ij6jM*30 z1COX>qScL?`vz8Ws~15VmLqesowh(3^B%!eKCqOug{!BXWV{r+v}F zBSUE==~1P?&wfv@v+EYjVmEa0_=!MX|2D%7iY+4h=Z8@_WGy@gVuPnu{AW`W*H)$9 zJZVwxw!vfHv8)~gu^<0s6A93Yr92LTZi0L^ov36*a12orz}VA;Km))fjxkMWUdb}E zX)yLP+tXlGuV~X0BJog(n08q_ecD4hxyq=H8be4Oyiz#hG1Mwu4;nNH#3KikO;< zu9*1h08mdB*RV*#ZeY7al+Y+c)89%9dYnAz_Ik7>RjJ4;6r&#v0UJV8ncTRHB1`cf zAj@}{l*#$Cb-FPLLpKfgc4ezVwMU1gs!Z;Stk4#V9)T-cQnn~YXHaZyFgGtc<+(;I zUDtj&bXAo@9wmDe!vPwVwefdxUtD~qRD&oz7qoFZq7lODqS!=gMD8n-LsET*LMJDj zKS~3bXXfEa<5ir@J=(1C0z-ycDAb%!scsc*%4EPRd1)RGU~082*jEkv)s4Rqv$%OFdF4K@{mu~#d+erc354_@~EUG{`@FSgB!3aUf}Er-&9 z%ivYlz|nU5|NYqD1^{e9Rw1G{vdB!|PWvx)UW$hT&tSQ%fGCTKiw`(^7Fg-`n8%GF zSqR43qPu5WoS*&kUWRvIxtxo5nL%z!pY;T?r=n70HH68gAd3a$@%844C#yb`Wa4G< z0VwB$M()CqmJzVP4NBoJ-JpSdaGEe*WCgbs+0w=qzO3ncx~lB=E2jh8xian0LLv9| zX6Pe7HfRjmR}( zV!=J)bHQnFXPl|Am_CK~L(CNaQINtT=Ai(?tO zPPgKklHbl*^62 zw5(B4=vU7p)RY=zJHON^PwR!Z=%p}9zF@c~wKB1ZUiwds1LPDG8-J4M0p^1{7NPLY zW_P-+Y*TzzZgBA_{V2BBCOEu1VwML}Ud|Z#7uJjD&vSVsn;>ER7JCa9?3|FQb~Egn z)4--zKN2;|9$aJH^H5#JsA7%^6NRY8_tl(eq&?Tzk_a)hn6)|9%smZlF`V*@2f`$x zZ=_CR2uIKaLX;qeC)f}HBugD`0l=ak#0)KpF|s3*?F@%&yd{T0vTKM3$KVguXJ~eU z56~qV(aZG|Itz0a7}70W5O`@tj0pIFqn@w+-^&Nsa6zCU>ymj$hxou*(Nc+GJWxw# zfnrs7v8-Hefq&Bm*=IP@WdLC{M(q&o5@ycd4j&niuz?e_gOBGg;b&Aq(=&8;z=FY z>K_agEzRmxfNFAv;TrtlW@R@9M8A-DqcJ6L0p=!zWlITAwD_JnHy*`n`se6d-RS~1 zm!eaQgaJNa>3olMH;g5*U~!#aa1s3v{;Y=9lt_+1n$~DNK1ncZ(NuPWyJHZF2?J1;HQ7u9-A&_sx@ILuqC)tOpYL!J3V9-G|KITDrkUan@z_Uva3!daJLJbUC0hJg| z6T1g54#Ta04>gZMu;@&S%y9zwxAFel$7kLta=@#xeM|uXhA1`vN|Zr~qcI<2VVMvnzw7A&Xppq!okllG9^n*AlIVT{G6?SMk6kuJ5AKo7Y&Cr$H{ zsEb;Iob%)7d?R$@&neO}L?I)>f zscR$)QpEUOc}nFP&$s$pA9W1dPJs1&mwDwE%3{nK(vS1bBANZhcel6H1ITs^#iCmT zgf0Q6OobCSaeVh`{s@B(A~yY1`Ja0V0dGjdyN)RR-RWQpW*OFG$nB$E6;?pTR2ujr zST^lEJRfRPnu$!oE_NOi368{H~-a6wKi)p8@&U?-$U+y{krs1?g5U z3~-!K2)?mpd%Bn5DjR*;AiBnXLFqgY+%c6DHeRVvvTOfQ{43|j$M5{wU#1nF$q15{ z1qukPgi)V?ABg_FLd;wGHOP!47BfgQ3b*u&Go`FIN2p})LM3~-4p(tju<#uo5{>o> zFL8dj8J^xYJF?42-;H}CdI}?slU{~T0?wuSz#Gw~&wFoZDa8SLo;@khMAQcyP~XbE zH;t3pGbr)b#CzdLR1#cHQ%nLpL3{cA4IV&YD*E!hbx9hDAV?58`%n8<{aQXg@u`-o zH6VsdaU#yY*Y^Z+E_J4+fI{k+phpi>JBYm?f~;n}phU8^&^>*ruKQY-WBspvV`nCBbe*x>Rxb?Jj{G4IO~ z(ja_MEdczqBN3!!@MzRq+asVN6}b1KIqGd~l=l#>Mh?;$z+n416^7-tWhc-}@oAQS z|IB1ZZ?0?7--e@aB1?1fL5}g;#XhzZ@YBV5);ao%F*93t0LAtlhSjNqxiV~ME-<19 zzLghj<%ox`<_cF9km*y}$YexcW<>C5EfFtNFOWh^aMB(#^vF<-Wxi0eA>=Kdo53Ce|Ygb>K)E4aI+JQ%?V zr><)L5qI^g1x4&#rJ4O;Ms{1k6u3|EJ=4kF*QhPGk7y%F;!WInZ77B@nZIU?n}f)G zw%CVz7aC+Y#@hsEi7k|yo9mLaSFKW8<@cG$fNnMdR*E&`0^(=u`*B;Q*fB~zzE%Jr**FHT50lLR~BDU4( z#A4=hKDa~0c7>N zFyUHVg2u`ChZu|+&?u;>c%#<>1k&FU3GtaYEOZe0u*7peJf9SxqK|znfOu-(x?-1H zqRoI}2eQx6&j3n-e1m`G=W+-u*Gcg^*|@LiN~EM%oaL`lcrJg_j3)B%P3}YRY159- z$_7p6oKd~9H0v*ut3YQA-jBD*9yFpCO2UU0!tzekx&C+&BM07I03TAw@d?iQs%3(x2ua!nX0nAZul`{#lK5HBMU=%f;Ah6Xv`XVGy$pzlHs*CV z54oCpWp`&Pd90C0ovQ2v2(4Yp1F>Z7u_J%uLDeKL4)&kLX6A?!<%~2trv72IgOlVm znR;3qw1LM*N{TK16puY0KBhuCLwjWfh=s3A2zhcbL-SC~lXjd&5a5SZBQW=bAh8j$ zMN(21jsiZ1Rvar&#>;3niy=#_o@1tI3sr|qZ-(hrh?x% zBEO~IK*?3O&^iWR;ZKd|V9nTrm&c~(B5w2k1@za70!9onRc35OWuOaHbUy1Oluozz z(El?WOBB@Hl%tL% zg0TCI#l#4pp%Mg=BbFLD!}M!?BC({JTu_Jzuj@1j67f!GfYpA8b>YggMgF6hu*{*s z%XFVTt>c;-%R1J7UcC`F-hIS3V{V|KIYWt8afBZVujDj_DP1Dt<+Wl2denT2*AF_w zed@0$=X9{;IE4mk<>KAoVXNY6*y>p0BYxE|9>5DKJCkXBUQU#--&EbhQc*wsr`3>1H#Wnc?Qgx?1d3ikKmD zwK;W%<3Bw?OG-F8{Fms3s->&|Dgq-T&$Gdfu&%eSNWlbA_45*5aDI-Ia}fVABlWdy z=PuG2>jQ=qw>w=4QP$Rj``W@N|7?>5SrBq6@Kj$Vby@;N&1?ODA3F`!Vi>4-OYDXs zTJ-=oUATbG2>3K*}yr|~0eBXe2w z65XK^qQj|Tf?FFXi-$6?U6pLTGC!ejOA1jOh-1n8oz9d;amAa7wEJ+sr5-bu#EcqjZAcG^7HO{Y;_;fO=UDC- za74gKs-&n96i|Wxp5&ATVU?MntEl5p7<@J^zrl=l>JaoVBA8KOb=GK-`JBl(Tb7g=~r+AHIe7G zKg)leWOV~IDwZ|At$bD8Ds&LD)#)O+re#E>;h{F1@e2i1O0edw2aUs@g9+RR7Q62i zPy$zIp4W8Lzrz98P&VtA+7kPf!yEUAzz#!S0{W5v2}6}C;*LWQfo zN+K9c&Y{&{lDjfK$+vcA2B760GIe>LJt+zgghtRIQmF1XXRUXRy*d^l$K(G0b--@F z^}S316NJE9s0N1o(Rbo{Ko+e?f_r58z;Y5LH(fp`y(uoX?@88HtXC=>cmd|;O{2bG zxDh?QgI-2`upcyF@sV0@0+ZOT-70} z+k+mu8UNO*sPU@EU!#`fp{}R!=xH^9`92H3=dowP^p`kSq!|WlrVTwLzcp5%SIU0zeD+$38M<@D7A~+Nh!*$!AWcS> zEvYuw6y8EjQ_0O3lt(SJXDofOFw{%Kxb^3?&%x9ee^GM>ndB1c2r>k)02df+EOzgK zD1uZ{*TV9$P?y>m5k5eFHKScG{P{-tg8tm)PeFN|8^{SkyIl$#98Y2NI070c>s>eHACh?g|==hk^1=Qh+EKmg(QTR6kh?;wTQ_j8?8Lw z2)?414PC-#aL)1YHd`H^L6p&&Uu_RkvbfW>2!+PCSIbNiag#3s(Rjg{xA#Mvb-4lA z1#jbfw>8BQIPY6YjW{nF(IlX>SKLmnm{vUVVD(x)?c#(_7Qt`p5oEGr6NP|fJm3Nn zStsHQssyX|u!P}K2L(9-oc4|8MtNpDp!f_WQ%-{Du?)hdYcSs|>Y}O?9l9CD zwt}zvv{#h@MGRciy>{6y>t4X7w_(Fjf1l zXfm!FzciecLIAO!9C2JhwvtNzzh z$nF$xFYy)K!usRuI0bBU%fb zcsMX{p**U9WmD=0bO$1!^`vTKO%zEXkW<9>^jv8n&@&LB%o?Xg*jU4$_63h2*YLgM zU_VqA82Ba}z`49k!)#31WR|qUh>L|d28WZ*uvgT^(zNbqEAhI0yKC$R(1CxOb4jU{6bg9T zRj7n0Kus8Ay_Uk^EfHXKK9F~HPW{qMU#7rhR+3n)?Fw%TFX0=Nr3+VK`b~M*#yvoQ zNJdSA)l(1P(>-&e4uuxEw*mMCA{diKqy(w3TOrtAoGfT2 zo-Y~N8kaBkowq6^_NvN-4u>b`f!MWHAn359;_u#9;N}U+mj77AN0g?^kO zvK1X0*<-N}hZ`>SHoz~rhePoTyc|F1Ke4!2(Jjg?dKKf7p?HxzA{?YPL4JxI;>JP< z#1VCvlVU+-?p=?ad1?70l;~hrx@upoTL@uMPNrb0-hK~n*t}8DCU->87vvAm6bfkQktOanEG{P@$%pp(3(% zwbO8)%?T{uikc&%a%#140}ML@7RkIi?@NHili~yR3O@qM8!3~NvC8Aqd^i_8EjFhP!LhRCq43k9S2-&^4=uwk%AYeC>ns?VzQrOpZg0$A}{gGVAtrJh9{5 zzPQOPtZ+RN1i*BerA?9&Ho;)Z`Q6R(jA@>T^viu+r zW6OFzR@vyHik%&V-p1xodBGN!ut=g(h!wNWq#-l9cswD$+}!w7O%yH#ZN|B-1^SV* zX1(KG{n81P+jN!f%*0fAoFb^2f@IhUXk{ZOF+_M!k+9he2NoVvpiJkjJ@ImOxjU(Z(w8=pa<0|%{8 z>TtwFJ|JXP;2|lzx^n|W)v?Lfg8 z2rg44${;?`q6q3yhwut1Nm$yZ6ohs&>*Tqft z7g{Y44)0c5#V7brO_e#&L)1BKr+|lr5}SzW=vZLWTm6eR)+j27xT{+Q(cmMAuhyde z(YctZUwpt1V&w@TnjQyEwbyrpTiX>d)YNj2LUH%I<+&;(EH$ej4{#ciTLw8Y*)}_% zmQ;)tbBV%PW#-|8BUUWxqLeh9WI%w_g=-t+b3H(9{PA{Ch884MNbdB`4JY|3tZ>poH78_rQ^vJ`uu#6#Oq}OL?s0?4` ze*fERsZ>jv8g|E7kvb03yn;%8KkyChB!a~{TFf=&Va+Z+ekc$pW#AF&N}25+}onC`3jO1`R%`QBjB_4An8{dp)ky*MarS8_}UNkM`g! zQ4Nn_I!F837#@L~?=3WtDlD_%CN^P69|hev_q^bQ4|P3CjZUpbC%5lC5Pk}T$*w3; zJw+O%QR<(hU$VjDkgILn6GbuC+b3ev2#Mf;pt=R0`RPrdsb@fa#=FsJ`6b5;!-8Az z1QO3m-4243a2O*;qE+#irN}}M(e;MNmIbb&W4k)v-5}FOdFY3gu76a&G--*ws_z|j zn%Qgslsk3?3h3euju{<`BZxeQF+=Vf<0BLF%MA=uuY`j%=VVlVdsSGt+SZw7%2Zpp zae{8&Y_Ixj32;H%Li77HDxzPV<)n1pn6WnVH5!Ht$tq7$l*!yg-8xSG+H9XWbl* z-LC+h%3@R=eVZwVd}!XZy}29Ytewu|)?6feceN_lN*e$Cc$y22=TSNwJ;c57>`lFY zZad*M`={|!WuQ4@jsMrp5o#cy(!0)S)`SU4>jPX$2)KSVu1KK3))kTYe?+w0fV-<8 zBL-2uk?+^4A=ngj)I*LjO}IknM_Q5H#k1`EGPDp#&c9sOyf4#WUlx5@pVXs5C5a{9@REqiejcnQ1vH^<>-%$Y)gm zbplu)8$_-$mQDV$mevCyj^TSV$SjSoj2MU1w$US}t##nxi1&poU*jZ(?5ZhpL8)Lz-h_9j-)=&nQGUv1Te>w^I z{cN28H}MfJh-5rpxscXK_lvVGOm<~pIJ%%}E1p~lf~PZh2?8z#VW0gTmIirN5p<#4 ztVN~XGTI=(8m1bbbsLRcV}*hOf(A>7#p0JxFny485Rwm%fN#J-`oXGTI+X<`&vja` ziN39R%Bldk$kcfS#yZ!mi^IsMz4@sD8uVN( zKcnDJQW=2~+KjybZgur!o`e1C{173%Y6G9ii*sgL%xkHeC?M+fQ3M#(Cmb_M{m_7T zH!5^aa-iLruHHH!oVYM}z`n@xNP_L*r9I|d`_TFfIc(Ats;ghsGp_~?5uxWCq~O83 z{dxjXlrX;b2#uXW1MA#M&hWEukQi=E{8HVS?_$X?n z!(V_LTz(u8G$yfG{lu$7Fr~~x43bA{i8wxHLSP9ata3{_to? zqW&m8Ao3Ka}Zkir2q zBU$F}_LT)mr#BKXI+yw&)lMDfqPeO;{+W2~_#qe4k{-&$FKiQtgYW@h>oD5V2bn`G z0l}L#?#y5YGw$Sq? z5h)Lnl7|!0uPW)Uxl){y#PTk>K-TWny<%L)zwuybIzXufLEt@%| zydtnEe`Dc0$ZTR$vx$J{Ve8ha&LQ970VIhMDj)Ff{JC0{-e28K$l*cyqIX(GXp)9#r$41Dyb>E(Y{{XFWMa=fUP7dg})dGmtyV(PGeeOn_9;G!fOSs`;Bq7-F#eGa%EKA=hN&gR`*Sel1@40hPk ztS5Cwzb}~RNt1grq;6&Dr_&HUu!%IKxh|F*P@&q<5j~F|_{waKNu>nN=2P!0R0Gqq zW|4gj!V&9T)Tg)M_ube!4%b`a%?a)*r~fqBT-HI~;wh+p6?RJxwNYhN*j*DtU5c(5 zp4genS@BEi9YOd2ZH#v#gm++K6%9keT{7`2uRS3~Zjs^iF_Q~;| zA0}9e1f7}z)TF&Fu1I#?txAY$Gs|^tUXUNY*HeiPswwrKEh!cOC@=pxjo}Q2o3d+- zT1OA#)f&op4z_*?zo(MM!$nKYF?ZRBW{ATIoJOuL zaq}`HV$x4Z99=-Q5}`nA;NC2&q>_?|y~TgcT`0kKeEvlpJeK`1Zc+af{{1aC?taq% z5N_rW01<;^+hm--1FJt?$E)|PKVB$5ljf#JO8*ts9xV5wAF>eRK ziyIMde)fY1SU|^$#xFtJ6#pID+Y8HL4ivg{E@FX3FmtovQc)8($+NKMGZJqtf$VNT zUV9Wl%6{2m!St2UyRbx+ow~PrOw@b$51}{Po;*7T$W!lj zEd^L_K|k=}SbjWE*InQR$LyGxT*F7{R_jzO-Qfr8PQt+;qB%ZYWi@R`T1|Li6gqpb zWBG^N#r!AEwYjw;&xue-yXmIA4}Qn1AKI0neH>`p%t|PCGre#79!d$DW4V?9&vVgo)0cv@-J+f z?8_w$V01`A9N~xQLi}_XUO4)gidzI=vV}Jih93bWs#*Liw<_~3o+QP#>Hz!OVY_d{u8S*=`QEq>@*DO=sklnn4tZzdfLMj`&0h@%NHWk8<)&UT+?2ra0@u2fgc500m>ie0QRCy>`U&Wr*Ethx}uj#hY}jp7#YkYZCf95G=~ z`Ch!MK8+XeJ^UwPIbUm2y$j{@pub{)Y?B15x_vUf?vNr&2qr0sU#C#byk<`YjO3sJ z;pU#Z(B>U#f)J8Kx?uT+uG5)TF6IEN-lF%}hnuMQpBKu3jOCKOZ;V*s#$K9<4 zJ?l7`ar3GHZ#q<~6v~e_;{$0*Xs>tK=?+N%COCYPFm#HMsguK*$4we$Dtoj9yp(G;O_ZStA24pDp zNHYjNd z%Q9=G*sUf_H^XhXa++eo5P9w~h@()q#@0vle&t)gQhMXgX_N%o`||8F9&5D2(=Rph zw;Mc#!JVi3H1D;Vp{-cLbEOMGQFgb{r+`Ju6o%q@*}qZ>o>vll??QX&$Bk3hi&r@4 zKbu5(f)y}ib?@ovBv;#XS|2zw0?^>w*t+%^#xI7|Q}Vs;TJxqyQp)F+^h z%%(vaC_G|@CfOlH(7`HG>Ryanby(bM*qlNgdq6`Ongm3WWS^gp$`V4T#T(_nWZx}N zF36n^7)^Y8?7)j+hUyhK_@cR@@HJ~n9C!#+B9WFyla`T);!{&W{AYaSW0hCiEmqn4 zfRM-`e4cqUc)sgo2wvO}S#)wKH>e0i$lNH!kPSsv@i>Wvyf3R%durjYa8kZdr#6S~WK6aszUOFUB7!1Ku{@og?c|x}HRtXEj1!6rO}WrY5Jja$L7J!&WnM_$?)kEl zNb*wy5p4r~R3IRWZPWp{xMVPpx?~6tltZ3OawJ3)`$k=Un-#GL0Mz`Mz2X8hTKHS9 zABr+8QaKZGVe7P0i-+j60=EZJaRaT10JI`9>!rC-RO2hN8`W&wv4?C1XERYnRX$lv z6p{rn#eTPMaZK_X2n4;(FGof(%e7}AYg<}`kqjRyU_qM9nhEZ1< z!He_(#DeRnPKWIkjZR2nQ4^($HDq9pc_V{{g3DiB&MZ1?Mbclmr8h%BZ`g}DC!|h5 z@XGE`L1d&2=~qsQzu`OZzVJJnNClOH4Qq{XgHRHMAR51AvgpDSF7u>W5P`mUsLmHj zlCYxfD%8VQRz(4oKGZ8z8pK%H9NGi22r2SIdlT6${M7=ke=v+uwLwht3>6PvBtmqs z`oeFwC1b(QHfoer=2H1;9%4iGLh}#@yxaP4Syp^y`8g9rKpH&tS?VUGKEXh<@xYv-s#b49^k)bWot}2M>SoS2aCRS*~l)+qGRdeg^Sd|8? z`uDn58bTx<2arT}ugqpXFqnl^;gn*#dKq@N8n^`-+#=4aFK5SL8Q_?fX`@dT$g#i} zgPjIVwz9zAngnhB{mRgcuf|(f5yT}BrX;oNVKh@F>76(>TUSf3W?3e(b}4BK3(`WI z#jK52u&34MA!o4>ay+qoC4;z<5F6@Z9g2@<4@8Yzd3rQ9xMWHK7_>o%+1(l`rRF~; zv9YI$<+EEgMMa{$nb%MJYk+*N@0MzQI|f6m3>D#ESB zHNMn&=uDJX`zqW%{I*mpG7Is{Kc;%Gz*P{c{ex0=J$Y z*SKBmpCPU+qx?-Cs`dxIi`)2CXSN&>7F3$6qsVK4t@w{p=~&rY8i)bQ8P-K&iys@- z99IU)eu!3ysA#a+ZAH|?NtzlDual6#HCWL|613`e3LgJ;ze$zL6eBg)Mu3vGo*R+_6B%C}6@;BgwPql#R< zN=a1wSn6D*sa)I>?18@=%2cT*s*jo@i71SRkh;rAItGrx%>*IR;r-}V+l#j)nDAHs zS&>kUP+ws2l{r~riw`d?ps(`Nom)-S3BiZdto3R76(rOyh0Pwt68@KL@Y4V}w~8>J z-jf3g14TFmJy)?4`O1@@44JP03~JcdZ$&kJTb(R9%WDKW6-lE``lz}p{s8^#m79J< z|EBRQNF7yLwd#t>lXx$FOWtEvM7D$rT!jtX!M-%sQ0T~~Y&iuN=A7M;l9dNC|1j?t z{N(A?<=k(e9h+ZXRu)*3DD;FC$hm4k+yCCLG|wK2Rt(?;D^JbeV) zG+~OV)SUxlq)_`kb zW&?}MV+z!TN_fqQ)|4U)IDW_y7C2OZ@&x&KQ_Y2qzxb1yT3wG&&0G!NmcpV9^5+%T zV6T-g>KCt?YswWowuag5(P=820z8eqv6OVgSOTfx-q~rNY#1ek}TI^&StC7F*DgMF~R{r;>Wd#U@nv$jv zKKHBbPF*7+JsAA&M3@3noD0sfw``e&4v&%s2WChqg?JA)%hus{6Y4g088ZYCu~Ums zCzG`cD7&j0)EO%@^DC_`Q+WL!Rri+GN}4NS_@2=KKH=dQZ00|Ne!obnYVV8YSzUn1 z{0~wn6q0z2=9Ozt80RK3G$u)WS!;AMOXg4$aeEY^&>_g7=CY*UTr1g5eXXR=n2hv8 zc1wanZZRDz)-mNrZF4S(zq84i%)sxT_8wzI*u%NryF4Sl;z?%xd}yG*2*q; z!Pqj(E_YI7UH#x0F@5=P!Q2H;T1B4(Ag_DD+v3CkG{6pjWrZ{Z3ezwx9xsTUWvBpA z#w2wcJ*ND&4b?!l*p$bvyPag1wJKq$I28=gM}>~38?QeP|Hg1DN)hH(oXUX2N&93m z4V`boEJ-Q0NkHvfp-Ht$Ow8z-%5~=C=sU%y)}U?%QY_dM73@8I){)^}8$w3mk)E(+ zFRTv*5v}-=QbIRH*F}I1-88p={!zLWv=@lD(@lR7bEcQ_b2bxrQp3TlKVhVp&+|avwe-X86yavpD@ib~E$b-$P`>5^YO1il@#t*%x7LMR zz#g6Y;U>FP+Y#x=M{SaQcnlFe=qWtPWhrZJAanDlr-V%)PTlj8PDKuFZfj zpv}Tg7|8U=Bi8Ggk?B3+v^E8@DYLLez9$05c}xf3T;((s!R3jogA5fIl;%S~q72mUmtU^s^4bo`nHWn-zcWBAyjk zxN1>^Rnh5R>0d!B@vgx0#m~^Ih5z_{QhQq#T-bOP(Yu9BiK>ec{1-)iMYVZmr-X8d z{d-Bnur@ZTyd+XvKj{?Cb`0qhFr)%@?bm&(Il*jLhrzrtxh8i;38-ry3*i$EM7v&6 zPG=0{bj?->OGPDG-zdGeK#ls-tZtDZgOP-W>V=B7lisV0Aga;i$Yqa$EAj%HSSgY@ zdDyi3&7)e9S`Am%J{;BvCsa_oKsN_5K~=R?BE+@MrFAqp3%Bz)x*qtvr~ZH1GYCh* zf7CG8BPEPS^2K3yhDvj|rF6|n9^_*9igG8$6*<5i0qqYxU!IN-4KLpck?C?&b%)lv zBQQ}|kdTTdmFHyZoGbTNQpQoP*27@EESC_Ehyyd*?S7G{s&BO2I7|4YK6e^=Gy3&5 zlwB?_#OKlSz*pH~B)L=9yh_*2H65uV6m|_fbKGnFK>gj5m$BQ7p#EQ6o3ysNR;Dj~ zrv-w?FJeT3(AWTrNY3ie=m#B~hAeB)qMx31sh7Zyg%KKwrzLJJPDkY(#u2(X#XN~P zH1^GUanYK37Km}`71OJ{XX>kf$L^o?&w)#n)4*48*QCz8K^=j_T*3!%vlAh2pFUe> z9 zHJM+K{ZAqYFylb$hZ0YNP;>s`K_Go?)ncA}1FDDXRN%!&z_Eq2V(-6o7B(ZH(=O(J z>rJmR8KkRSW-jo}8}WHfuhXat(qg8*Bt6jjy;XD1FY7|#{pBGfTI3O(=eiiJ++wYuu%?c321UA2 zeV$O=^Z8v>&H*{U!JznEuWqrK8~%;mO=Uq5gkP&;2hzCofWuE6EzT>Op`juDX>&MS z4}gGHnQ8HmqHIbTyfCVehjsdYV zLQ)Yam%mARZj^K7OLbWY>(T)%0tW#*C%wQhy{qzR=P-FVd6|!^&oc9q)qg zT6pnq(Lf&{J3fpZuLCs~?;Iq)QK1=5#H%b_v$U)Q%5~ToijVSJ>?!=1qpEKJRPN)g zy<99S8j~g4A7+T2C<#}Yhd2Pr7&H)i@UvE@ttoysh*+Kkr=>rGO_BL- z{)}&gI zRi4EcI}0pY9WKxTp+{oxYb2=#lR>VQ>{_=d3@{e^l+5y zdg>U;SwD)Hj_$dsR{TuO7j$M7$9I#bKGtSUKi^fQh_pQ<%msFrUmXk(pEH;|o!STZ z-cgavu_P7Col8b2&-Uj3eo?`Q7j+6n9Z&}85Jy!gI9;SwvVLxpz|))`e0=~2U_L^g z!q;b=_G~n}Yd&AF2d`4NbZV~F_(W3gDE|1w5=)R)W~upu_2L(`h+WplKfOF+%#ByT z;M&_Guu1>yN|f|x$h>k&m{cDS9m7H7Y&bL-unRt?Xtt&@CO)*VLT<#gn-|}y05)4( zotK&?3sE3e0ziKUM25W%nARc4XqYRj~eHoh)VM= z$5E|Iw7&~$47Prjkm@-+WL%6rdbB;p=25u#7YE+@)rYwN@FuDOima}C4R6$~OpXhD z8_`o88ff6xRzMfTrc81i%en~`ft^FZk5^gkx;g|@L_h4tLvG29#Q{!)=I^%qOC7%T7en1BG3Jvl0rjNhkA(T|_w$Zo4T2q!uF0Hbr|?h~ghrd+{5atr0V_+Ha^( z;7%HA0#mv(P3lDc(nnNTEdJ{nWbd29%kr_$=>Qa26h@k}jJjth7p{kpCp&kY{aQ%I zZe>~Vgb+m$pL0M0gryH+pP@>cc zsBeWcuD2Aej^O%v$``%x0~8{hh9E??xG{PbCOu z4RLPtlx~1yt720;Sjx)aUH)8E1)dAq#3jKSZP_IM>%aEE9>E6;vROhe_}&XDO91W~ z`gBT7WxRo7J6&4Ev+L7=+jH%c%42oyc|n7!bL&@!`)SHmX~_Gfzp_Vo^k%5)6D9Im z+9^rKWDpvb1^FWLlUawYP$}PM{=l(0C>iRijM;kRcnNfV({pR_zl2X9sPtDu9{D_wHKksB*Q1gMt;}|ArPG_Hpr2p zj!_emkpYVE>s$xxBNl@7+!pg^81vq@l1lqAI!p2%b-LQka1&Oy_kg+N49i+3kc!pS z)2(~XDUlwet~8$x&)}>rKdn)qhZF`GyW|wt$qq8Yt3Z9#BLa{~m62x-@Gr=@QODvY z50oCRFXl94;ZD4jo`S3+DP`B$DXBZoKxsfeJ4l6X4|7DDH=j4PvmHfMT6R5lBXm`5# zBxXy9K69F|lufQ8QV=7qMMZ;POb}PZR8_C5Hj9T%31jwyrxz+Y&t7XOY;)?lwgO5y z%^(vWD!cBqtH-R~1@;cu7%QfPr69>0u|v&_*yNLIe3(!?bLjdhiDPn$7P&H(wYf$l z{@fU!U@jNMdjX+2RUuI|5MC0YX+Fw zDH(To)Qg9fK(ar5w!!s)CMTjl0Y{LCQdnQQK|wR-_aw9xRcjwWGhAJPD#G`|7f< zoXdH!GtET8o@Z#q$(plqy&nvjY74uX&I3upS7iP-uoicN533=yo>07GJr=+ouSIN{ zCeTrFO8`Uqc6t!ssLh6Qah5RBeJVW>X~5q%*xBY3GVAn1T&in&L}TZM11xM2Da3Qp z>+$UTYK4kOV!5^$CHGDIQOs^0qyua+8h(g>qx1DZwNyj>M{GgJI3f{2?MLL)>HZt! zE5L9K43J_)Q@5qbLcJ6-@mo$FJ&4Sl8xLj3%7lC)tTudI<{IX5*;7NB&%`{)Zq~iQ z&#fX-f;@SMlVfUf@aWncEC-$3+qx9MU~y%o*ZIb52;6@LMNxM7t>^@Rzykp`&^wD+ zny6A70U*q!^#*+4!1;f^TcdM%T*jjtKnx#2=dYP54B++hAl86$&F+`Sf~ZOTCtFm|cLcqvZ1#UYdrAbDg5LaV5fGA5|^97WB=n zcV~F~K&lrMKyqI35!{`-pZ_qWNL-czhk51Ht7D$L-(4y`;%6{dUBC30SD__{<6c$> zt?-}&Y=5bteN=P@Q98R@pJNRPe4`>ghuy{YdqO;Gj~MhadP3-PXVoM)95~4sc-#{x z0nAQv)+~sNliyb$ZVha!Q)j_UOyaj1BmR+&f(nT>QxUH(6W}jU0);}1N|gLa(n-7< zLs8Tw;X(frkRxdHeNau&I|a$uNH%O0%tAZ z6WuE~6WJwk?VP53bY}2+S{%e3^5W$Y^`1rARe!!ZrAmO@1#vCSk84$|rq;C^;IAzg z-L$?Q+=r^*mj88jMOBum-hn!gKZsF;e;@EHFlD7ECUW+ ze-)JS_qv|0pf)C-f>;KjA$5mbJAY0c69VvBgbnO{Z?4UgoqjnWdOPqg(%1Uo@%FSH zk=kMOCzvb-DcL!{$|$G;(66tqyR2dSi!-FzQLGwlwvt{pJJd{WVD~ zaMv#_J%b*tURq-VI!i~Y&gRUV9~KeBfb(kaOS>15>PrIWq~;T$FqW;ehQN_x;ij9# z;dOXyx0voQ4^|vX24TgS5bJDp(NcWW3!)&u_rBdh{cbW8ZXSFu{Zo~O(iRttv@o#4 z&y3hFhSlLfu(yUPF)_*}%GmiLmu-H^m08CC$6i8$&`1(XW;1V)=4+ zA|OR;EM}#b8;>Rx==?c3_;$!cfRBR`>G%|vL@Qf6SRNKL#73Y);SGis;R?*k7}+uu zHQktVT7Ln|iS70!9!@@>EIcU)h#d`Xk9qMD&HL^r(}y3orpmxsE znyvXL2Uzz8) ziQxrtk`CU@3!Fk>R6UNVZmr`9mZGCHJ@JSi@+h z$~<(aS^jdpNo7&}wOo-%Gv^Ro?L6zp#gGY%^~p~YQ@rIs9Jaj+%a_H+GVJE3TQxQfgR0>@0OP&rwl&_Vq6PH*>XZXwz1bz3jhT{C~w++gsC&@RkJ}y zxj@k!J2BG|nO;4jZo;;fbrd>V$z+^d9v4{7P>{d^bDiD;tKn{fRxt!h{9Tf?t503m zc=nVg*XpgrBW?3B#*U*)n8OFIp6o-ss&AG}VLTiXAw|g- z4H)Qr6{nW|`MW*zR}O#4dqsqR$T3-|Ja&U#v2Rfk8Tcxn*I7`RCg&A5q8hzCiQm=C z!PQ6w0#5slGI7dmT;j?efUFOGAC6V6B8sUn9m4Ahu`gf+LzXa_(nr04)-74Re%D^Y zb^^e4I_pou z0>jvzQ}wz%->Xp*%0&DPJ(Ej8K(AUxL(+LV*#o*394)FUXl1cAfP!eT7v;+=tU@^f zk$iykccGDw+Hf~bw0zVRZA}Rmgk?L$%Hbx_m=^nD$r_K!0{DP(Z4@KUOARcsJ@pmh z!T5L|n(jd~Cp;|Es(KevC8=+x)pdj(%G5Y|t!@_rUUumWtz&{93W_DXg+h9(0W;{R z!G_i1SfI{jVZRG0GWz%&Ev&IKoG4$$&@R2Q`Jwg=c+!%E1BZv!Dfm6Pv12A6iZ;ac zV+Yfc&@~61oO=PA1VHUzu=@;DrF0GmB-6+xemdrzKc_7fexbV=3Omj6yHQ{EgKsSZ zD6*l{)2F<)9n?xdLOpsoL!TEfdd#=Kvr_(qJe{G|RfYP1IX;QH=qC&ipAf;s=J-$$Ma@z0#P`j5KVJ7olVQ$1Hz%Ofx&r-Bfo7{8`IS@%{uQ~ZnF64|8E!*BS! z?=oV|aq{X|A;nM>*XwuUO!U zpL7LrRAM^BCFz>uMVqst7RvLvt0@p2h6+7(yAV`U?CQhEw77##v2omhjbFP}VhHZ~ zzmeqhJ?4^qr{z?Pj6H%G5S$*jB$vl1=j!P4iI;$>nw)B#z)a}j}C zrcWh*#F$mz!|*r|u0}V78|05>7>$q>Z`shhLFC|mf{lhbO>u;yC}8t>)FJxsHbYfz zyF5f>T#e#AnsshS#8i&7@%mOwm|BxeHO8Lh|4j{*s&GylD*yEw=f% z{#tstFO~tcmj|m|H8bSbBK$O$WCg0z^b?a90erv?Kh0DL>!F)?enlXxZ3yb|gy2^N z>qDDM23kE7YWi=0%~$u2J+Xx1n5eCUjXCS@{M*ug>L-4BdRN-YY?}@9$kLOK&4WyJ;x_& z&O6r~pRXw)BMxA*=*>zk$U8VvWHbI6FQktFBP}7?GnWOuR~Ky;^tr;aaIZZ!IDW*?CncJ|L_WICk^A|XlEQ3v^?ua$DZ=0(iy0#j1r__7~3QAYS(HEid zd72%?6GCMAVd4p^qgS&M!gIn13*CTr|4fmmp3b$J?qPaS@Y%jK=~UI0jneGTCp&)% zFTnl!K&oE{dK3RE=Ck{g1In6tX7K{E#D)dc1b6=A$qO1f0S>OTJDDj3qqwn*$=?@N zg%HpprsT!lgt#3B0s;I+=+(gn2m+~yPhc#miu4vwTvVj*syM}vU549gtO^WA$uQR8 zp5~a#FGym|=(7z+D7>+6*fYq8bC9#a$T_IYCO1o|Vx7y33b*jo(t{up7IumZeSVF(YK=B`D!>BJ) z!Q}IJA$oK^K%(7)qc(h0bu8|xF34wjFsToDT;{q`4Z(_Zb*(&@Ia?8NuC)NYKop2N z3?HwNVfm<@uQbAR_2nStCi3SngV@Y!5MxKsA^TS!m0Xc7Kc#W_K4gwN+Xpy$(l_|d zj(ih{EsL`Y8R_c+S#Aj2-xsEDb959EF$$57x^2aeV}L-l{+d5N;__9!B+--|G@qb2 z1)i*R;#gQAR1nd5RtOE(LEvsO(ga&UpS?&kIl`zl`IDBZV6VzLe#PIQkfdV-SGAJC zF}mpOzGdgVj9qcYL6Y*J@<*_Id?J6OCJ}xqQ7X2|wMEQ?(Wm3KkSuVi3h>W8=eyzE zMb`YxN2+@eNBu|hdeK9yZ9-RclO5DRk&Q*BdlwhhuZhbTT6AD$Br95J-grG;7TGwh12drq{NMm)8EK{R5(D+YawcqxrQ4unIfP%aWFSU;CLDp9=uv(3;=b% zyYxjaT4dDUEk7+2i68O`K&ALM$-}P(!KEKPY2**c&c_?0+5W~l+bwKahMULvr^TH+ zC@IHZs#8C@fzi;q2HD~&3P^0MOC5nI|KM>gtocFqS^rZuqS62vj?RHQqwW?KtqHW= zB6!TYPk{l#jAj@CPtb_bq!uSRTONmrY;KFSXa9VoYU95zi&F~InjCYJJf)|011`Bm z+H-#+zWC@K0_$2FKTP(|9<;jnNY4WNxDa;BLpno^4MEEze<*>}z1v@zkmx5Ls+`UR zOQH|UItNXmFHQbNYt?`2va1&r=-5@~BPyrxnu4LvlYc7>NTg^XDg+d}@PnF|`fpwa z5r7Rac3K{co1FnAmnc=?plc|??uw$lTgFY4MK_17RUZ|hVSkaM5dl8_C<&}?);tV# zpOXH#7NG}Z;C@u~A*P8^0T)ca@*Acw=%dNN8(G5JH#Fhf_V0IR7@b&`Rm|yUR zWHW>N{IAz?e5z;`>#2E7xRrgxXRGOmNl4P?cTopInK~5zeJM7DG{sR#WSUl>+oQj>3WZc=TCReF-CBuA z@oJ?3_Q?6G=u~mK$B1ij*HN~myJ{d^TnqSDBTL^dl3PAXDj0HO!xU$_zsL-61(dPY za3t#j+2e~hrvQt{bN$5Q^q5WfP{hgP3OiaM`+KZ`Z|IcHD$DfYfngu-%ui$3otMng z%Uk;9pWT%dl)prB@Jx<{1Sot^!k2U$W}Phg!!zSN@mzJ9GLff?y# znnrma-85tvty+{t-C^Y8<)?|Tz;5?ka(yul4_3Pd1d9!*8;LqdelSAUlx{Eh%y?9K z^jmw66*0VkA7)q|NLVTw$eCoh?709Wx-AzIj=g(Gm{p(DGEPF`Fc(gy9`@X9kyj;3 za=k1tZZdnf9BU3 z*z5D4L!}E6_3BT>M;2QI<=R(dru~q*%DU=_^kIPrA&1?K=TBUF*xQ=gEs>bKI1FMI zFJol(pv%sRIuMSnD(8Sm^a(weckzPoe)q$lEQz@?h0RnpVa58{Y4hkU7zlwyjChkJ zV-6dFgfe%`(xWToPKV;}s^f6hG8xRPA5oa;NBqXUfQUw}?wsu$dPiS=Q5 z>ym(9myE0W3c!nA-mca}0y$G8=jwvW9A7@_rq6-6Tb{ki1m!e)mQG1o8O*lh-E>FY zlklPquolTUO|`ag#6uqJJrOEDC_R$*6USF?AU9s%1ZO+hp=)!F-!jm@d=tPMjh9g?P>h1^@AcacHSgwwIkzwr%NQ%l|+Gz;|;Y~)LQm2ES zb4>uJ%-3$!KO2j&wf8cFC_8H+e|VDIEXquj+L!ctHmalN>FuSO_nwcjj6%}V&*l7R z-|AgNm*7XnMrkU>nz4kGm=-&@Diu)t>$)JuEIVnTS8z4xKm4mc!qBDjY^VdhlrRWM zm+$TXCpeX~@bPjVM+7M$p$};-qZmt{@(Y~EAz7SAZ7qbX{gcp|Z|vth(4#&@5)=SN zLCBKmmN?&Ik0cuGZ)#@Qf{wQ})dnsX=&qvl^6U{u=vle~?=cWayCgQ~2}n7GxrIDh zo|P?--}=hFaJ?KZ_J?CG@s(6w5g4APUVrNYB*_)O#)i3H4)Dq19IaJSCTRl>p(rTE zo5kR&MCzzmjp|)gu6ojx##)-#4=+N$>n$f_S+@`R8SB@qWEoRISGo-H2K;>k2vDU= zL6wQ9xmGf$G1|388t5W@cD#cpa3Rb$0rFjj!~h_t3903*3+LEfvNWsF6m?zS3snn^ z!eLeEg1@|JE%)iOJ-u(b&ULW(8-r+jpa)kiJ$l9O`up(l7Q!~B*&zsHK{|S7zDTOP zfH6{gd7)}d+%Gu?M#8DfP2|S3$akn?IWNj>@n#|=_AeeJ&|60q#fDsO^bTVi8_zyV zIfL;vptWASDX=G=c2l6YAcXj`nS}6~z+}}h3Nj*&xv937TzgSVh zUJmzDVTZ%TEPdfHIb2B#!J|Cv(9&q246Q`CYno`DSi#PesAmbj`AhLM<%)w8*}Ae) zb)$JY7DN%h$OhG^j>h|nMqvSM4u#)D4n$wkKtzJ^;5`Ou}JtTd_>A>#p(jZ5ZQ07oABKEcus`&hVk`L z=973gPlbR;7|pYF5gi}o0t`~qFS|}3rtMggO^TxZOn=#uGG%TN4TP zppw~xvh6za5_w5FH>9pxmP=5OVI?EkM2rrD+2R(~-yM!1mU9gf=n*p8kH)4e#2VP~ z#{;gX^p1v@@nya;EkG~%nV(CQvsnS$vGd1~s&fF@HNN%N>Qb-d%=B=$FthmAGLaB)t~K)q|Mcxn;{}T5+T1c2 zli{I-D?;Pn8rt@wQ8NAjuznBFyRRYrq#$!Ujf2x2P;9{a*LTp5xc7&tH&ls{Zkbe0 zGPLtTj(~o1R!F}Q`&;cRUI3V_X|8j?Uv>@pf)}+Fdj)Oy#3`v~&y`=j66menJX`rV z>f@2dHZRqSgU-7Yj1oRNjxjsre>e4^(5v9qYSg65o)kX#ybb!&?L%Zk*7PR!%Mn;& z4QPY_$p<8EBdhH+V!z}IUHDHm9IC}YV&t5=DnL**?EjidYGIRo5V_LRIOr>#F&z%7!lrsmg?@rb2{D^OXnO3w37|im7nggVw=879EV_lp&(=u2e9otd1h(S;fYCfDaGnmX-n73Y5NP>i1`6rt5~En11N4px%gAb8cUD=FfwjmiAtl{kRa@#bLq;_g z)04s}N!B9|7G2qj_m)~n;+4~H=w{_GRCTWSjDPc*j)faA_0y5hD;KSmk>it802ATl zB+(}f3FMca(k?T7u>%)5&qF`}iEqpibNyOLZFaL8`dF{iBYie!xM5vdIC=#}21T1o zV0;S@>>JjAY6cu6E3;7y03%cECn)6T7-^j!iYq+530{Q{`9Bca?@^54g$z6&G!Bq&>}F$YqUI*MZx;3nGz2ALhyWgT4O&dOWAs6p?6b#^-NYB~ zj9WG7ABPJJ7j?LP>$NKp%ov$jKo^;RV;*zSMY!oo>(=Pl+hnpZfJMK0xgp0Q0$a0V z_X8+&?dy9K-zm$6OA|feCyUA(^h&^B%M4kHdX7SJ!X!e3|sN69MtS!!;vvGu&XQTn8@%CqnBl=Tx&# zPAMJU_(aWnkOMU~7RsDpCoU%)DibP1`U~BKW^`#Aj4q| zTH!)OF_Ffj%XxR4xsfAqJFEgtyZaSwK*XsM!Cy1~S|Lb*YBfCw0O@Fi1sKMwW&$Pu zc=75S@V+*l2v@x7*e*dKnBookLS+G$^jf5Y%x3i@APCdf{8jO(b(!H&@nO}{m6iws zCE4+W`Cm1;mAv+f@`CtwK!fKzw6`}wc{~b zXJn5*UhfW9!9v6x`T)8XrG$`?Ybs&H6YCr3G&1ZyxUD`%a@PH0%&SY2P*Hx6=#tJ)=LT}STzOn5@jGqHKNb7(rSt*go3OVo=FqZnkT8-FQhp_<9PeOvKJ^<+*f!iF}7*5w0Sy5^YB=hUY%6I87wy;WAg_Bh^lp)|AtSdq0tNcf83(Keu0 zb=et9|I*#wVf8l*|KfGSITpfQ7~xVR@{=Bfo5=+-zIr^m71h@gExTor{bOO7b`jc| zh^-c&KBUlA^SeX;)trGyUG@U3G3_eV?ujD22MGk+ZdbKA@otF~DBC-Fo*8EC zaouUsI{i1wB5TU!=w*=8@j41ooqC5MZ0qCaUv)i~%Y>AI{f5KR~RQoBsj zPLYVFFpMvoBeItNZKf#AH+OQ5Bx*>VGC|jBbKO4sZyNsLl^yRn!_5yc@FVKQb%D=( zsCw$Y(6d%^p_V|5c!KIF$xFua#5(7C(yY8@K>GQXQ$O02#5T%{Gbs5+SD~xHCj*v# zZqrNF=(jI7cZer(IwgXEKugK*cR%_yFw|>x;8x;~^}-d@DP-fHD2C--j(J6~zZJmh zG8Ests~0d8*(65=>jRhE3QQ`j;AqsDhAGiDWY&2?zv{y|ggxv+4^@Qawrixo~~B z>jq4G-63gN6z5cAe8}f_u6|sld-1sggw@*|IGW ze$a3TnVHkb#mnecQNIz#C#fDmC*HgM4CIAOWNZJe&p{qmUZ@%!I+O%Wf>xttJzuT9 z{3^Q}nBctd?YiEGz@bPWl0C=@@OkMS`OtHIU%iIBS{(^+&E-S=uq9wnD&bR*>#Qvd zcjL`-D5l%o$htMc-&}8IM4^-oaE$#o^KqCQA!9+!SKZ1m>by%QTRQWfwbCVsJzzIr zopfpLmI13J>Pzj1rPj@lFbfq!So4rzz2>QPXuB&PtIz30>U)*zy%|YEKvae z86(aP6^*HZaZ2u-weH-J+9BU61(ZjqQ!1X8I`&WbFi^&1*ZMSNV?wI<06 zKf=X~8yOwz9esy?aUn_rq5!J*b31E1DZ>n5aepx9*ez59C#O6!%WB!>0qH#K^nGz& z6N!jg!S0?)0u*ysw@dV*dWg-hSQUGPnQGH4lg{ob8o{V~KDs>h+q7je=fGXJmIfiH z!A7hw-C4lI{MwJ@NtpH)%m!!{T{K(mrsk00V%tMqiZ8Jwqyc`dCU#`f4%c%2`GDsG z-;Sk+$EzeHr{vX=Qa>usQ8M7FK`o$$*J|30dRVuj%0&J*`*t8_Z|$3`k>9O*rb|{x2Fb{l zTBhj*z!W@#dnvcUT9}>-(-hdL?(idAxyrD#esBbxgJTiE!BNA`H?e zYOB=WV8`JQe>c$zUfxOkY+Z`a#e`KSIVIn6JIpXdq2h!EN#07xq3?NRJTgar08-@O zFw}NJ1y5^Wg}4tqL-iGSfhc)*RY?-#+k03Sh=Op=8|mwejRJ9iQF&~Jo4I$-t7K(L z8K~N|dfa&Q_`1aF>X$qLfue%cM*Xw>LOX4Ha5^j(?$jZa zXTR2sgdWaE1!fTh0M+pYl3p4?enK2tUfv11H9LUDCZq|hfANTqV3aV= zZ(KT3m3V0{%FWi5|66#1kKij*d-r+vjeYO1az(s>JJV1W`%!#kx0D1&(Et+~nE5Eh z>ufRPW)>3wBxj)iI1WW9?uwT})S`kJu4YBh;9pwX;_LJ`Q;=I6YOzVz;JWC9uaYXy zFqb>%#w(3F`epp5k_S!EKuLW03NdjyGBs@KE1KD4v?4fN^{qB4$gXPQm}cj`1tXj< zFUcFYGNm|qQ(G3R#+XwK!|l~+$_!Mm7Wzswujjm%*2^0x&+8VhLoT*asUJMas#qJg zq$(zjFZ@f-DE8T9ckBb@;*?eEsC>3e`hNZeCdo+j{&4LV#a!qf%th(iyNJh{noVxI z1zlfBTFlOfm}!n@9pG-}!gzWhkk#{d;{ZhOY;5W~tq$emFK~oOW0pO`qiWDHP2&KY zdIciIYIM?R3Fm4FK}s!PtL}v9V?0XK>#AAVh&al00U3#MMas~uK@(hH)G~m`0ga)8 z`|>l$00BY;6(*I~tr|!Z2D|L*TT9Djlj$s#&H3H>p_sQLkgajBx;y8Eh%{RQJ>VDB zRXXi9(DBZ2I{|HNP)!SJ?!@8<_wg^~b)^e4OAae5;9rxeH7Sf$XRhNdP&D0Ibh!{E zJITH4)$R)AQcXE_{;(C|RokO-#@Wa+NPjSMwa*Z#!af@7dJONOXMuyXmg1l<)69H1 zl3t-YW-@91&G<0-=O9kP=)W&e6*F#+v@o*)1O7Xi01U-OJ_qxZ!AfW?wO;C=f9>rgO*xdb<7B2 z-d=-SSw{F?YHVK8YE+p+lnGy{K!zho4^XkAJ4zAzVdmd=69@U9ZKO4mhe%3T5`=fk zsRJGOLx(1wUq3GI>zVbp6}8d$haUJ<_POB4pF~247a}fwLp~*Sf?|K?peYWD6}|7K zVpsA`d&KhVjq&E7JHVs3I+MB`{e2nT3j+c%l>Oo!H{RnptjerBklO>c+vI*jl2~KZjwD(i*HYh0#RKU1vq@jEhr4AC)PU z_Au+phC!EP=fZCJvidB#j6NXkxuMaa@Ho|K6p<$5ZPjf{FIfow2sHv~Ofge79Io-n zkr#5EbkduEU1M#h*onB>6#M3lmZJh;c^r8N5_8wI8cOBQP!$O8quAYRePTpGtjbq9 zg+|Tt$$pMJi`BEb(px?y^98gB#8f-6lfKIg;cX>YT}cb3EfAxSEMD*Zykz}f;u8hT zKE9RJgGmEe~Ds5j}&(4jYRiB&6rVJo{3{*df4yIb+L-fBFy8-=HKSJ`aWMORCg zGbgh454AUHG=%q+$1$mi<*%ucgdoh?&hVa=E>aO8$4JwEn@1qMViW{aUm`=ngL4Y7 zbjIy;94Kc1PeN#{JfkJ4;;OALPR$L3o6fz#$YM$NLr7td%=Tl~wp);@?yZpTT|Q3; zFI=a^X0JeO+VEcALSV-Eg_4OzK(kyQu7T>X=KFDDYJ99gyDC-_mZl%l3OVS^0bSIF zx|eR0ZrE`=j0eSaX@t~SwY7nveE^C^{aY6?iOjR6MyK-KgdtpI6IZls@E!tpyyM~? zmmTm2{T$Q|jW30pBwl__ARzw{5f4kEI~*hhwd_GN3Z!sw9 zX~%0r)trg<$71`t*cet1I&t*i92Yd;<&T?4R^3F1M+C?`WHE^=7-WaADKUJRo2+N6 zJX1tooUEwBsZ$oWfT@!WYa&_BA@r(RrieCuZ zWl9z6S6y~m@9rg2`T&208gw2d>g8D+`5KASE4u+TftG9r-)j7$pH{djd{sgpo#Vfi z<(5doJrHhAa-HsmeHnz6nPLTa5)3K2x2f2CF!)x~h6k31Xi4yd*0c$$6v%LA^DxMV zglQ)?lrRaeT#cu|OZ2n}p%rS23PRUhFV$N)CC?{eX(a>n@-7ZYH;)P@=io~I`-R>I z6R3@kBvKV$FbBgOr|{M2CvinefUu|JMIajt%|nBSJ&3fq~A z$7Y%dVf^3n*bcfmPSK>;glxN=HiL|RtMU(ubT#T>@M9)JeM23PwBkx58I;hqbTX<* zXT=P%_q~)ao8YQPV|)3_XCX4@&A64wU~|1b9HB9?gQS_Gpn*?jY|C5}UqayaOw=xGPgVhfd!%w9>&S0O zYo}Qhe<Rlz?~9)FMCIC)pNZAji0Lxqy!^LvfkaM`l#Vy|3Ft*>%ffZD1{#%2Kg~a&hs?!PYTxU}J$Y3Z} zNxidcncxP$i{ioqvk|hRX=nU5>JIBn&ntrDkCf~%pu{}%iOgY{^zpvDKTU>C_1Ov|~ys6-qYB0uM zUoa7)|Ep>ZNO0g_U?*pDQ7T-~;FRT8`{0~rRm`qnn)3$Qj&tA+mngxXRG{bhcwa;G z+**BxWLx|V!!a``&W5fIjGLZdI23j22!}XE))t`WXPS5NSdHw89X8>Jz@6Q7Y$deC z0nHSktA`$R%403MI7UfXHT9Ab={~Rdzc?81kn=IErMr z7tA~)sWLx``41=RbeIMRFChQv{NWA`hJ{5BKU;Bwfb(zjhztdi*v;bvTwV01*5zKm zDfA4A`lx#7D#gQ!SKZ2>xJNqbISl+8Jnn*_V#>Re+7E9uFiKG<;Eq8`MlBFH1l zlVCnPfxq@kyT+w@8B#SzpukSnByKpJOgbnMe^#$lqYQ_0Fe>pUpjqvMjzH!@jelNG zi3VTEy*t!pE#XNKX+;s5*U+;Xj=;=;DI|d?Gc$CcIZ#}3yo1RHNI&Yku#%lLy?Vm) zuvIG4Mmq9Iczz-a#e@0=n2C49l6(M1Fv&wxAP?b5pR8H{&!1$;ROrH`<(T~%Bjs3N zD)1`yja9*;$7GQtbfg>x3i0y9mK|f^hIW5Bg6c`KaFHRusfD#l%z!c(e_!0oCc?;n zz|`)NsHjw^q=0A}p5Z=u2$sMFqgL1dg?)iIT_MU@jw;z|vq&Z+P?R0_Kwk$+v1?UX z8OmI?DpRk0dhkttrpS;)8jqChl2X*_c0~XC;>P=71HIfM`b60V-dV?Ezt-v+H|!fM zjm8{&V|=GGs6S2p4sTMyOi=dJU;uX4QPxS@#hJ_$6{}vuN6}>k{KE(8$K514Fw(s@3#MhI_3k-YgNE=uaZM-HJMi-Ar^r31D?){9ucvgKe$; zL++*UvaR^%OM++X=L+e(%fhJ~m0u9q2&XN!9!d^%!t&-bX=p3#D{^Jz<(bN608gBk zLcXjhP;NL(OPu{ z7CA`I=MLi27?e5{{t4i`kr>gwrFa7g*B{QE*$AR4(gZ#|i?BqGgqnFCVgdmiE= zPTZEoFf-H`CHYMMH%n+Fc@eYwrg)AoOD{$2!fv=Jy0p6nWmd?86XEOUMy61;C-CHM zK}ODn?S=|Ayh=am+ zR|331^*CBOIfRmv;xZqwP4>7h9S%>>&rT{)3=?vObS)qH4Tl7qq6D?rlnB2DrGfS_ z(T0qahtS8cw!PH1Xq$CF3bmYq5LyC`-@q-2TJ`DhKzg5Z;57?Wtzu_t34vNlg5nPe zf5lOq0}?}@*PyD`>e}j#pouX+P|c652R$YbQ)I)ttdZKL&NL5K0$*Mur}pFf7TI9w zL^eg%OqxIhZ5@MaHd#8_U`5$J(8^xck_2}HoTMaI-;H}vfugUA`>Sz!u~2@x5LrPt zPgmLhB6T62xB{xQJ*)tJ$*$&v(JWX4nffCEBStB}zzjWL&1>1r&Hg@dHeEt@$#$cnE)=CAvIg8p5`;|8}t56+Kj4Sb2d>Akxic!R0PE%#9qtajj)w2FBofVsC^K2Aw zHx)<>u9`Tm$Y9G9)AGp@Qbk!|0XUX+pZSXSMvt}e{E?>j>R6suTzgOS0AQ@6XdIdZG@>t7G(D^C zvJoWuRe3U2ud(DN`*B|V97k`vL*_1WMissfykpCla6n5OV5e*{w~aT-_y&Mvhn+vG zYiArs><rH1FfU+b@D_-y>7S8 zNn&Cy0cTfi-%hLWvwr>Dx=A+oOZl&ZUUjRCvFA%Z`kDff^U}|^KU57q^4sU#I%d7T zdEgSS)wqjj-8<8zIZZWZh4rBD_3h5{+2HShk-ROoO{IAIX9>5;`ie|~AyXRi; zqryTHE#*z?;KTAW4{-(Nb>yggCw-w`Y_PH9 ztnP%D9!WH+UmdIsx74^m*63t5WfZ$$f9yjjbk8^Fwd~69=ws)uT!g$LylC`I7b)m z>`V1(db)XVokFAZqHQ-y`F-GN@*sJSxT3Q~KgbAuFW>7vk%ZNGyMVp!H<^K2-KY*cut z+8fgkq9U9>(M8w#*fNqLBHB4JLv9obQ@$v#}lK8wJI+THB;R9h9bb0o$;+d653jRTF{j@^>ei- z$G~|Rv6jq*cbh*ah+?la3HCP}8u14lCJE_NT%pZgp_K&gjBL=)7jH{VFBXbZ@F{Rz zCYR3335#9?!Rl{Y8lg6IBiN-EIzHuV5uWl3)*g{8uBi2fYcAxzduAjIhnBD9%NXRC zr^;2>ah6}PgzH>pStn%oLz|J{K9G=rpX02K9!6I_U7~rIAB>m26m=L4RAxSoLfk_k zBz8F!h?S{vVp*v=o)FJD_nl`!5xw$9zM^Ir3fmz(=ggn9E_ibbW~7N){JVJiEIcG`{YaAVfN*>KG7^%_3<|9UYUoxv^6a; z%!{w_@_tSHt1pxG7x0GLO|IvJ6)6!0di@Vn$r=-}q~fy1z0mLCH@@v9UJAXK1pb-+ zMJ>2{j?mRNo_i-;^d70HG@%gp#L-d!MCc+zO>@j1nrvv8sgvFEancMQ{>7K z_ak8`K%#sZU=5+rkJ~M|p-fPLSc+N_6p>QB)wvJrBGnTPv!=N=awK0KLGjYOoP%{K zVJ-n6-VZ09Xmi*r{{pQndwCoQ)yj9p8i)^dvki#mB{;866ZL#Jhd+OY*DRV((UwJ= z5`GqOcu05>N{Mjk5T1QJ^Uu*Mc)>q|@y@>QE@jnVOt-?-CH-;PV*{GA0^G5?Y2LkW zAi-t#cub_QqvOrK#2=VZm*H;To}jL_DLWDTLhCoI9F2x24Bd3#sKDH<#`%bPh2{+j z6Bp-6^l?xR>y$KtNcSZi&rMW>0OIp%!=+UJ9==Cip z@G76zyKSiY8aeNalj4)>gC?kCUNuR=`#6|pGFz~y2qpATAG}~Sk}xKRc97IT)}fdd zg&9fwbxI~F&Eam2*zIL**N%8mYs@LsMhsR+Eyoy&) z`_)YrEUQNH7#X9@M%6w{-tc?p6DEvt&qq;e)U8 zM`6dBq^~{?D;Y0f&!IfeSEoW0sQQI-P^h-s@+TrRRYN{`@({s**~?DsQBMbM=_>>U zmFQES%n<|!!O5Ln7EWs}`W&x%%PhICLpPxAibYIm@=;$<15CL0i_s}j3WgJu#Q$3pFb!|K4T^pcCV ze(90)25X+Wd$iVYTqQ5re8itUZaL=9Zj{7`edF7*oet*Ry?kT}oO@@Z87(?E^eOn= zu_Ov>0F3(AEgi?83uWRMRpz*eoBNPorC=|Bc4sy{jQeG6RkPR>=Ky|A4;MRAeTt*P z#eg!R4p&V^S1{TvjntZNsxd{!xgB9W$gaqk%Yxg@rHEi>W2sK%KbkI&osFaLGO7=3 zqd~(*sI{hK4i`L>;_~lH_CBiuUx{3s9fGEJw;+1@Nj3s^%|&NGH=O5^6kP^Os!?^N zUC>`yZClXyQyLcSExdFymb8L*4yqkdWC0KiOIi2k z!*+mKZ!C!|3&9iVFjdKG_66f#KV&M$__J^RNy&H!app z&5StV&m~#F84k^Tzyq77;s{_Nd=q|#Lmd$JmmbMws!cnd8xI^xTbmr$Trkf-ds3(A zv|7+eV}*eD*w{=u8UK(36+!`d>3x&fxzw-*J_q0uxqBk$};?MM_E^Z#1EWx{fEqG zDJ$qts;xqpPCpb*6g{9y&dFQ^V)W=)ka{uv78ASN)-Q?CN+4x$BG|=mC}mfuZW>S@ zfLpP!+I%-E`MdzezrOGr7(ST41T8Iq6IMz7x^_+%spNv6@m=@Q4)R3#JkP9{$az^* zc}$FRKqLja=ez;xG#~0DG62j!?uxTB`loqZ+YbDDM#DdrH;oZ!bZv{I;SqWw@y03;aV;l_89>y;B1POswn$zBJj+*L%c zZR}+>8c`n&v4Mg&d9{Fg34KvC*HNWBEbscs8*?H>6UzMFz-+*p!SB4dY7GK_Ov8?@ z6?&IrLA&yAkf51sUZKiob+_Jf&5D{6M?42$kPf+TDQbV*)$gW@BCSvd`3h*uHE6yI z>014edC3hG!R`m1f)F*4n0`{pPe>*lMr_4Fy4VhwU8rOXd0~5M6QMB=MC*8~7ZUO? zkshOxC$;AOZmI*b=#r@orc?(MZ$W12F&f4zeH*jGr5d5=a%%Hc0yMtZn^PyO=Awwy zR$!1^jiip;EJUVnzI;V@I{syW7#fK&pX^AOYK364k^{EDsB2Xv zeC1&kvAF@_+P-ubIvWL)DUuI0q-jt*4r1^syGgeRR_JabM2VaNFNN^Un_aWx75PZO z=(`_UBGwWRE%U=K0z2WH%5F5v=XDt}^+)V3+~jN^%}Gl8zrlSD!viS*F8Api(E11& zoj=o+#V)b1YyGFSQVzqj;86Try+u48%t{UeuSH-dF;~MCj&KNdMC7N(`ZY>P<%^$7 z1TA!y3P=_&YaXJYBSYcYo=-4YLvTKdxF;2%GhWi0QxeE(UJ0KHuZ`*E7K?Btmc7DR z98Y+`*VgdQk>{t^y1iapk^sPQU3eDBtrIGKX~c(mx~jkBxIm^DDk*TJ&O3W0E6wm! zOD5Z_{_W~-xUl|jrTafQISFaVvbpQGG8as&et5COUN^KJ(@|q+0jWFFyiY1`i!BR4 z?*sKw3V64FzsN%Skq6U^@qthz1n`}%DY$R#Qz4PK`d1^l$*dgy2GRlg;)?Fu*+7hb z*S=A8*%?fho-(+bnz@?2%>UME-HGCqvbIM>Uz86L+c#7vuma*Ycg}Cz+wO8y&Ja_O zmD(32v%y+8c5Rw;pK{-NX-2<%vTghhmrztWX8Bduz@4tWhbkBMW3rT25kU#9b)Edx zz*m22{v0;LMK(}Kk92OL;t43(L9b3pECrVc@4ytNWP-YtsN;l?Nqd3 zQVi4FWHgy5?|WqWJq8;_N2aL^{8ElSU8%5#y-&5K<)}crXCa|=FOQ!1UXYreuZUc> z0i9=fQhaHTe$25mi7NeC*@r5JE{23GvzMjS}dI9W{ zQ>@DwAMZ3dJ_W(!>$oiWPli+4N5>^@zmGB9V2`an$l|*aA zi8!jrTkb?e<*L{tH_t=iBit9O;Tixt4o$l%J?PDwuq zxHD;|l|26HFA4zRei)DPu$QVSp`()HY`frxcjgJiAANEjEB96)dQE5<8)crt?Cer{MKD%Y)1M)77NV;liZNYfc z8^m{f5pHJrJ7GrN=x+fR>)&BDl1`%Am|=pZNF9$6-bMYpcnh%(Y_pI zaMgLC2=Ld+ZEJ7F1jQc7i1}}kQ}oW_xAMuhJNA+f)n+YGHQ23D1EgBh5eLNPiFx2` zI2Ood$EyuDlF)V8n7jf{mv}*|euuRbl6SBv36yCJk%cBEyEAbGgr&|^`R?Y64@8@x z#}d}!{ip7kZZqIeI~cbDzgCu8=Mo8kdiYI6s0m(}dK8UsFjwkW)Q2UEv8xD0Pw)8@ zXnC2^Vjh0ShmIo4Ad)MuR!kDEldX43mL7O;UII<~A)05=U3N+VMv!V=FzT|aG-XDb zmB$CTZ`s79U_l>;wLVlBU}&jgDrY17!fy>QyH@_1RIoP(yHP6OYJS?R^cL|ZuTdEV zI?HRB;80W~7>H&e;J2LByVUGhzQ@4?^bta70@19NuDb;URR)E-p+w_q z?3Ny4eSoKOV2fu0)(v8GYeBW<$bOO7yL24^e36p~uRWs(C2ehJDIDoX*RN6yBZ$1# z6t&g))A~7o5l8BZFpIUEW*PX8lv8eBIvM#q7ry!h&QP&2E6`|3eu3AmF^BA#XQ9fb z3v$fhM}JZZi!pa=(TT2Z1^b`PK~VIfkDR8Ic=R5!2E*t0M3$=5QJKtoy|`)m#Pm@n z3YMDTqlj4`RRcdcIX;EK^xqg5b@bw7EUYyk%wRwrZ+D>|_5`{Q_`iHIzNsj%mZtJW zu|15Xy#wh~&wG6cpjjm9qii=42R2*dB%%o>7s4}mjOVNygu_ZNpE`@VDJkH*uwyb} z^<5YhrfxfZPI~G9E;nWkDha$)KCY2O^phWvj`!Er&#gWLq9DE^d%wu~cgMm4dPv@0 zvb6g6&S^xv%%DS9V<&~=5Jmk;^%RW8ur5kDp_X((Vr8$8h=YiMIZRqYW(n9Ru&O_6 zv6_vN)#odYxjb$+S}s$MX;TjOu0GUS(ezutRzptC#+Q4NP6pLV!imV>obvXFcc;C+ z(+J$CKfZ#waSak`k(on*c)oO{8rOT=pp}i{tg8;z z6pw9MK?Rnwc{ZgH9A$$yV7L@-=TPqauV-fdHJTMST4GfhKv5+uitc+fp^WmJkfoRe z#KHSS<(ns3E?LSjoAs*N||qz(fejMHM&tlN2Og|6NkFq62xl^auH)(xaZav|VGT zRt#Qi20w>i^V}>_rBNKVAh>=H&{p=;f~nNwz;y#lC(UE`MeRu#9R6JVR=j) z`&Y@f@is1OQ$tNGa82uXa}+Bzof?wne*>;kV3{g6@8<`6L&t33b?MT2xmBfwc&H*>EryKmo&H7Nm0rxH)r*5%dv*%{i$-gztW8=}NYz19%_I8V9 zfWK|o>`U{VH$a_z5m(6Cx^#|;q>oLmtV%*Kq;D>*K&)e77m(F9FM%G~EcVFn8uQ`l znIJf^6xgC7Do@0!*V4npZ`gTT=IqJ~nZsLk&5Y`llyG5eH#})@CEB{)2@IG0NNy+3 z5}_M5tCO8TL=0MwwbLJVU-i6KDEar|KjCa~#j*u5qk{BCWnGpUOp5;f%D*K$5*guHn=YV3iN~#q zjwy{#^vvJkCS|xlKEj+9l36_GM)c;I{# zp-5Mf^QtF|Ut0|8zzOF7AaJR&84?HV^I z=(7;mWc|$The{^f-CDhPddq~DpDg7Z5nwTD`eYPvIO*FxOe0$h@xa;EtHDV zE%}#`%|g{mtWDS|O_}R$q$Ne^e2>qQzr|>RF5qA|R$NQs#?&`ooauv003h?R3%_a^ z&yl!2nGCgV&QPV!Qm}4Cd0kaeyj6qJX5m!rgVS~QG(wier1Z*0I4=sGT^HZ5Hn3jz zL-iC?TEfkc80XLRuAhQW78S^$YvpRyIec8u#2AEoe+Uz<*T~j`aeKDEE zezaf>0;Q-AAv58h&7zYL6Q4&C876~gH6?HBDl=f4?{>=C1#ig-;y~ z`s~6YS8BrMY?W?hRdkoY3#>t3ef&|%j&kv|{s|T*fz+l(RpzE|1&rx3dBK#eBowar zP#?6?w^WKn8BSoF%<*VN5zq=&0|8ByfXbTRG}JBg3#IpgnT zTX|08kGv$07^9S{;J6{K<{=*5u3L!$fJ`jR8sM1NuZm$jfQIC`J4Yj|&64QIUJ2HOnp?x&oN1mtKG{1BIRW zt|=L(#5{nObf65kQ3<_55*eK(;9_^RsZ6de-=mOUU7IEbu(JK#cgeoGLY|6GwoHL6 zI7IzSD`^l4RA1LHVX5U@eU#xf5bnE^d2eF0PSFUh=$Q|M$^ z@20cTOTt$jE~wFYPC=*8$Gz0m%sRUeIu0@@PdOzf(tWFc4tba0C-UMYx`UrX`oUF| z;;e<-8$(eIjCPXf9T%G}1}`A%4LI-`((~*=6G)`HS^m{wlmNKuzP{YlaWMehNh->l8Qb)`~G?l(T zxe54QBWyT=Si#2!iD@i3rTDsfjjwczP}6R?S9nJoa8~AA(CYKl6!J4(mCQ)^(1aAk zHow~E-Jl6pUX1Mnc!*CX_Z`1&P2n8nCGr93`d(V@KtcYSh`{4&@W5lUFH%f$4$9or z`{noqYXFs7_8ZEuJ0W=QL0JuN{OYf#%NqQrdcwMN^lp%4g~540?^`!8HZlJejh2{4 z-V64rKcVeF_Uk|vy!8559Jp!7LzIt&^}CT>K9dcr&{GeIf;0UT#9OXpEuyD70Ggr0 zT0PKr+vMgE)T5_R)oQK@2xJ^=T zK}d;B^^Nr2d@aePzY8LY{w)NjhXZx={69v^$aM41EfWgaZtcGa1jcZ}F@JEA%-6ZL<^wva3Xjwvl$Wmo?QVHEng%Q`eV-8r9l2B82ie zLdbqVeGEYF;b!oI!ZugZtC}?p;v_9Lrp!IRWGtI-PTN=hLk31_hA9x=*wu(j^N&fr zIb2LcS$Ofe{#RZf)5c1{VfyevOVtcu(cp*^r-{R(Uz1yKSDhE70YocJ%K#lkJ2ey5 z71FO!bn;t$N*jt+;ZyFmLQd14Y)%b&(wpN-U0>#|d>ZapOc z4?b^Ak=-2iB;1{sWW8e+#S10*AsJ~Hn^Ig$abxb>slSl{#X<9B?kT+CUsA{HOU=fx z&eg-h^7t^vw!@DJ!y`FAQegJz-gn6-_4lspn$#))p8oz)lTnCnv@1*fE+(OMqo=NS zhoIWos5>ed6rge-j$`x&o zTWi4?s9Gc(b711Qp%H#Ys3e+T9Yr^JXFwhMAsB5iwJ@dM#YfoffRfea&KdoX$C}tF zjIiR6bz+_ey|VpKz+++Sv4A9U#jCkMJ@~&R3D5SN{uuxoxi{!6U*R!&dM8ToqxUmU zqCUWkkwRa`=QsNTAu{3hc^7x$eQJ;Fz~ZF}$*9MCH;O?n5W))&v7KCgY^^sJADNqJ zty~DqEbk{b==|}zatGyl%Se!`<99=8)Y5jr;wY$!R`Mf~TJZh^6N zvx0*de@8x98Oew<6hDp>ay61%yV$Py7n4Rk=0;6$mHbQmH&JJi^LI8#`{iAPo8Sh!yNJGNcpSE^Sb1mujqzo#d|(GDFJAVc{4^FjwmbOtle4BI z5Ff!2DXTd?#!b!66aL6+?gVv1_r^rY{1p-urwFgQ822R4K1^wix!l3#n>D_IG z=r07-e%O_S>%LtQ8(8jyg_G#w7m|+4apkAwQ>1XiC2)l3%U;%441A%tJ+$#$k@lEy z&LspzS)S;E1B%Xk`g0T!e>t_GxD@{`CPc+rKu7X89P_q(C)b@2^O)U98Mj+S8gI>;+9D)Bf8bJhI0f1B`t7M zeiy*UUpWz)(g@enjqTrHQk@%lc67oah+<^`Gk5?{susFlMCu49v<`q+4Hpiy?$SG1GpI zE7!Qtm8|}Q%*C2E@Qr{t9ZwjzM*B1vzEO89Ck*eS+ZHDW9IFG;U-a$@$u@h1No15N z2Nvy7o=&)Ab(aUjFuC2#1KoRMut$^YjHfC82GUsreo!#wJon$MslQeuQ{6LTyj%#J zjt9Cutg}L!@GkR^s)@v~t8rKhN4bVWX92?-Fk;2S0ZPf!q@B7#OY)<# zMHqxP@_r%_L6;4n(uT}=rv4BJQDU}!spGOx*+h|;4{(`GvN2z%ER-MfjmUnFkrFTqhxE11;d>K$@Mb}FbQy2& zzo}h}-N$`tCn&tBErwob@<*W-kk~S{p=L1Ht&iBFHP4H!)p)A@B|d-#E8fhSs>Stl z>!y}mQRoajkuB&K>2D}=^_DeBGR&>i(LTkJsG*K7g4a~IvIkM86WA(>i11_O^*jU1 zl#w_f?4PwSKH~UHOv{7CM&Y9!Z_rOfFFsObs{f1g=L1Ap6%8qnVFgmyb2~IUO-{A` zo=-d2GJAQ+qSX2bA1@u87NOw1wL5|*c|VCw=w?$9Q{K8B?J8!1RT{k1uMa!lvU}VL zwWT0Ma`o(Ie7zfQ6CXi;U&f9;*;Ys}_zjCKF2hMr`B)fkz_$9MB7dcHV!wK!lc}<- z)h(WazYLuHu!C=e?xiKzL{zp5QRdM`i;rqUsOZ3IR2QuRGztX9RJP3T7C$a%hHEF+r8DvBKd4ca`ux7S{7Ak9DM|tK479?qA-Q z;i*nDTek~g%Lu8&Ta_zI!CIz#vI-@-hZ-$lIzl&{#N@%WH?~55__)%Hk$eT75%xy7 z19xzkmxe%7`=iX3Pbssko(VD03$l|kvK}aXga#fSS1!~avH`Av{6Z#NorFuGDSo$> zxvo-xeyIOuvE8pP=TH1W5z5EQyow0?T|uiiGL}ioie1wQ1`j9qmI37)IAv(b`|_hc zxz=?w6E2S61rH)H(F)$(uT)KQSPv9AK(SCbY_VM}{aP|3v|sRnF(gHr&eb(_Zw-sJ z%(Lgsse!w^rC~UJEd%h=`HPz5r-MDANG%}st*}gM@Xxu1O7R=7tSx87H^$+)s&HL_ z4%)_T%<+-ImSwaWS{K>D=w4%aoWI(@38UETI!r=f>=h|OzMJtduAWy@j}4yt-E|L6 zLyuh)|7LE`m7Umt1DYV+TokLbp#_sqF1@V3Twua^CN*Qes8-ZrV7%6hUU`_+O;1C} z%*U_O=#N#iW$tf{rj-yl{E@+UE`PVNH6W~u2vPt=@xX=u%m(0}giIG7j`>l}Ccza5 zmj%&BM9km86k1B~_)-ChLKv&dcW|GnxD;LayUzXP8o{*wz#0aDLQeLmut&8S)PU;2 znu}tPqfx6`(SS|#SAQ%oK!E;TEU3C2uIjmW}=J|LtUUIdi zIy|}iNzswewy~4LO*s69REaM!HeYEBxgL97)dz{He>L~UO+kMW-lZFMPHVi>M`+eea|^6;euz$q{-kE(iS^!ykRrK!54L;>2BO) za7Lnz#e^)yTaM^Ci@q^_^~+dZLt3_Q*t$qOa2>y0(|UK%(K=>NJT-3A6_32#lqV|D zqD4Ok>)>fB0v3M2L-nJO%8N91VReFH=E}KJ#fn6(WuOuB>EE!&Q2;<1a*~fvECHNkTx@&k3sK<6ZU?h;9@+S-%!7S3KIw zkFY8t`lu@;Y{@1Uj5pEGR{>lsops5fX^7#`$}{nb!5My9%@4iu;v+L!+4jZV9E+w> zZcoW3X4jo*4w2uo3$^EFfU!Ld9g`Qvm*#va5uk^O9;&JDMpSsL)4bmR9zdg*4FBQ z;W6y0)RFg1od9Dp6p6Xj*tx$ow`SQO6?hlj+`&n>z`0R*6)%hJW%WlxkT ztg?vp`a|)j-*B4rLq;%FlaB8MC8gNx7E4I11Rj}2BtH#v;iO@2r4byin+y%M3sIQ0 zi=(Rb9*vj7u0~FIs+Dc(?3S@~qj04>3B3tEu{8dyKx&p|HVL_{kVwgzWC`2c$(_k_~f1 zWv6oL3uTy*CB2V2AZ3?OLANY>rR4{&QSWlyaPU68C9LyccO3zoiQ9d~sZt8q>E_$h zHwiOpsHXtHd8V+iu(nKr0d74&3P6ejg2|Wz>*uej@3DhSeJ+MEM@MAVEjyzp?5kgp zlp4PkX3&FerP!S2CxC$u$35f{$o%XAUm-6P5l}yK1l1TX*Eu&v_`@xhz1h4w(yKBJ zNEjofoe~UPcBA-+y`s={YpZ`FR&p<6Ydwm8jm9X-Co-{2weJ()(<4a$`wh-o4WO8K z@}y#7JzU1Y`-U8(I+2dg`qitl1!0q7HWCl9x*sW~yUH^u1_CeyAz~MC)YOJa+nv9P zCm0zbKy_$q4<8*k%O$@Eut;^eboq+f1~%KS`wOi%SX3&dgojPxs4Pz7CKX6K41|$* zN3S5!G1!k<{<0uNV~mFe2Uaq{ka*Ya`NBuo#S${Y zYe2z=28mTgx{W$gvpLr9*Lf_CVp%KLSD+wv(Iq%$TWlX0$Ao3@@b~!b9-@C_8vg1K*n6v}Iz>@FBK#_F=ZyDVaz8K?6_phZIaHDVEu%K*|9_?P5}ihE_2ff<1M1$`CrtWVJzgvUHlw!3eVMeKoNMoL028tbfaoah)~=go^wO4*Z8 z0et!wa9;WxE4kx|^)m7SHbu%bujZJUjqD25A07HiN5;&_gh0bJ`Oz}nAF3Y!O=Yj| zI7-$v2L_B%-h+<*5hVc9jM39!P=x}_7Ox_C@l8dB!u{AryC4krBV<0|PM9Gtq?-Z# zX;h+K3D9e#r{ZI&l+hxE|3-q8w$mTPED4`NOXw0ie{%BvuSwTYO%al1JXN>WH_CCW zueiqUj-F~c#+Mnv?ic#{JQo?ypoqpP3Ae}g7-q!$=d2C7nJWiGB(L-b0iC5{q8Qjj z?sxhKsHGnJmffAvB9$HY1ZKDT__C$SHyE;);|NajDP>0S!15^pDl7?3pY>(4$=yXB zjKa98CfY#&^w~`v)U(y4%j6mZSaNqb)_>DTh}o2pVK>|;qN{cvXoCu@E_ccZ`s46p z_C;OCAxW!I_d}(Lljw@CXRvz4xE7Dw@4i7UUNy0nWU~$JCS#ebX}N8zvwMygW``^> zxg*fgMWoB(HTt_MKLAqQ-r*Ox4nP5!t~O8QxSMBAx2P?!SWZ}fkZi2HE)Kzxq$$F4 zc?G$)mc*f{wv+{d03;{$S4PC6ZkUH!6Uuk^B0PaDI?tUFHnI9z0D}t0tFDP%H%cdy zwv5Tuny;$!=3Z;D=2?PU_0C$?KO+k4+aPurN$gF>cq`UOqfQhCoDhxqYxYBLK1YuY zXQjT`=cZa=gl$=&0t4*->avW3%6z2?Lu%`j5QNnlM9`3kNTxr*6=SqPmU<2pw$!(* zQ|EPgAw4w&?##bLE>JXac*&4~!*3R|p@h{&FY2{}FY&38EmL3OPj)(k@?m^W3e zouBr}WE$#w@=OUa#Gz4tHArjL*0ToOI9`@yFGRubiuaTe8;-MM*uKGGZYd8mwf+6Y^!+rXaSave3NEe{+C68Ru{* zAzd2_8?O$$(hA?raKpgGeh?I@$w72-8p94=u`g8pAtT|t5k=IF(pUHcA10KM%Yq|P zHEC<$I+GXx9qbSyq1Y;&Lam=yi-H5}Mmd;L{vKC)vk1+tc<7@Eg1OG=6bSaAk({t> zfj#e4fy(Zie%y)^V&s^wMcXFVx&|~=i+Wu@_ZL2BKfDnZ%sMw$6^IG$vwz;oaZKU- zN`EEZkEgM3TEe(Tg>$RFEGz9MyPTw}-s6dTo&3V&7@<)&fHGL{t+?T1b zOyWtJuYrJI(v*e5FV*{1h~@YQ1Nf2m8452yn)%wQ&RWk)WyBxXgmQLSI{OskWOp-n(lbb zZ!9e42fa|-*8|C-Io3{Mk~8xv3dp8 zmxL9|bL!%uV38VSDKfo`;gI&SqQurH9~QWl7(qgAmi-f@bTdMx zUuCQ`MWof-6k4Cfq!9ijzA`P9U<#8BtrvpTaLJ38gn)MKUMXo+hjm-IMTZCq6R_|E zd6K?^tljH4)Hx21{oM@`NA(V8)flNuLpMKKn1Wo&5kO|~C~B*c@;SdetX5IC?+NHf zE`Q-Zyu=6~PY_*OHLcP|5Fyr&7&B}R!!g4{&zlrtBPHh*bsSttk1UGw<$wT-64^gh zWS=MMgIc*a85SXA4~*_D*YGFZ+01Z!0ZBP)!FX0ab4T^P-$v7I5Rc-qlX z7Y>(XOa6k}$Z1>`$pEDTJ>gMM-OcD0N646~@9SJ(_1a{6I+H|xM!mugchxyj20zc% zsrPrQyhfdCj6O5M%8T#ookKpCWjPYayCcb3;D<6x?Gma0TAoak#lJ+wSs{hcvM^-c z-7z%?)&!u=#bc=6GXM3f5hfCW-JF}H3w13BEZs-)$FMq*xTYoza1QbC+>zHR=(T@A zoZT^fwL?`5O+-Pz%CiFPY zux(m;jP>z_d>YsX`Ljjxj;^+F_Jda!OhV9H)I=9*EAPSLp0pN4^wx-g2X=aQFg}Y zpRv!!-&OwzWx@xmoF1YXL7o#%4e(wA-5WVW4Yt>#2I75+U*mRK?u*9Mye}6jC*l1f zcEDc~+YshHRPZI>GaC~wMJ%wBxb5bg7=-G<<4JEayw4OJN;l(QRZ$lUQ9~bXT#w6qMC97K|YZicO#wAe|B4Hx5<*U|3}JJh#fUG$_D7xT7-lIYY}^^qm-{ z=K|Pv5vO8K-imoGes+Gw=usDiaC?0rEOw)$6*3_6!o2wxH(?gP|5GoF1Xx_>-ZUlq zk@c+9FMh5DDJ0~#qW=`azP;zc>=kq$xL2S*E@8VL>81~O$794EWA8CkvL!x#6LF(s z88jd`&aCT%@VG2b^Xqu$S{paae}TF$qC$<&5cM!*d_G=j1|_SaZQIRgi7dh+DphLi z)r#HG{@Q8|z#5KTh$kS;aM!eQnU`d~B-#c=^-tuELwuBSF+YYKx?tA`2( z;2<(}4Zrjaxu*bJeX!!o8e5_C%&T5qeWd;*NAg+$YOawh%0~&dOJ600yo-4cwR7PL z3If|RD*JMS%`}0g_;P`re-)p;N-3F)`ZXl3%y1soBsM8>Tu!MQ`^TL!4{_DvIs+vL zp=N!bT-X@n9A8-+R@ddadXU3KC^;a60QO+(SYxbOH%b0lEJf3p;fin{rf73$P8^!& zj*KoTJF)+*1$>r+svESc5r=?SL=976%QW{|-des-UT{H)W6t`N$YUxO|9Jw140a7n z_on0D2h48N8DR&eAIS(BM=M=QKtPk;!>m$);S3L)!K6J3+cs%j18T4>hO~^_%K|a) zVXq~W@C_eT_p)tk@&!C5d4PJnu^ld|w*->2yYMIe&8aDyB$J*%hq`#Y>%nIB%q48* zgc6!&i*WP=q=i;$*3|>Nxp9DArbZo`HGH|!3J^vd>p{hiR?jqN%mYPOL(X+k2V2-p zi$as}Ec&-OXyyb4UC|?GC4{eGi@1`Cr`c1Zc<7r_DE~p8L9wvXrsY-h_eMlT(+1&r??uM29GGZ=@vHkd0s{96tW8fLX*O;1hU~13`z;ckWFTnKNWrIbi;rZHH4h zwaE4Ih!P@*mpZ$nLt@?!!~XyfI)~V7_;C^5-&BEzaC~kbqX%B%Pj>0jiesX%?_IG( zD(*L`cye#{7F2;Tc7dU2v#S8b(+8^?P9pZf1@U=sGcipuSM{h23e(QT=zmE%iD*ld zt=5(Y`U z%()6{13q*~`p+N>=77mCz@2j94VzHpD(WK9WI$`fVKL{Qf``pfaH$s2oV>P2<=xT%j_h93;Gi~^5VXz`z0yn$9@SR9I=-svhFBY zt_fTMTB7H@q?_^zGzgCYpViIg(EyxMx6Pf&zYQKUKTBSVxX#h15R2=Yz>fvyH0*U^ z@E9J!ES_p;#ZNmt4ASM~>Ti@e@I9YI-o!WQx>-T$h!hbR*D(dwbX!J+g{k@xcSP2j zLp86f!b$1s%$9XXdBAGy1_{F^^5)IKIJXrHLhq&9MPgc^PmU+JNux$H3}=N$*fx+( zd%jB8V#iDs)sT3FY%lM|C!_{a6eGC8EGg$j$cabgJ+>-!-B@4tZ<+cjU5e+1(&p%D zyGA|{)0D(%j$;qP??n~#BfL&P5i%j`FmHpc)8x*OxhR!J{R>v$@NW#j$e{8guT@?q zn&Ix+o{cFc9yk2WKX^X;4R)xPw!@sNDIezKe36kj=8rp5$&-f!>N_0Aq!vxfGB<~y zoAhn&2iInLU)d~~gtD_zjo!s~c0%m_DS?nwuH#n>RJS^`b*rf*00JiHDn z#MZ@WQ@3{Fk$GMdFhzJEDHl~gyN#4$kW8*rD7!ngmt^A8r5|keLtuk9;@&8Zq^7{1 zY!E$#0)Gb_Rg$AttYdt$Dj{T2p@v0ou;NA`3+35ot2Di(cum+TDy?q}tBg!$$B}Fa zp>3~6W(~?HA511Qj3OTL(imX9??KeW)@(2_;irB?n6Ia*Q49pHZh&Y+ldFi`1K1nX zE!*_I$>jR7%tWSdSqs(CIEJN5PyR?Yrf-pwxVK7|rr5EB&c&>4@?6J1H7%&5=TNFB z84Ml@iaQ!*u4%Ps3tbuWC7!3}*&Gn4w5p+LoDG9lf7$RbEhoYmLw?mOSP-=$rxufq zL(HAPv<{@wBykucxd-gSD4Lsxw@JoRFvW=Kre2zx4s~YNq^t8sez>jYE>HYiS>6B@K9Y0sL%>$U>uLvj}fJGBDRfeB*3F@ zHJn@9;#TWsLxjntRkO{hcP|0#Y;~e0FojihObD z++{60Qj~tp-|@?W_l5=mNaQJCoXlZ(JG*@9I@mqn$VIEpdodI~ld{%M~-Fk_hy=(_o4w$E<5g+$>A?kFTWTY9f#60_1(CV#%Fv3K@ODNaREYU% zuJfbOLt=p<05Rs#xB_)Ck6Y{r)6Xf@!=ZRW8@a5tuNiafjad0Ny~1+#dNMgR=NEHN zsKVCOuA;|>ys+8$$^s?hy`6pil7RBO6@M-Y65=F;YGdXd*0+O;Zhi!4Nnq39TS$B83?t~JDHGBY&nebB8<-K^?wsrYK!fmn?RVA?5JVV)k+;%R zrjM$E`KJg<8t&dy3k8+o-Xe`OC4JK*YL1PZ=~^&>9GKC^KVaN~!4)kO>lt&Mw)Cx< z>u2TQiYf+{FuvWT%%3Dy-V@g0!!;;i20&u$4D{A|G%w@mIA);&57wUfH5laNl+-<6 zqdS>3FSCB34uYb5!0#t7%#GN%8m@z7s>I$AfEAH^Tm5;r5N7_3J8tHH8WlN+Is^d@ ze&;YaG^8BG#0cJo zi%Bj%$dGO0^w+{h^~>rwdSM;AC>I&UZ@}sbcDzyDI-HIAbW^4Dbn$}%_E0& z2tR&s)!=6Aiv}%s6h6*6`hZSD2aiAL$_cxXPX`Sl0s7BIgFH7?rER&`+F=i#xdLNz zn5kOaD7+#*)F5WUD&unQ!KUrA>xD?nUPP$1vcyzdFd5|tTdp#4{8j2R8HOOfSy3mVdFP-HZ`of zSu}ary)U%sz0gH^PEX(KN9E(fpPd0D^{9c{Y zP zs3IOouV*e~SJ7~_+rZS&aMI(=&*l%^n#sm&2;}g3NH&4p)uqrwf@7}OXSjDow=w26zJ1y3ugg|Jr6i4h?MaMN5qWvUMQ z&@xfH#vheyDEkrRzza1C*1MF^vg*nWXdhC<_I>_WCX%3XZ9!qMNaCn%i>LFu+aqR~ z4%1RB&&pTVDBx?R2_kA3h4bSa^bbZifr#S6!8IjQ?6|fTA%rOfPDq5OJZ~;y1De;e zZIf$Y63eQppOF?!u)vI)L2~+7ya$;kyC0kqwq5LKHwXqH2eDY$6a9^?7AHr(GH^!MZpbQJxK?~}j4MvCC&P1GI`EEHnb)I;^z zG$3QSv+2_FAC9v~Muo}YM4M@_nEZ`MeVd$g)J;_aq?-kS5HqIUFsa}eI9&6yb#~K= z)v-^?95XUJ6A_IsPhp$W#x1hF4x&`c?o5WZNqc|~zM`s|l7_l-6KKrV6v8r_Ucna` zOA>Czze!*`vk^+_VC6^Q?V7RZxdcR#M5v{1By2;B5p?W#VI$-!)L_jgY9fTjRct7a zPQtK%d)J|%B;uD83(W|1q*3xqq=LpBGlMstD)OLEGBRF^e8Hm3dS!C;&q`plg4~w} zFtnBg(qHrN0e(c~Y9%jQ4A8KSFf4<8wiU*G6a`_%dC~@1sYvjvPqKE3&8Jo=pRP}M zLuJk?&16z=Y<#SvGm$GhPMQ!|;OKy(p$41Rw{ntEz(h0-xC&Th{Pes`NxaKjEdy8Z zk=&;26-tRbo2`&$o*U0;CQM1XAYWv~(j>bqkQ@=?S)_07IdNek`yyDqZzH3<5sB63 z>(|mU0gE{a)bu+xnkn!Sgw|)d8DC!Ei%Ik{xFqzF;U4kM;6fJ~pyAlLgmx1_Hds-# zJoBKuz9A^#44#TpgEsbBL#(B0=w}$P&W{yft|?dqZ{azODqMw>``+4+HCV-KDZQ== z#g_9pMXDOu+1+Rcz$s5EW79_^O_LBvrJL;qV0Jy3QcKpj_f19t&)`Rtvu_JuWMp$v zUs3{BC9$n{Rb-V%HBjCl#i-9b9clomuF|>FR4S{{^VokLZVQzx8ZJ|6T?rN9?qVv+ zW2vA2mcJ2YTnI1IESg&>9yHm{Rf{GYtg;ecM{6-L&zPZ%;zbrE(Ka&ijU@K!DuQnxvuyAVu)2{VT>GWkPHgXR{z1vIm{; zq!k@a^ujBEdod3wNoY4xyN_?zo78!cAjxT;jY<8EX}rU>t_sK)o?7W}_nmVj1SE2E zo}%PpM7p_6;5F42!>aI?tsC;LwVC+>g~{{imfpjp z$wh$~97z-9z@pww&7SzE&-h1o9--L8EQe!z&|wZuhbbR~4ytI!M|Z2_&k>j9;{|!X zCdNGL9Fk&t`ufy$RZP&?gZlSb!rqsK(<~<$tr9FhP>(Wx)Ccf05Osjd)?&rkVGr2$ z@Hz|w@|W!tuq5q^bA$$Z3sM7d6Bda`UnmV{fHD~rmHu|qYIzQu?S#4axUy7#Xul+j zsg&<`VJZQQtaAO%0BfRG3?jjzm+fVgK2XVeO!N;jEyYb7lMARzEf1k?RhgrPBkLic zBxVr!HIFL|^6{-5Q1G~`UkZf1c?wZYvpzYY+ALiD(s$UNRsD^nHV-*)udJhLnxXB9 znFQ51d=}W4FL9GP*dwBic`AM+hz6jB`%?EPzCg|kTYM4@I!{m zgke?od68YLA&;g_pV4yB)Sj$j@#4vEc^lTk|9oo7W%_ z4M0&VmXpLSb0UHw{a5T7}|js2}a<7)I1geIjDVlYOU9tD&{Ub&XmQio1`Rnqq$In}AQ6 zfJO-IAg?!^a}9MCMo7rpER5}B4@b`ejbBy9soAoDLR%S2++94WQfMH$y-;fT0N?b!QQ#`fkErCVnTm01PttqSSJ1%x>ybMVbyBL@Mblcvo-aiUi2+=sVQDIc*j_^tjHH>2oeT zknbg7YSzA}8C%+w{poYaqAwr0SsMWPiwU>^EjohO=cGw|iXqexB1sWB(CcU3L#T7C z4FuLGf{ZyW%MLj@bKS`m%09VrRt!4V+uk%o6Fo+KRGQdx4lV$GDjpZ&f!4^ql0kKY zqLGko=u;oycg@RyueCiw5?Hn}f5U$jE3F7r$$EMbXk~ne!>wJlzFdA8zzO6npckNxHKY^Rmj}sf;GtWdz??;9 zM2A~}4SBv6Z0lO`yLvwY0%$D~f;g5r1d4-qY9iD+hioZeam0QY7mC=L>|P(ZWBM!> z$RZg~#k?xrvM;Yx&^4Z#*T)MPVw`Lcy^T$!?1VL@yJAHBgYB;^L}Y9e0rnJujs>Z8 zMwyOY*1p@!Lb!z=;jxKm6q#cSM(jlzQp|nE7ghE3TD56`Y|VozUpUy-P1)pda;|s}i{WgYVPoInL&&tk zvi6ufs+)4ISq2}fo0=v!Mnx+GzU|SVA$T7Hn_n$bD8vROcox6Lft%aiL~xBXAc2^6 zVrZAbD2h-xIjt!^RFE29o|~uurM<@)gb-)|mA+PcSH>p%M%we2^c)r>$38n}OP)PJ z@RL|VN~Tq<%47W4CQgL1%VEi+Y{mP!eQ}{Tk1x>1LjHsKmlYI1=7qWxON#h~)p1Iz zRIK1g9mL8jBzEWwJKlZ>MwGK@V*!u@TlJCLjR=zgS?&kBKDdrG9($6M@6C zKrSE;{t}NYJTVT7#wI)p(3L#{e%Bzxigkk2H7c$=?=4{fRj{N1^$FLmT&obKvfpSB ztR)lt)=mEL0>JRm<&E8-=+LF|-HlA%pAZa4&h$;WRQxAWSj^AGc-0nK8AV1|4?n{} zisRI~k)Av$KO===JB>UJjiDUM1{Rlgpxxbs&?2O5``jM zg@7bJIGRP9C1Pq;mC5~IO_RDz@k`1?(9#G<;5X(O`+VlDR@RZ2O!%8KD;+lFiZe8T zjin)BPS^9Tzo*A|Hv-NadI&wbq7Sf97l^kZg%#<2X%vV%? zRQO6F*cU?&r8hMgfC*Txvx^_TfvrS;>p6>f!VfY_^!inM(*DAHwQS{7`?DIFk5`Q_ zSDXdG>+>mVeZyr(EaI(1E`r`_^rX0a%Y`aPaK|?p^O~A8+Lo%i8T)`}WBlR`2tt@~ zWwkhHUSW8eYXEU|gU!8+@rGXq@07?nh?5hSd=rp%<{0%wnL^cYmzuBA=@xIGn7iK= z3AXSfl%2_Fhb1Hs52ZL8!WBFL-J)(TG?w>vFDn;{RdDXig&^L%q%ft5_J%z{iG6vc z^B*MoYWe1&l(DFDMx3pcuBaY0Sr(II8x0pNB|B7>psv*KvIoXOI3aDOjCC zoMGY2L#}Nqj@1;j3zbCJ_oU5C*FMPa10Va1%AWLB!592lP)WNz?h%>a@&4oR8UEv( zCy7o>oLDtu?d`RVAToQtXsbXcrM!RzKs5a=ZpXiO&c*kdKjo`+xhT07BL!L9OJy25 zXGWBd3XrrE!n}w0FKfr-Fa&ZT(W)@w*hXn#AIHnk&rUaeulXpVLrxeJM(UbDCu#K^ zk%Hl(=BCt0zFgOBRR!QbK!Px+meLQvR!P#ARX~8=R0EUe`>3n~yv?3^Qtpi|h{51e zkSEeaiF3>-|1PRE3kp-H0-K5{jg*IqOLP=@zO>sLB_KqPn-(TFx$lm|cJ%QP8cMf4 zCb(AAK1);mS33<$SRH2*^s*pg0ru1bc#L)rK!k~Mb1P*2zwBBvS=~C#unjRHKKBI&F+w@wjb8H7#<)8TL(aUF2v*P zOLKrkGn_vJ2R;;F3Jmfc)ppRNvK!8{3D4YuND#RX?jy@$9{2#kBS-J&uog(&$bGHH za3}2PR&~_oJ2c)lTSwQ7Zsd_1B)irOq4sTu*Lm=R5mk{D;uvZw&4r?QHakQwy=CP_z9H5KG#TT0UEOubSk%^ zzYSZ|1VQd2js-{K4+S06AMaBA-Q7Qk+`Pxx%_s=^VU1blALNgYth|CpBO%7Ez#UdP ziZ*SlHv3%UMoMT|hlt%J->O+jsG@#}W#ZoIw`#Mi=!@(&ePwi~^HuSA3%k+R{2a^{ z-o)h2xbYVQtc3PZclnH)frBI#;d+g2+o)y>lf^HkUoMrb2{L&#=X{iKN>xPU%>1)t*)4X6rX$&+|`{FL|+opV`? zjw;$%V?PBW0u9_Xk3wLhCm;UoOra@^N904}{vB9N_qYZ;*k;7n_mmTHA5vOHH;G*> z);OB3wx)JNBTA;~!)T7Mz>T`ZL^Zty#L%3MjT*7_BYV}Ji==7YFlI}_o3!Ig$x7FO zxxsv7SA++rDb=b}D>m_#q>Hr>Js3g4CPs2s6Y;+F4nJhFZow<)d{NhE!p1fbBks7y zcl=$lz?(LWNx_{wLq2>Smt}^ACy2|5{iuG~Oc+brQWxorzPf;3kayvKqs-|H_3^Q!Bqtm=K`5yi zLPbsOVltPLoI>A)h&3miYi1FTGo@QA(U>rM_3(Y>a3jbY7$Kk!#Sx2E#Uq61NJS{# zW81wAL1qro^7`I&O=sc!n%fa^OF!X+zQc$Q!XUe4$7@To-a>955z|xw9R#Ssvxxw{ zN{!I;SC|(WfDT@?v`8|YADX>g-<<}tq^Z%i;{8DdP^Jp?R75BANTT3MYv_2y&)@7k52c%|a%0Rl3fILen| zvCyTehkBO&t%#p6WDi**x%DExZF_Tz|Ku)&b^2R3CBV=}wYwGH$`b^E_;Ru<`lQq4 z-Da~MpZ9EA?nmA8?z0#!STp*gr^iz*Ytuyw9*Zf)`ZKDv9!cJ-NT}E`efZ-MhJs&AM&>X5-4DmZf>#Gmm8}*97pKv*1 z_!oPh+p)(8f5Qk1&j&}s=`E7+(${M?vAWs_*`Bd|G2#Q=gbYf25Oc~rc%!rsrU{qP zAab>Pd$c`<=6U3*N;q~`!z1!S#^=!0f)n0F9Rgv1>| z0#YnnJnz!V7M%t(pb+sA;mayYCl{q?=38xM6~Tl+rFg_q}am70CDi6XrN20-{7BX04)w zFGT(XRN{6~#!6dicQS$oD2Rs~&M`N|V*r!wrHwy?I}DG=K1)Q{-9iItH-@tz_8voB zTpiN&CwL z!IZ5q@@q`m8z6={7X=x|B3wq7rV^w5nm36!az>k_n29Tiowe-zj;rp~MmJOpMX!cSbYM_CRDX574(Lf)4 zMDpaO<$blfVo5)~z)A~+LY$$cy_`BWfqrq3G@B*tQOGIQD^$y9eS4YhnA6FC4^j+b z0;cTFIL_j6qSx(f4;4#+Dg`$Bj_(MH&e=0tkKq<_q+qYgE5$?g3TkYZ2ec5ZiLPX$ zxCw=Xm?d?`;wv@+e;jTWCq`SOyBsc17;g@ppKH>Eap7Q*_Vxko1k5U51zxfVOe#ND zblr?(9ZNj6Y)n6_m`fbt1=nYdaVpIq)Y!d5v^E(VdGJs9MPA%9Z&dEpA}ryXkV!HT zRKl)NV*S5Hj5C{5SL>IMvxaW?h+Eiv^gvmy73OZ$;(#=i(Vri5A9|$N-FB}qqU@E- zNk6tHWzhhGz>Km4s(a#!0ABQ{IqJ$u^0ycZJaL%0?_C%Qu;dPyYr{rpb13hy{EC zzDfrX5m&KO%o^$pfFx2I?^~Vy*V*Zhsy^5*x=S2Q%%<=#S0U{q{8bC^hT+*?O!y$K z+IRg)5D3OCNN_?DG4ZY*Uimrq382eR2-;Mt>3N?Ak6?#h`}o8W;ghHb1SI9OT1Z%- zPp}i}1K4|v8SzyGX$M)T#zP32;Rm%lzQ)1OBiL*EU3exLF6}9{XeJE(buOmJbJ6Ua zXU02}^!lO%-9HE%B8u4TOxEC89ygR-mc_+E8kbdOTp3hwh#&9E4 z6=VqvbuhgES3KFBlT(7uG}rT^pOL(@UjyN2P~DQQ0$g(zEhP876+zyA9E7Qrg6--q zYBqFr7yy|(`qZ(k3aD0(N);(z6Y;c&JpPLiyY5ynI_slOS&c;+R7|a* z8Ge7I2HFaQZ*^G0;queY0GyMWvV_LV>#t3e6&1qQ!gyLoEj06$&2l7QWYSSOzabOx zJicfObd0NPl;BA7aPz=XaTBqlfj?{E(SA(WQYH4P(Vp5U6;Qh13=^e$z(qtDzFh^F1zD!8!jYolGirS z!VVv%w8-N#I;F|s@H*UVHpidrEn$Z$vBG_^w@JU1uy5&_TvHs-I+P%V* zlA+Gt(uwjO5rAQNu59yjzJ*)cAjHTE!^=Z&qgkWACyrLxY#@H60B5D$hRKmjI_FQ zm<)F!RBMjEKua)IGbykp-xxa|;0IR@l8Owkg@`E?DT!qM_3U}lipunt+=Hl@=A0&y zCrznpu6#j6&4hLP@`|+;AcRFrVI$xkZo0PIt+^CrNno^0*uzWDX((gfOj(ssNPZ+) ztqab+#FJA~CvNP{#TW$#K{Z$;_U|XwuC;H~nY^z-a{4dnkwBA8Y@`7Mjk!M4Uo96@ z_mTY*nub#s$R%7Q^Pg+;jkCSIS|Ua_W6FSdT(qej-Qz|8flB(e%7vb^`#l0LeNUoF zw#jv~FCM(HZ7}K3+Q6xb5pcomDcuJr@KM!-&1&cEo03b7k~J1Yvz*zJT%mq2ACQdRiR2srpMNAJmuoAe`rs2{Sa`sytpV5j^b6*OHCi%w_Z>b zGIO@0FMDL?R~5=ewmgm}5G6DJy^(H#`r0Hqo5u)&10CF5l=8V8r^Xs}SpTZYC)|h6 zi^9!5i@xURYQgZ04$RgaZzRrCCV)Z1rv;uQHtqu@?T* z=~j!j^MJjt5Q+E6FEoN#^pP@=FfN9}$P>dX%jg5srDXCCG9>zU3-w;ZM^xepUEs(( zNqsB=f`@qzJfg;IXO*Kzm?omN`hk$$M}c)i3&i7og9rc+1Bf9p;`X*UsM<+xart>6 z{4hZfAL^42lkq7L5Xp#X%(w*@d=$rWKKjMG^9D(p{zw-ZL_#>Z?egg#A)@y+4_+^% zsHNsvB?3lYXDhYxd>FcZqjodU27LTVY|#~ii;BLM@+>|LaIs;K&ZxLI*8n=*_#hEe zICWV*o6E?M7n#3fM<0L#`(#}G3L~ttDFx)Ewl8VR!fBaT^E=TIKnFE5-;3bIlgx17 zsIC^V6o2BS-LHu_&a}Y62QUDIx??q|{&Nm(A;4Q|KLkr-1enk{_M%o*;g(U~@Lfj- z!KH)oi_OY%bn!}gcTyaa?W>89m|^sHacq0EpVg13I6aCIDXnKlYJ2@IgfRc!`@(F+ z?QU8r&oQY*EQB`nn#RqUL^UV8RTolf=#aDN;7i;A3 zZee(GIKL}z!Q&|kSKniYL~g(umv`Y}gvk!44ara!`9ci~t|AtfpaWNu)YS`*zD(pX zD`}MdBq%ImU@m*^Day4Fr;N%7Dk<*u=qqcy|()3dKFcHo4k4EUsa|)5!r;=vmf3-pOPO? zq>NyV9I7WXfQzbBVcuzq?d;bl^0NdB%}1Wc zzOXc$%@%jw>A4CH^;=IcPCc!~Z!*WFEMI64ZA+X;8zJ``=>|8hrcb6&*Y+9mGsQ1<{qXV8-p~Pa zy<*W)j|!mdcw?I=v=q!DF>>BeqJ!#?`9U_@bSMgDZVV;yb87jLy=*qTlv$@Q)hk%DP)Rf5q;6W3%Tt_quqGPM zUZ0&bG^v6mu`sbD>;@v&v~!I<0dziIn}<11hMzNi#RAn$(KtDgY>5dhRH&*nQgQoI z{o1odk!rx8gO)^)+E>nwHj?`JIlZNdnBN2Rn@wY%x1cznE+w&JOM6NkxNFdGNl z099@q0Toy%uEY3`L$7afaTubBFrX~oIm5%MMjE2Pv=s4}S?c^M^lj{-vH1o5zzapQ z%BWEp{*Y`T68(r1Lr6SE1WdsW$q{<+(+oG+;t0ev>^NJ8phD2Yv=sKJu24`YPO=5k z^pYm3ztI5PKC%||e*V`~C6XQO(&LIF6rb2h|G8CirlXX&m)%8QK}73)3BQ@c>c1T< zW{o5rZo|29??O&-Q^)L$Wd>fG0n<&0`7IVj4qW2x}RE zYAzh9GJ>81b8OJO)il|AbzA{j9SXv*SeQ;+?Bw#oee~gbDzeA4h{z0We?{w9i2hTi zI3~1ulvmiY1~Sgse6UC`BdXTeqH)2HRq1(aVMMF))$l8G7v|Z08}uxX$Pza1iyHa0 zd=w5=7s^a+2m=`i{+~ zHt;Z-v#XUtvNYm$Ib8iILO(H~*sRe4<_nkTl${iQF!!EbvB+El*#t&pBt<3Sp(KzY zrog;RhwV>7A$@_-3t>b>*QG|r#!6)QEyh+bTlGQdiN2NhFx)Ps39S4%`%Iqd%G!}6xC%zFu4&Mz2Qnf|B!h>iwBrnZ9ilDjG2%J24Oy9sQNddBt&S5V$e2^$ zK!qS&L61@O+5=?o`9>sfac8vz%P1?d;*vMKbJPxqz`6oj*b}wM-{G5SsHNDomcg5RR2v4laJ-j4H_&<(<~LFwM>C*=lTN=v-wR)qeY-5%d5%7N8gAOAd#@bU@KB* zf0-TEn8x{OMSgnOo-PgDo*)VoE@-(%{k6pwfXb>+0oaDR7o3!}WzzDdvU+~2#T#yi zcz-bzc1lA z%uD;s$FE(vy3m*ITlfJ96L&hRZCGu9uWk-H6YT@S!1>!ou5X(t8z@x>Mr(BhN|%aX zmbz(n3fUnChRaq3VB2v{c&3vhe#forRRzado(e?p1dV}$K?(SDBE_dEC=U|7b-%Dp z`ON*Hk41#GN-&$qXfg7o|IQv=f}d&oGm0zysGN@Z_{w!{?^v8o!eZ>Jx%yYtN%=GExw2IIEW+y?}pKe9MsC@{D+t;+NF)vOXdl1qsVwf0%ry|tra)%tL!d^6rqz| zHpI@mxW-MIZ<-(SLw)7$ZT%^HVL`8xWV!rC1!Sxl-!VRGi{`{ME%e3$N9R3_Xbj?zLOkL{j7}VG6^8s3~d*KZR;k10VhZDdIH*ZNbN40Vc9Z-=Z1( zQvoG~rKW486ZsWNY7M}4FKKlt94EXfeldhgGGFw6j5cc;`^Flgin^Zqwh`@^mIj9i z2r7!wOI3i~YKd$PP3$7hW>pNI%E`&7^c69Js7X|u+OtKz7f@Jz(Bo#bXirUbET+|= zUcYs_D)6C;hY}yCs;>im_9_^_(X-|VNz%=Xnj~v9Nvu%M=)4DZy#Ia6> zwyPV>4?gZwaIKgJ%1@6Lx(EVwL%Ukq&KsC(05A0lJ>)n~sEwkBhEUqCmr_{IV;sue*nLnJ>f++yIu<~Hw@fIw3m zqHzmcFOVD*Sy8@%Q9KVM9Xy3P@NmtA0WIGYj}iux3q_^ui+Mq;Pkaz_b>apPbU3K* zczHT%@Z&v%AoLvFiJz{GRs|5ABIm(>Y8(+ zvgv{7xe3|&yv%9P*wvkim!z6ja$~2FLW^oLZ};tGQuQyqL?*=Ir4~c(s+mMMnH0xrd6o&203f4 z2yxzpTJbGo!CQK6lFp$nf&|u|+HbOD#!WK;2PrsKUl2d9H+M4?jZF3)VY%R%3d+*YNOMsf5qT)C-UFbzaMeaj;a2kr4KpQwQ(aehZ#8t ztgT>wVSp91EVb@b`;@pCe8{JfMzT#4_2wsa&&tp`4fk+k0lVY%(=c_b>uSV8{ zjrLU%5W$^WZHMX^C$0DOZrqhfknYP^^g~$aP*g>@h&SEJ_%=2R4X;i!x4=@X`^DI| z*U@zwD;Jm!g_T%{4hi}uA(&vM-^Fk_mKydd4IxwI10<~wF2 zxd%cpjIE>b57pV7kSljgM&8Mf2po>P4-G32uTl2+Ljo;vF>_lGNa?CuojQXJane+b zgleHReiISkVOaSb0hEPWT_x44JR15Eui#prlF+4%XF`plf}4Pu^E&>Oj}LVgF_IUs z7g90lgajNW902K0W%Pn==`g;hbD=ZvI&!ZS*bDX;F^#30h0|rx-d|ko*9`tDD#grX zM48g~7D60uVtv+6_eMCYR1?BAR&TXra&m|43e8VGg{bIQaEFoukzK_+pO6^c}8r}APvK! z@x#(6^#$UCshOqeH@JL|LdxXnpJG4zaEUxnJL(2&Yr;4qh@UBvq2fl-a^Pss{3`1x zZ&cNurzV^6(qcQ z;lAE=JhwG0e3Nm}@L7K{(@I&P6InlY1f(w`dpted2iJ(zt8oAh1MZr5=L%!Ws4C#it&H z*KJs;5eDKH1T)^$+2euIK`1-i5deXP2m_F^M1qNq+PwwY8o@3QK?aR~8qVtMMf-q? z5Hu*H6sm%P>L|lg|2co_!B0{~2qY_I5Hpcy>c8Sq;7oZ-!H@UgIgM@u6STl^duqgI zMUgBa86T2bKZ(ktsth!x(mCLXw>n0n(>E7D>DE{I?ledzHPvItmW*yvs-L~GwT2F& z9pRy5n@pgUi%X38TG6#;D8j&zg0}@bn!@Bqo<%&$?qcx6|F~2cJ;^rcodFO}DwFH) zXamvQ!@rX0}LLbujZFH&Z;92 zsjLbks7mCMD@Eb8I0Mwq_B%81y{|liGDScFz2=S`ES1c|dOpksaUxKrbICIN!=HU9 zG>_t(;jAEA1~i?J(cFq+x?;EXrVQ5XZ;IS`oRf8 zLiL%(DH@gnwy9Tt#8e@sKQ#dulQ(6$6~}ThMtTy~2+z8H9kvFr15O|~)S&({<1HLh z(@n4&iaS%&&}2rQWY=_HW|jFWn*f|VUmKAMfT+moO!a<=pfrjUzNz=ruw~4UpLGPG^9Sw#av`)OgQV~&?tL) zL~~tP-C{s6^{86U;Y<8ctp;l_C1rxP9QcSpbd_Eu54Qd4fLgriP|8k6w2J0=I~(IPJTJOGPuq5c`>N=TeRfqjWz znt;T21sCxj?wIRn)`o|tp&2)h#Qhck8J9*_HAJ*mhF5Fx{gJ>t{T!r(-@nr>xviU# zf5{horCEuxi4VS(w;OojS&B=LY62>f)2jf@m-mq3SOLAf3~kcA`3-BZ3A%!od4eup zRKRZ;EhE@=uoBsFKkh_{sjlreMce#iKAjmt)S{z}&>5 zy5zwaA{6ZloRS#{G7R|#s-9CjVRiaiHX>t$p%xnN4B#GxA9$}du@Z}lAbOL1xpVmn zsl?Co=Ed1wj0$B`N7ANjZH9ebYQ-3{e;lMpH~saWcuL`GB1@$NxP0TB zlvBJLfY*Tq5}9NmdlH_jlVm{oLCi_wcJb|Fk>O>kkl*ddT0|kMKI;Sg<%l8!BE>s5!}jwJ}pts2*?5i?8I99V8H@jq{d| z%g<47x%z?x-VL?t#1MO9XEsB=Fkj}(7=NxmW!Mj9d$W2ge7ph1>8^Mx7aZ-XYgSXi(2q3Y) zt9u1XFM#|zOw%h+tMT9iR$s&9oX`dU$b@@UYO21^DnIpOJ7S+~+XbAV7i{wc7J9Ub zf})7|XgK)jg_8Ekx%ev3>>3mPtEfUkUC-9g{owHo`$A>jT!R|M9O@Y@P1$issGKckLZRQ?o85LiS9Y4{$b+mwj^2_$-Hov4VucAm-^E2yc z)(a~4D|1-y7XdC0Amd1OKBYZ&pklv)VM|yc>c$kwG|}hVD=n2y%=EhYQ?Q}7SJtui zH6$O0$O6NQi3+#i)F!7Ln1GwILy{R)0T4Am*XQLsdP@TmnaGV2j1B24815%aD9)t6 zO?(<9LudB_7LY~59PH^!=>$N}cn`i!EC5q3WD1O9Pj`}5P_hw8grQpI%gg4e8l%5y z&M-isMng;tbE$~LTyGzhHOmmMmL$S+MY;Dr+2ERx3Alx5Cw>Gw+2R~v9B&_m_Q0ju z#bh%?Nt`fQTx`$9=;Te;5fu=msPaNnehZ`I7351>j(V-xjjUN%sWeEE6xOU)-8naB zQ4WHCP(LRlU3eaf)8tYJKRInwm1Z3VUNmd3xhRdnWN1(2J%LkZO^SSDikX4fnKsui zRGek?BSspQQPB@gl!x%^-U#i9CtcN2S02({5TR}uBHxZa2G|41K`Z~L4>o4V#LLpi zPGsj-zB23Y=Wt3B-1^z%;Ll) ziiT3Nt8xf>#{;okE95X4&RpOOGP8v35Tr2%;K8+`JB$oiS_G&Rz1=}7RPm3IoHGQPi z0LhV1|GHI;YhKWaIp?@8%?d;4!HcZ2f}HCu%N+C~JNCAXZ0DaCj{j(Gp0cywC^3<_ zl6#}vi4>(%^N~{gx;L~VeRu0^sXhCr(VYeZ_<+DxDI-UkO|&&hJs@rwxQKmj);+Z+ zO*Pwyj54oYrYe+phzf0~wSXt8$~=yk#$W{o-lvLCp89M65<;tj_ks?ZOS0SOX?li7 z>kN2%b2-~N#K-%#hE}0xQ?;t_ydsO9y~o9FE*OKX>s&zEoDP+55)m$nxFgXX&Hn56 zjt}B`Xh1LH%c&`GRNf3OqJDAY;4OHi%9hN!`(4YOXpk}uab2CMH30%m_D_?n2$V>P zwL4uuw~nB%Z-6OM5_J(px4(>!VrpEOP-x?GiKJSz;E^5gcas;~FH-V%gs_{HPg^VL zRpFv~zrT%^WZjtA(=GTsscsUf-&dQ-3N5E{RWAn58!JZEMgiH>Gq-O!o25hzxfB>;t1J} z=;n(j5i65FV>j3O!_ya(Msso9>N5;- zBp7s7no`X{0?1NZHKe`@VKFF}_C!&zDw^oYZ@fZZ9ufSa$bz3!3vT4~$GH?G>OE$N z_h@~G0lQUx>@hK9lO(qMOI1RW)XiAxS0y;jYwMs1RO)IsY5<}3bKHwJ5`w``UCL^A z+7*en{vN@v17JM*LY(drwk_8xG}Xq)g48TxdE`T1 zs*7@$e699imcfze^b4}3#457vA8gJ%Uq`Hb;qyXQHS{qQ3>IVQKP>?fk)fxWuOb&h zNp%pRi10`PXAB;EgL!~>Ic%|GbD8K{BXxxvqJj<5I7br-VTPpo0Pe-yH_xIUOs*yt z7xVkIjkx3D#b!-N`~wdpe{{y#vwyK{6<}D9jo%C)Rtlw|B7OC@BJM?fWeJ)?WV6Ex zY78;8&hr^hj+a4BNk!05kzlPZb}00p92L@;0>FFy&aL_s>QdOYxS};PK|wDhr`%qY z0V=q#2c%AM-9hwJ*0xB#>o*1Ad5;Q_X6=aAlqskNRTJxY=I9r~f%8l#}cr$nxNd%!#7P2e zrIRP%wy7H4f4p2_J25kGgP&OlR$x8kiH7+(Zf6w}nT_8SorsHby)_Pi7b$0nJCcv= zxJm<%ja;Fz!q;4_tdjpFFbSNvBt8gYQHsrioSLhq=h0V2DPW%p%6T;vlb|~KMh?87 zjJ!Qq>`SA}5ry4!nW3m#q}pJZ(MT{``M1sw=f^{K(=cfYri+X0au{k8;bHbx;lh)9 zoizs@rXo?YB7IO(X55-0ZE}WrUjk^?L;d&_FR0sEcrGNd+^2lT`TfWSu}oNB9@J4b*6}bYI*a*U!;0L1qV#u(n^}>zcP2wyDmZk78*o<*RIxA8dn*aAW*- z^@VJc3W6W5i&*Fx)v z+OWj}JNCwxD*wtu8;4H?kttTtYJ-M`CHGb#Xp7}r?*KpL8{G+kt8}#2Vj?~BSMm~b zO0$?eDnc=v;LGcVR+%DP>$0yNFP9WCBJk>~EKaO9(g0S6-4AR0mX6fl_%}IY*XqK7 z=jW%xeS#;N&T%${kpPGFNpaV3VXjV*WpwR~=$*OEfb9Q30(K&Wdx zlTo~+q`aaXs@jDp@i7FS$Zz@{Lo2APtxp4lpKERzFgY$*zY%c^E?OB&WQ3B+fdirN z<>{L;F=2?($3sx;Cg}aQtczX>PT;#V#dWZ;qpI}g%6Z($nxjM1g=TQa`i@QhcQ|T; z$S7V*bx$zXY!>Ve%A_&ITpR{e^b41Y&jl-FWMEf>#!G|hJac`T79x;?O@pn$bem@n zW?aEL!c2uo`H`TRhu9GJDo!@kbXz>}NW9;{@3=<)c!%tBlVt!iEM|2a^?0tsVzQ&} z#ISA(o0$1mceGKop(%14BHy|Q9pLzrNcpU2rJfd6ILHD5QLaLy$H-iRZsOmIjP$nT zj%gIewTr3^h3LBJut;&cc%xZxA}tAOENX$U^mXkP<=8{PB)9l9O%8A4D8*r4#4zry zN?a(c%M-Ik%6v26D&BwCS6G^U19^9=rxoxLr0A61$Xp0Fv-vcy0s6A&Efv;oz_sZ= zU?}26Zp3V(K`mkRA1`4 zQmV-{h#0G);GMpi2M<$?46k4(zOTeiAABB|lstpruoi@-sUI2Ytn3BAqi|dG1zwYO z7y!TEE*Re)!)(mlcJY-s@xAMz|B}om0cwOH&oV%9G3`{yGA!>M1A$;O>dw}i36X&{Au(*n8Zdt=n9h?E zC`k&DGeeC%-6cb(=!dU#>Vmd5bffx({<6CY_;GawA`0g10i=l1VIt7X(Y~W7h|p{t zZ!-oT$X5D_govVepAv2+TIYo}Cake6UWRx(5q4%`GwQI%*DEiL)u#*C;e>Z6y+Cj5tzu>{cH zjhU{IwWygTWCZHm#sB-jM&xhMTc8U#(sck2)cVta!uC=o=$-5e=95ia~K78Ah6iN?o}SS|O$uDO9AEYUoqK;vkc9mu;;DAa<}sU`y5YZS00E;E0RS1re^Domd!tN0=F&B%10#|$86#7CK(P_gXa!SWi(v>*`84wd>*Bof zB*->dnmj~Q1|@%PN9w9BF1p$90Pv~6Fs1}Rsp5<4kzMzE;w#;^Zofr+urBx3h+dwq z5JD^}_w#Mo$m-$(2c?)|d0Mem1S@U;r#ZRiCJQgsXM%=sg0spjA>^L9zKR`%5Rz(T z51+^Wc`BdcVH_;cW2wdW05yLX)(ky!R`U33T>--LrJ(%QO3qD-H@S`zX%pA%3&fFt z1pa8!3x{L5_ID_j?D#5nl;%y*$FVnW1oNA3tQ!>?;4wl1WirA%J%Q?PK~3>RQQ`P* zJ1%^A=mK7R^5PIRwbvg20tp%iw|lD6P3F{_S8ka9MIkf4E{?0Y_Wdh|%l9V{OewMG zWx%s~ZQvWv(6^#Zc!`8<%d5a|hf$TP7QEvVGUH;EcCFghOaz*%rW0LW(aZr-;W&*e z!`~nWRE9z{X+ZX09kI%HK3+=_lpXEayk@AR9_5@NfrBQ$qDZ2)kWSPBRx(Gp=s`g4 zn5YJ73Ax(Zt^f_Ig$gF{EhK!NIqYVmpp+8Im>ssBL^@diIf+&O#mQhJz+UR1uB<6v zO2mTCFnFLMffEM6OPG=E%ogMOx!}8jl&%MIG}lGV zmh(510*{u?z)-lXU(kU`*TRM6h^GJe5%LTb(x)C9ZDS@C*Q6-jmVOjrPdhv`u*=%C zK(gaRPkmq15(pzg%pQ;pZq*0WkO!NycR1(@epU6g2sCo8yAz+5pKs_KqG5fXQU#f+ zVrTDLkDX-Hxu{nV){1N3Ecan2SwK|L1LuWY?nfG?erdBSq(dT$&hlowH-FR$J4SSo z0uVKZpPyjYHjk`5>7c%>3bV8cf6`_a9ro8<3bI zxnS1x6?4$yT_b8TM$PG6!yD?a&%-wKYw|(qm-(#i7kcI@4cc?WO-FcTa&pO^4Fv^R zyy0&8yoffYiNTR#A8)CW)S0Pon<~ssJ>br)pQ0uB>|Ct)G=p3IEbN@ z1dA>nkx9X^WuXw^44W_uYUn*RsGVXSQIAy z3k6fv>gPz}+V!Mcw5%cnT#L^WM{zdEy#{Ri2ML@MzI$Vp{RoR$xXP-Rbj1i=Tz70! zWk%MWY3v|B{UMm}BLWr`c!J4aernofEhrP0RSw|=KPOEsk;1*HPRt)|kGlc3LdhCP z^!J6whAx0u=|^$e(=uu`0vcv2#Uea5|C{RSx!rB#YoEKVHR zI_zz6Nx;6wZwlKCaWs8)qt2_1X*YnM)RkYNJHkps-_-Jp+(a!J7Pxl_rXZ$g77MX2 zzT;K(AiHLq2~z9a)po6tjxx+3t8d}bRgx4|Ku9_3O-89b%=C5o)(i+FCw?`CJ?slg z5-X9>1LSFJ@M~O*aS#4e2ab5Mf&v<$BlfShi%`D}S8L>|Yjiy(;#POAh7sHrrTH0A z7-+zkeX*w+bjh(2jjH0K1w8$JWxNGFq25qcy z*{?MxE7={~5nB^-FCwcyz!$M=Ewa>+fq&XLW5Idph!{Za6$H!e0X@TK zeveJc6a)c_W@v4Inu!S!Fq^y3ci>5rm)Nst3y!XRPbkgQCHHv)B()#b^VJ6GH6)ph zu~7MSrj@MDHACXA>aS>uAalWrQSzR~ZkwXaP~=y2?sHUiNULS@J<^G);cy=y0#lHa%b2gCBW^8M z6Yh&{(i#0E2w~8zcn?OHimK{+5^Zuy>l4`8O=bVRdA zwKB0+EJ&4a>f%+a6#7bG&(+)y31u43ihdSYyWcEfVM?F_1m$M>nUlagd_aJT`THW}Om)7J zZ#mOPn|yQx#kXLuWW(W!P$mJRpIg6a>v1=H2C+teZ4tbdeur4i8bZJkR4=n_q_l;U z2*K=A+ElYRvjT4M224~$mUXQ7r&>cCIc5BuTxv@R)IQ4_sj2BEbgO0Q69z*g@gg^S zJL;)yOg7uJC{YVJfQIyI5}oExGV;8EDKK=45yYPnl*6MF8u>zFaq)V~SF=d<**s-{ zG*6Z)T@u{cEtDDnv8=7JS1W}@)E5v4ailUXzWoL-s(|0+`^8Od%Rr6wXfb~zqY}Ha zF{RKd0~8xtp-;1M7s~09sS-f5<74IcS8$+MuPsWNZ1GtkGtlJXFpbe=ZImgx@g|ol z0A?)Bm-2%2t>^(QDi`Q9!0m-)F>9JG(X7cgjPaHQhu*AOLSF;KMsC92|z?=Zq$x)0S7qkMKaPxWFO- z%!oxr3UX)jxI`%SVlguMAv`y~C4r-oRM(IKCw`3Sg*}WIK9Yn3)LbI#Q(%XX ztg4LAKzYU1wnD(w^PH~zw;3|7+_QL~c3zo0NeCM(rdY48L2aoTU(3M?#_VX7rm@Aw z|9RCKh%=1l9x)lv9fs`2@nOs{JZ%wHwvvq6VGLue?h=*N$+@yZFae}XY12^CoJkmi z$I-_Fh54?uASU#DjTsWWiyfPwqMM7lxYhVCtV)Ted8K7?47Y{4a>3_^@X^)w^BitU;J#W zg+4y7ATty$^eNldA+_S{XWQnkt#VGXXL1C~b7 z>6_qN_D;`lW{niT_|SMLkOX~7VZI-GzBtxil|gQn-UT|~YJKQ22eL}5k~%98UqBU) z6>aJPJe*+uxL>)h`W8Rod-)2R85=-xae=jR|ey^M^y=^a`z7BC{Tf9Uf*8YP2> z;asZc0cGJE8o0P#K?3kc%2QXecGH43rt}3m-Q9;|H27Tt9dC}K%QJaqn2GeEoS3P? z^9YgxW0dcUs{Ygn4PxZ!8rz1I?2San<|ebxB#OMW<3`CrkRLVzeedYlH3G(OwUSKj z$@4Y4XqFY}o9b%VAizKl>1zF}(aJ_FI=GxX9mb5yt4~CYmB)@>r$|_|*=#3j06L@15!1m_?Owe(Kx$@SJEV(*LEodS~iX6&gVgBYY5nhZnut4Ely zdIf;BNJejlIqKC!@_9TM<53Zb!-&toJdArOXTr;9<~+mA$~RICS}7#1({Y6xZC`Ll zE=!(Q7+P^x{6{OwK23-b`f+*!uhrG?(pa++G3QJ-MbaZT$MO+D(Uj=R$Z`*Mw+m=g zJwHPSH|!}k#;q7hiOJK~M}IWd?uS+$N>x#Z@>r$CK}49K4ZQ` zu%XEZex#1CXO(o)#Ko-LV)ZhUp?scHkTQ{`dB3qm>WiTYC5oa_%WlOHhT|MitWpfu zTZh)BROy?l{7vcbZS6a0G7lDriz=o;tCBrs`ZNR)0q_Dh`yMZsMumWLO61Sf5|>i9 zvG6o5qQAo)z%TyHHkp!6E4W_I?MJ=}4SEcjlKYUAHwTT&vYZ@H)?MmGlf=0h_f~FS zj83Hbyxxep#yj*Lk(b^#V>OJ{a0r54-Tu8sccl*xd1$Cl(F{&!3I{n&-T-PvLN)oDII(F*t~L+$A2->F$2%kzQ-fdQDBVYpd=s9*5fn#@ zCb=>X#Y_puz82=H8Qa95;UN|0vM@uuIklBnkO(z;KN7qAx+O0{fRtEbyuq?|%c^U* z3S|VU5vvm|h}c40{08G@?SuOeW1E*ok0cn$0m%U-l}7SlCe+oTFB#SIBJZh0BARoT z^_GIOeX=>@We#qpO`>Qr@!bA{7@(_;B#Mk#VT@`+LWE!(kOjSPM^KL9jqBO8=}}a> z6x@0)tDeHr*XFYO5&e^NAp_9#R%5a%Ef5Bb()@4zt8J4J<$1^q=)iP|7;C#R77aer zF;X9pD}x-nlxnUTt9gjZ-)i|OA`8bRHn%o=|1MpJ;&KE{659kqqZzz!Ru9CZz8}iO za&a-1aSDmcCRCd9E=)_C1fURjZV%y%x#E0s4p$bP2zY%EzZ6Q7Z2#x;R9*?3gJl@= zOqthOI(&RY8=7pKj=A=6V*D-)zHCBgldFh1iZn&WI}MN)oGXZ5Zs6W(z((88Fm_gr zHI$K2#Q3o^xvM40G_uoh)2J@GB`T_@u=_Q_mA&GqHf1wp+gzfKnC!j=33(Yi9?X%8 zNyJ2QA~9=3Mrm14PJ8DtkUg%*T7PogI)XD-E29FFW_Voph~);1XMNON^idW+yGCRg zb^}Vu`cS%!8&K)#{Oo1at0@p^8H`0?E=tMM2l!A<(p}bcg+QYI)>PKj4Y&^;BGi;t z@q;nw1gWBC<1N+m+=BGlIiJWq&QDRUh)2xkfwn^$mH}5@Em{Ei-aK=Tgfhhqcn$6n zHKTZ_|EeIfYg{jIRAkv4AW6E<3zUU(GoS!Y`=jI<*scr&mA=)M&*YYi9{*-7i3lL^0ewg0cspmRy5C4hnC@rt_RhGJ)qqNt*SRhaD;z3 zjhI+U6FwC4T`H!|@+kGyD&7g?R0peX@{- z&2IayG2rgEEwd_bY*-!oak6BKY@MrxI8<(EEzz6QNai~7O+!b3l722Pj+V<3qPqK6 zc8xh8*|B55W8nf=7Gig9Ta}jK@hkxGKjQl$qei%HH0yT_8p<^!)|NYO#L`?Y@c>#A zz?aE!o+5oItT-|9muVdQOceOP)(1RS5yl}692%A6_(X%8`iN=X~~ctxaJp=A`ROnAJG|=q|PKK(%5Ab5LiE8hX1RoID@=r)P=PF|^*VXJQ|Bd&c zX#v=ks5B$AvTQk>!y)H>O;oR*7xrI{tq-UgkXuz^AsZ?2`n-MwBF(K(nF2984aTyb zBv~76WOD1r5kO{S!iz~~TM;z}^2A#z($)Y~ZgSdG5Zuf9UDzi{9Z2p5Cn)X z59cDRS4Ku#xzF2fyB4%DT=cT-T+Yg;#BXxWLR0SE{{^_T$&BW{p09}xR99qVmnY#5 zQzfv@FJ0JNFcC7XB^P17z)ZG)>kv+RQeRY23Rl6N%pg%uTJ^O6sO>MN;dlb4>%pC~ zlv{jI7lb1bmbI)w4a0?2yf-nFAFPYXND2G5-h~yQIl5KjnYNpKG7a!HrDXKuL!XTd zZE!E=T2d(WAXjBE*e2{`2*!ABiUs7LnWIoh5t)sbengb90=$M?=ORhMTlWfD*m6Kp zOYIeIrajO$mbz&K_uOoDmqiyCdCU4CFnqm-2_xyC6K`#UvAX)5Lx~A2oiX-_N38N# zGxHifb@niL#Rp?P8u3k0J>GVsE^MJ8g-~fz~^VG{BZl3 zyp@Y;N;o50|A)_O10CB=sCAzEN)p0^M+S%+<;C$bwtG)y*ad)S4B}v@RyN81sBVDn6#L{>xxP2M*VW3wdTDe(eA|uq)M`=u zM}O6;!w+Px+kjJ+3MGbPmj9{@IM@b)Y}D}JtQ#BYM?5&oWnWBVqcs`ujpe$giThAN zh&+X@Gi{j#xx?$|G>7(TBo|dRiPu`4s)Cs`tt9fYUw$S}4AqFw<$G;D7l<@HUDF_W zDOi;4;1gQHQ@TVLS|XrO9cf^Qp}>m^WfWX(?@?5ms01#fi}^M+dq#^tm)STbW4`cY zxIkfw53POP1#O?dQ}H(Xoa#`wn9S2wVt8LxW_meuKytFq8WL9IHo*^%AN2Q%H6t z1Cni!i>ktp`Hqadx9om3>Nw{f5>usqCJ`QXTy|1?fI+cr5#OSLf2hy?RQrqFH9jNyPNiD*nFEqbWt#**8_EONVlo<&eV*b#X4nH) zhBV+@YUY#wd9+nvssKiThh5{55n!)sC{`#=V5|F>ClN?TLGf#CKTyXORhd}J${+i7 zD5tJphx0QS+?k5a%o&T=!9KB98=#;!r~p^I5!n~Ap}?auVBdr|XJC!V;}G?_Qnp0z z8ZS*Go`!n9bt+p(R%l`}{CXQE6u_#fNLz}L0F{{+01&jgMN?p(KQj~?Oc*@nW3X3T|- zyl%sukO|~M=-c7^gda|&51eQE367yra+e5Uic3y6sM9hrha+}&Z^Q>U;5)n$0TG6=qmstYEBf zwy8}HLX_JQkS&vt@v%dZ@Hs@bxcM8Fc)1G8AOzbis|A(rH*C&g0&=RECz_sIWySOTH)`|S7Bi0~gjIVFA6ML6`5UrmKaL`XGsy2>!ZE8O zBD8xMT@`Eutq^>{9h)d(y02iTlzUZ$b?xiIOE$6*8ok&*>a5U3C1Y_>Z04E)WUnF= zH*7*#ynU`-!T4CFR6(?)5CqcpCOymUqX{K^qdMoir`l4@b&DMcbNz@Y`Cz5W(9#9G zj5aUInpumIGr&7fA|NM;jDnfG0XXCZcqEJpFBW`ymMY8RCR=IASZ-f5qIG^%+_V|V zTWFAD!BXKNYU^7jQg@vEoR)16lcbP$K8eV1-O}#JUyYx;+XLbJ*db9=PsP3ffLN&z zdOp}=#0hkCczE%+Awzs#&I^`K_|rU#%wS8s`J=fX;6xHug9edg+Z&;zwVrNmEoB{0 zxY*4_q`H@2pbd+0EE24;lVetnZe}1fKZtV30EBXCNh*h>dGJy)iDq%6hyEU~1;5n? zFq>-ON``uyIshM{QMpLHYn{ zt0w2-W0lZ3?yhvW5k=~&g;onc;!tVOCnZhP9O+iS3tY-XQs>OH(0bM)78moyG*>O) zYMTVZ00=?UKWZFs^o6=yJ|E>(gP9MAAxzcuM|;ykFS%}?7X~Vd5=T5sp_-9GINh`n z3tPo%_QEL>CE41%G*t(is;Vm!3xxPA6YO9J2Bgul(9>SpST0htA( zSsNnyFA%ZEjh-W=3Ss429N$NEA%RFJgz$<{_!HmJV!R>`$v}itKtS_%{mE_#_Uck% zT<6d_$h7Cc1jD@x~WUjaT#y z%k5D<{Dbd64HaX?M&s4=+ectP|0dqnuO-EWE_6X79EoTRi5|e}(*#}jK!Q}(gMb^ona1*$q23B^4)m_+Sq8-)mR3bK{yN{yXv~M#mrhJvWiY% zt9ER4`(KZCt>nj2JGG5?irY6i7#bc@k98$A681I=tA%*40# zBT#TEZhXJ^MZ~R{kLD>6$uL+hzX3lDia@3F4_9Y@Y=3EIF~W=!KZbtcn|Tci8~4pB zE6J$;`Q);gEm4X7Qzt__c)3e!3w@D5y(MALULsnd6v?Smvkz#Yi}D!*&?H$GNJ<{L z%9hHBdZMrBgA@ph^iy3!i`m_#C9hjY&d&KKyS$bAEqze%bz7;V#IDk>C)LiC?h{Am z3NNE=b6=W5+y|6+9XCJ&M{?yV)m&L>>nH5vb9AC>3K6>lnu=dCsf+2Z@jh;2bGxHm z!khqpHSfq5=uuPGL`*caIh7bj;+GOT{mvYa=DFn0zt(Oc$YMq=IdIcr;P+%hK15yW zlDxJ0_wvAiP*EiOjh$#x68ej3s7Z+Mj8h8@?J8!#yKxO8td=*swHm9`qXP%mh9 zDjr#LyEkMCHsDfh6&5Y|4dhK3Uvtaw%JmQ4x|xPmZgk0pgI$e-s5Tq5$>VA@!fSp; zua@)l!{YmZX%!v+y1myL$5>!{8r*Lom@i-RJ1o;nM|nUXah%28!+{qP+g>gO2&W-n zqEgH@?@@#jy!|C`z+?3E8^8m==qjM%&b8#HtF3=Vwj|!D+%NoP|LQ1R9hRbamY6>{ z?rf794t$M6WBQ8goVdX&F0U3+X*^5VTS_GEcvbK<D2j4vWC>`S=W=4FgutXe}2NR5bsi{^A4Q~R9}q5`63rD%%U zI0N6$y>?D!BUk|VRVnDgZY?b;4Z$J?fAFi(f3~04U*Z#r8PE&eZ*wZKP6fgt^t#x& zyY^ILE$AC7B3r^{G&s3xFv7ay)SanI1Hy5@>3MtxOAW)qWs9(HiWt5|NW@n)#?=+Y zALTjC2RPzHZk7^4ai%#I z6B5f3vKDO`5_9+y4;x>qaw{)xVvHxPgri4-DX1}N3otY+=~JqtfosH-=XF1ev)Nvr zsgZB%CbFaxj?}zskf^V0rl$~gdgP`nu3<;V?04Te?3Qi3$%RDq+0M1yKkYD2=NGx!KGO=se?y(a*2I#@l zkB;B8eV5G0L_)ydXkHKqQyLZKL3IrPaqLyUjL_u>zJNr=_K3%?ERDD10*wVa^lh~) zyeg4CD9kmgFJMZL`{-Dj#Qj{^qLf%Hb@WxzTJ>K3Ek>Cs&Cc13F@Bnr(rp}W;am_y zoRxtnzL&`3b9vl`X!}fgO6zxo#O~M7Q4txua~Yccc+SC`oFaJCrqoa8fl$aOHdbZ( zvGa|Izy_N*3}RbR*(7ALn=+}%nK%4oBlI4VmvILhyDi2dj>giE$s(xsBWl(pldUj; zdk{j2C@m8eoFi)Lw(xVw6_74ukwJ#0@`EXu3k?Gh*r?%x3Gi2ZF9#_#_Z`r0R?0Dn zUcG)s5XU$f^1b5pu=TP^GfpT33#X1q1J;C|!?n}~z99t?9)ZV1$=OUX$C{awUxZ*JvzJ zB&Ff-A_*dww7O7f#wHxdPgQ=1RD6&SKEj1#S3vJW zw{8s;T|5+UWU0Eo=#4U38*;u!)1S9&Ihn2675`Fpqf6lExZ--aMmb~|HmEG4g<9-? z;$ZMI_GT2gs`N9KEi1&p112d!bN=xe(v$|==%aUK+Vf}y_9i(6xQr#W-P*!LGHLcM z+_9WJj*>4Y{H7w8_XsuCnLRiL{)8vUpJNV)pC6=7RGMjqS}9&JzEUGemwp@}VtA+H zRDhD))))PKj4R}_R#Ruq#8=`dui$D?qj<@U_)L$OL(0S=le*@r)yM2KbHat~Z!I&m+F)PRM=x5>T1KZQ+FM5QS*EXRQY2qfb;g2RLxZEF-Nuj2SlmEEVcP%^O)| znIR+=2C#{s^5>OJw(Lg@14gD(M;$vhM){0f&r4VNK{R%GPsIpIC;EEF)4~BNY9{iM zLP`emeqqt!<&NIN!>105ZhbAYMbMH0*m$44@+^w|U& z$^2iF8(|GzQfS3qnTRcL0O`FMX(yMoUxW|!$$f>=7MwEXu3{_VSS3eS zDu^DpSlRxCwZve~reOR+Bk90!&fx6%0F5lBvZ6i~w{95x+sAx*9dB%df#;QRWzUKBccZ(0mX8WjZ zW}&paRpeLmN}QE`3-f(=Q}03>lQ2o3ur^c|11~_AG<|?c;fc8j_I&Z#&t6fL{OvGy3P^svU0@V8(aCqZ9eIEZ;N zZp)}MA*aAWoa9JM40F0%jo&@cBgaf;*#n|n8s96p`fy2HD-Tpk_o@yef7$@#+bJnYeZGKHq$*>;P4^k z(e`OpIcsGkBpT$Cffs0b)h*O*>I*Lm|EsSY#KSi>f*Hofl@~nOMUP7b^k|5Th9sI7g?VK?FBnAY9GJOKeShlv2s zQDIZ16%eeuA&M$b)FBG7K}f<&lSuSUuwm+urSNWF1&q*ynu5{17JJB=wP(*H2wy3t z*8D_ai#-0|E0TMu7A_bA3QjgZg2#pzlko#260mH-8sJFnUCD$Z+D~_D_qUmrykx^% zd2E%lQW*_zBFk(Y+sUqxVE-*Sz>udO!XvST+b@DYH*WL{ft9CteKle6X}cA1I*5Fj zISPs=jorb>G_Q}rv$n7A;FHx;3yK5@h(B4RRW0Fb&_*}Yv?Hj2_pKtP!k*YxG^<@y zX&b(~Nu$bhpnI1Llyzl2!M#yS)(`{UKH#=vT^aH~;G!@pGI(4=Zz*SqSVLMxi1>Oy zUn1}~Zb#q@H4V=RxsxqAPL&7u%Tei47%ob|Dnu%Li#)U=gadneNnG}Toy4o)D}V^t zfrP&)zKCKJ+el$z3#UP;XXS@F`x!S=s9_C;+<*$H{m}|dSL%(^H$DoHO3oP=JpRG& z1if;@4FO%<-f57YY&KzqHE=P2DTob^4VCnv;1Bgs(IJw&aJ5>#*B4~9YFo5g#KRL` zm0<8`(yjQ8bdV2VK}BT3Mj2@(Q(^{k!@r8%G1|T?C=5^Nf^F@R;Z*+W)Kqizvs*AE z79|Jcjc8&Q(lu+%pbznBW?dN1UP0K|PUk$FK^q2PVBpz}JxiUAn3?Str}34X?I_JY z6HFtCJV7&cq&VVO6STyMZ2Q)@Sk4#_MHmx^wj0yDqOz5B`g@8pR2~JSXQ_-4 zfrKH-(t=7%<0|gvU+It`#b8d-nMf6&v3KGj{kz1QoI+FN)0}9Yggb7ZFuNm=+gO4% zdACf_4hnXyn^7Wgh-0{bnSd~|Ss_Ee;UOP9z4{FK!?_Dodl7r%KAdc-K8a1u-pu5u>Ev|rf0kwjgq;iB|| zH|RW0j zjo2}&)QMNj)~rd-c{+BSI}wi)(VFVKz3?qdgWbUx*>dW8)oV>HqQAYbTBYBu%al`F z$eFD5GS+SA`xHyHp_@WTLauG%VtD9kJ4+xmGzGa9E-#K%C&(FcZ8$nW)FxYM-zq2< z4szw}Rnz=7-AOR)aK>B8f|$zB})xslNu4L0-fg z@!^IckK-WrB$M(|^%RdmSjl~;i=ahx(-2fPi&`~QzXn8gNhy>9B|*<&K=)+{fT(z6 z#G;8~%o_ZqQi@E@=fy`C9aZ^>htjGYi7|EInVM%V@75CJ5UaodM?6Nw2vjjb$cm!X z<135vBy3#t5@=Bc>(g#%)Khu47erh}H*_;Mwj zkjg^NcCm{$N{vbeSO#;Re4BJwu((d@f<*z4ONn5iSr+R`W)5z z>((KzS(Mq;3fy#Bt`hWUu#Q|w9#GmKV+3!9))1r6jss4Xca%q7fES3*JiT4x!z)L*fm;c zp);NvR~zggs5I%CGJW9JsS81^YH7m-OPWeX+ouV3l?T+^Vd0zpfYK^4Q9U(GA4;Hy zY$_(_;tbk}1dMBMeFTB1)TD&LgQ&@rIEU+I!J&5XF60j*jduUYne?kh))xV6$ENn; zfjWNIs2e;%eo(9@HEMDxL*W*l!P~mO!B1WWOG>`lxB-bUJIV0oQ^L(EhQ;87UATSM zFOQ-Sev8riEl5D$R)hmZoFibaX7fN167Lqr)|)Fo$ilI^65}L-r8W)QzcOcV5NfJg zPsN*8pwTv}p3B2$WsHWTnl%J}5fEUN3D4V0fiCa0f=bviS7yv%zNdM)R0w(`JZ~Sy z=Z2wGu`{U)D2C`pUGC&6+7b3tei|yN@LFW<=u9J-3=w`TBy$L80EyrT8YuOj$!P!% z=i;IOO4UP2oklTw)JVjwAs)o_9$(7d2*Dzx44y5bwFQHcMA$$FsTk(0?v2D|L0Gfq z;%J)Ia^?3;q;nyWU$wB+sxwhF2uBgg9NK0N3 zs-cnNbp{B^qPb0n4j}fs{J9@)j*_E`r=UP4Au8+vCgrI(qOY5AUFu?dy`E;usfP1~KE0dA&GmX>Um}jkr z6#(>Q83I%GL^X6d^CX3I9*q)Lv;dh2ysYlw&&4@Nk3Q5IXPV4;fkuiB^K{h~(IV9) z%YYaue^n*)3ak&Xrr2AixodRT>IQLKd8TlrPO?E(vZ9jZBFpqhUv+Z_^GA^>07U}z z3RTy@DV~V^3rh>I!rvu&8zG1JGLTp5TZ@PU$X{D;sB4KG+HBIAKapC)6ex+RQ@xCQ z1v|+qD`?@BiUg@7tu-&xKQMyQG+BNGWqmRJheyL_kR?1T&8QO;zqnepl97WTe950$ z0{oy?_`SQMa|`VeF`RBUs6+zkX!dMPvHT3F!{v4S5!v`4?U$Z;dp*i)g*1!*U1(=@$K&R)0&PQvNBE9{N-K9oRUyZM3{L<|G6z?vK^(c%GlYJHby}a@@V?}L zH&FY;7f9b)S)fnMd%&b35X!OR25^3r2k0*hS^(MfIINfIbY9RHE^=C!3?<2%^82W) zp$me1yKX}qcuqhYFH{hS+Q`GMi55cNDdgOB3zuvd75{vIJtC2Rq= zKN)=KX2^yV9!{;Mn*s3UNgY^|9yRkDRmcmr?m+F&&y|}hKRWwLTV~CYro@6z_A(DI zt;NIIrceUeyBlVvbn$6eMLi;Br|`7HR5 zm=!(8zt-2m%!P=oB0)bWclyRY8-R8%r7+MP#1StRoGX<1JuPm zX_Yg>$!WY^D|Sc(B}Q<`QJ~bMXl-q2NbPDdwF|f>=Ti1=`UNq20K_%rd0bYI2yj$- z-z82r{aYA=kQ2zD@Xbq`7~S`}9{f|X+XP#!Q08nmsWnn-V;Q=k>vaMdebDCc&fF=;{=z7GA$I!YgN{^B3)fW3nU{0pF9{4kpLn0 z?y_=-nuw^+h-c=DM>O)S{`ea5>c%&iLn`y1{f!P=IFoagH!6?%sAoUiob4sD2uc9;ybP07KodJhlp}I3U6)p&6 zl2h7PIc|76mP;PYcc4Vq>m~@4MXOsiI9(LQ1bvV&*OsX&?(AT(S=@rclDwx3_ormO zQ8L=p1)7PiNUMGqC$##iNIcubDJdFx(z17^r1ZfD7;HzULAc_V?zg)%jE`=GKcm=C zwbEvD!2B*zbick$y@OM_!2c+*KSkpdP%w-YxPcY;0+yBtvBj8cFrW(s;ILA(3Pu%O z!~=;VY)wwGE7Y62Loc0+A$a7VMH%d|+u~ErQve)EQ$n3N8%zljRwQk{PqYe3!hMQ! zuvNL}I9WAYtIsl<9gZ~5Cv)ZO3p@hhqw0fuGYrf}wV>P>8!{O*1Ph|I8nfWf(r_6; z1T(G(bd}D;a6y$N}eYq$&uQAaHb}1*6f49t6zdY=I#(&vnaw zKuruIfC&VWp3BtBcFK>MeWJ68G1`FA_76(qd7L$1V^tGsbIQf2Y>t4^hvvcBO5%ix zK$$RDDNIJbukqd;H3AnyRWw&0GvcH8rLio;n;UZy^sTFKo&pC)r(`X3&etkDbYP)* zCWSOVo9qTri!*dgFUyvC^h=-0IanbuMPGUO|D;gExS2edf?IvGTf-6>@pWCYS1plmRsc_({&xHEQYYdOl3yEwp#j zagP*z;sJ<}I4W^$Jusw}3k-lY)yAKe*_1xm8!1f2^3+G=iy(Z=gGpPFOlDQ)?Zj8VcW<+jHTZ#o&`^H4aCV#y_*s&f|REf6-=TRdJx zw%!|Ma-nX;NdvfDZ44^~#bN>RmH+4ID#n_NFB*CGf->Z6qI3Sx94TP_Dt@NZ`dfld ztGI*4C=NML!mXq$8d2f>!0Y2vJ_GXD12=6dBgrP6#DeQ6K0xuH9}yxn#ru?E3putE z;$u8U7$~yFehn{@Y1v#Wpl;b1g|$+EaMkakPnM<8v_k$oJu@P9ywFtwTXB;5sS5`^ zbJjX@;Lq7B3hEWANQn6}hm4VJ#eD6zTc}5@`3GKK%fEUfuK|jcf3#mx3x@C5xJ+Q2 zIj%nWcFh#jRg0tKJqT(DOOY0_AolQ6y~(_W&lLv@C-6dB} zGp4Jh#bp6KjOG@R@Ah)8d$I_Fjj~#p4t4}23Y+d_7oO}1*Dk8Rh1$j zrG8T;W0fgdYo4q*?_~t#`(N2&8%G>x8gGOFN8hki?bznEJacWectQ6Gu#oZi4WoRB zcW$DvtiEz@zTS1S*QCt|8~l&_4Xsa{BkSjStE-{x`@Bzm zF-NZvqhRYGqH?K4sQ>NH4=z6dU^xq__A;~{=z=AQV+Yj#GMT#TUV{SbcnhuE01Q@ z!ZA)&UR)AzIIh|A?W0# z);uKwub)p=$P^@8Du5bFq+Tn4v;o1#mnk&^C-~hPX)-An;#U-GwuT~5<{Ept-}f7?dka!|Dw1r8=#HOe9ta$$DZb+|Z93Edw?HOby+Xyw zT*+qNK}|hm{S{yV-no^{nvy+aG&sCnBY+A6_>TJeySm||=XDg)r-vIiuQ z&y=Q_u2Bxg@W}h}#IJr5W5-;@7F6bSWin2;l_fzTjfa37SZ^V91~ z4(v_hgz-v=d{vp^PWApOPJk4nBbf}!&S^MZl^gXkw&}Zc#I$+R**0I;g-@}rUi`;z z0Yk3d*P}I2$n~!l0S1(^EF)0yyu*F~y z-lgnaa7>9aM%)B_D~m?K^L)Q#oRQ`}HN4OTDg1cS_|JGKSAX^JWV|jMza`Q)cFhl$ zTm)Ew$keT>l^dPSEVT`fEq8R8v{zpd`NQtD=c4UMu8s3ToD09|+m_TgZ2p$!F~;iC z{sB)!?A>S(WVEujpcmz;N?>4DWvKR(_^V9;kkeu z%cjE=mKl~uEPC8uBVzaza}5*}L!y~T=uWvtFa2PBMge6q+#5Tm-UF@BcgzZe``8ai zL^W(>*8Ofxoy!|HP3WMvhU`##uTac-kMcU$Q1Jj?xdo7%B%{AZr$SxaG=9H?lBPK@ z?Wf{3&5up!?ou@9ebaMM6+f*4P{PGYg zrRIwU?MC}B{(ydf_!tFN4{O(Vw2q6BhWj*bO3B8lwfWAjij{=uZ)FaO=lLM3`20dT zEe%w%?GaW!3&0V4*b?IX-fln^#QT0xNd-J2U-PVyL>zN16Z(zVHL}vL`MEmgo|VqY z5Ya0^_|cfe-Bsc6F9Pu9N~+hC1~CfZ@|IgrgH)G!UQiiA+FYw9n>&#%AO_BZGc+)P zOk#jA+$2_k&0dP8Uzh>Nmed*`!w@=GjeJ(o{v_@qM*R>6fS4;sF!LStooJv1%MrVB z?EJz-oEWPZm&p-tQ>+58U`OzIIai4*^HO4#S5)sdX`bSQJV6|)(w1@`J5>sR%w;y$ z*+F2Qvff%+fF>nQoPe8lzesw8@%Dc}x3VfsBsvG}*2E^56;U{L|4?|;4$J1hP(%Z@ z_%a`=GoXyc)mk#xq-@WeF@Bibe%#ps>Ra_ ziDS=-n+TF}X`BxJt@TQ{s+8my5ttz}cfv9GVPoXIOnLGKQ~G`30wNU1M`A z02pHGYG@Eb(#dO5=WKhsTm%_nka!*peCH=T0tWMMxWJBFUHRu**5j(CPAVVp{VK=lG`hbv6&0?kDeol7m28~}K2YwDY#`P%Xv*;vI zR^Ws-=E?|RpRDg#2bCIqbe+w(gxIhLZ9@O8BFk5#wc=eAD);tHCSSZwVhi%kv%AYi z)|UK;ubM0)ryv;Q;*uz9(PWIw+eB~hr!87K zqJMN9mQVf`6IwfLil}a-qE>wBdYF3B9u095J2uW35a7Y%U2}nnieKX#yj%11rT>Zo z_4nv2cOSYX=o^WpwcJ?bmS*hxH6FsK1G@E>5G!vaO$@TSA7tyW0{BDhRbwHUVa8YE zF?%3wk!?oIV(=JS&MWxc1UQ;fR3OB}XJAx4MyHm^FkF%pugS5Qg_>-g8Ysf^bxbA3 zBu}&y6WWLwF>CwK@Uz8Chd{9 z>gRMTt>qH(_SAq_rQL8O_?J)7T8w|imz_jztUzps8Vp3?Y>Da+Ga_<}IHpb~0N?m3 zbGzbM645a!fz?#4htxI)_xW(_d~LN^*}G=<)G91D{sGsRXP3Vf^Zy z=>s@fc+MtrVEO`^gaBOxvbD!kGDSM;gVg*Es0c(*D5$^3iEF>ijt6`+4A+iM)}mbZ ztB8!MsRwKtNkx9UW*C`@W)kx7?3fZq*Q)*_4x5c=DA{R{ck{TBKb>g}#CVG&R;U2i zW3y>}^acTjz@g$ZQ_o}N{GB9V5&oCN+Iyd2bgP0$;$7iA#{Ptv(@Q!n+V>CDUCf=qe~FsNfQpAKCwJJ6Nv27KV!9hO zNhWV_B*BRr?3@?Z85LQWEE&Dm%!ivoKdj|7H;QS|Zr_oB{_rsw&>%upvVzazPJ@`? z7BEKL(7Z;QA+!aK!q)>Q&#>gdDaaQ0z`;6!!oMn`x6 za#d@9DAZfdQg6LTb#`6<>dqwH>j&?YJrPrxSCFI4U<@s(p|$$>OctQiLXT>s{In`k z_LSM&B&-Yn)1B&s(*qS7Gfos9^}UKep%X2y9Q zku*uV%wJn2E*{0eOtU4~wI#ccmA zhLCyBo}lQ4!pqOgrztG{sdbTA5Q)WK!Oxpo{=45c^8jo znYr<3>e!5j<+*TWvTM_Jt#5SS@(nK?LwCJF41W==xEPZLM7W}NBa~$SoO-E;vCcxK zb%I!RM}KpbK~l0JGW4Rndh=>Zc2CLk3=FqNk>xT!hZ+Rc`CeduCi1J6HWpKy4f$9b}0sSrV5ZYU4$}%VdWh^U8h$C1>H&_tp zg=oAQjx2@~8R7*cC>#{WT5`uuHh5XU?alS(NoD*ueL8Gdd_pltd>UyV#MY~x;{mM0 zsBwV2kN`t%hMel_br4+nC6Z@gjlPf~eXoE!SQ0ECFjfezf{H3CAV|^_Uv79Wsq^2o z*V2X7Da%;&lSHEf(0kvIKpi*I@Ysf;G`f(lFvlStw~E*R`=NvECq2&-zgCEO7BCHa zHKJ>4es9Etsdt0eMU<(%Et=#>1Xip)o^EDqe?`8@Sx*XF6}ZQ*OkRb1V3A&E@ix3x!yeu%1)U72f0j8E2R!Yn1b z$YXg8c8CvVzBX);;dQ#KJjR=v;iY;&oI6#Wct%_YF1E0z0bjUaOCRz~9^8i>F&sm|sD1CL)kaBNN-wb6t zjPFl0L>EoZ8SSCT_%!tGTonbFo`gwIg_GX0F_>;l%oShdn1rzXLM8=3lO^BlD@TH3 zk?L+RM&2By#%IXw9T?(B@<$G$Unq9E%LYCh?O=Xldp%B(WhjpjXImV=eyk%^(+cH% zU8sC8Xt&V}2ygDKC4cMJgOhZ`<;>W%;_7l(FLq_oh zBQcE8iDrC%S}TilB5p4?VA4eY?W<&S)dw9|1B`I3_^r*I!I)$URQ7;{%!9=* zTpL$z2s!Bl0_YPKaqF^lE=^dIY89{X6>M)*i%mF+vHJBQS5p1998i=p+W=_wiBT zZ~+ECiBu81cu2xlf7xp{k;l*{!H%!)7v0#*DLU99Zu2tu!AdyzjSwI)iM)|T*IvPd z=YW1gxA=Z0x5%iK^>tL4qm*SZhBVXC+1D4yAaN5lpQuT7VDeQoUkYp5w$Mtbh8)SW zH`|)Wa#q_$@fbejjyCI0$F_eJx)JJPvrT?z?4q`t@I*(f;7RnN4zb{VPGgAoAS&Mt zCPF-Mzka4zpfB=NfCOJ2wxn~n5SFD@;brgDLYW5vq@lTfZfl*IC9jwbD`=g!76*R1 zx#Ac%tXY$9)@D9Z_1dp=HwY$3d-W8WXRC;xva{Y;U z*6Ipua1Z`#e}L0)(+#8s)`Wt2L3oBpp*&@?Nx>8GMTx*nvn0l+M4%D$=JyE$2(PF) zJ1&Z58Te^NMe?(hjEFfQ6$EQ_ie&7|QWDB6u?J?qdA>+-ic-S!7Gx>I_I&Mk{^4gZ zW~3tpJG4|75Fs6PDqDN&&8Q>nIqh z#BE+=Sdcbub40j04p*qgiZU`=8!TpWtIW;lVhA(vx<@=b{)9S9wG#~$tO4B)%sQ@#j(AobOP@5-8qFXSh-Y%a6p^>G`?sqx?D zF8B@`f5c(66>2V{qvtrv<9q-FS+nlI>n97wbUFS8&aUh~F1viam$CYJvtj*VZ( zYw@HF@l^Vhn>M^cExMwuID+_z1sYAmffJBAX!VzKL}u^zul)(i@KGrJcYT_cB3(xcUsXu2nN z++JzAF1qoC@iB`*1fTO|D)z;@VE{EhiLc0{5ZOE}meBw6WzFZ`gX;}+m!dZML19%2 z^`#bAbE(84W*jRju+CD0^(c08r*AmOcv{)N*5$16`-ZnFN@F{LQQ)Fr2Yl!8GGvQ( zDao;y^0?JUF`U0ul=4&`AQ5sIN)&4IgIWJIM$PJb6VLu$PgeB*NMh`S}nB(j?H#kvj2xlvz*y zn*sQuNb$jM`|T|wb0k0c-CBHwT)vC$YF35E;Rjw+sXYJ*;Y6=g~UvxU==J;p;%L|C7`N=h~{ z%gu6a_7S+`Ku-`OlUBQhWh;|E4-_Z$Kgt>A1}ha*HXs+0jh|g@0xLBANPFt9#Um@{ zWFuakP5N*JF%-5LJs!CNC<71SgV72AvrP=Q7KQ3ybStP1Rg_+Cxo;EwnTOzn@-i4t zJRY&Ut}DT@xX!7$##kzbulf_#xA-2f&tet+yhU^R1K9Rf40r%yv83yx^k4CwKXROA z1v0dC)yhs>a-&{xc#G?jKZyl=LyEkqIiA^j{79>Y1M4RtlkEay>CM#z=x{|o9v~Nz z#czpirJxPDWjZ+wjLSEcuuq{R02eRV+!UphvOuznmBJFD)yh+?Im(J)Sb|~Hm+AC8UyF8p}zYeaG9C_t6S0L1am=BUvvuxFoE= zNvh7lZEGi#a#FfA6V$qoiC+le*YG9djlhdd5)^Y)B1Zl5GI$^HKuJWENAylw0nUR9 zNStPj)S2?XRfEE9w>D0Fn|&eG`nP`ZP=2tvWYgoI7#`DrfjhV_``c} zd=gg%uYPuTF4*h9RN@>lzj+$Uu+4v(XE|tnR3N1XxU9heiov1hMxeP9&KH;k?Cgl2)ij^VWlp zTbvDTjPD~_SAHaVwFVGVPLrzH*O9zbWp$t6Vq1wg18j@_-mpB;(vj}I*a_tze+aC!;WLzt}E5C8KBQapzko!nje zIrTDjsJ3tuLvgmTLG6_(gRJ>U)z{gdnFryKSOxdg)mD`;JqbU|3E|3!(fthFiiMPs z5%jW?9gg9O@nq8J2BWSS!-k%;M;$`rhX0ADV0hO<-q`nYb;V&Kg%5#}l!W#)QrGYl zenF4J8?Fb-ppwpzF$J>W1TI~zodNC*Ei2wAY0ax;qyeVpEcBL=DUCJ4_?7_cvC|hl zI&|Z|fGa+w2=CpTgCwl0^*>-{_*$5ydP-Q82RE2em|SN&lg6~vuAE3UUsP;{(Ig6Y zDN4T{l36K!@#aY#jvd}y?}5=w4MLefTEdF>u>hbX5ja&SWbOjJB(rS^ zlWZzGDJ;{)z+bZH6bGiz%n&=c=^JOpWr3~$F66oSARBOVYRcx(1NgHsIrIa)P-s=z z&S=f@p5q#;*D8F0R7qX508WFe>^{KW>LiA0@dli~!bR^US;1ig0@`;qXp&u1$01-o zAawfF%n&&%f0QlZKio&-5Ws)ptJTjNLt1}pIoxJ;t_H-s+935 zj&<<}&O)$8Hkx)zSY1VahA)fiqrI$}62Mt|MgFKWE!q?)HBXhJH|!WD7^aVw#tgS~ z8%x|@Wmt3?PW@eEq2q93n@|#w^r?Q!Hm@7>lc#DGXRYsFl>ig94Q^og+_syjRvPjm36cYQv;I= zAc$@;#iref?|c0U8H|djuk{E_ zNOf&_s+{Cyl=930r>ojp99^XfAy;oCh%r6RS4O}1#6ZX2AXj!*QHZ$RAQbeF<|j&` zb33zy@>Q%95lZwGTv(wgQmQ1AT|;RW89m~2;jXb8&c%5pJ^{on@ zooiz@ktYk86&LSUXFZW6TWfVx2gZRrP7wZ51};Wy`f~J zu3Z|^O$~_u=n_UV`xHYO%-`_(_;0zzgp1#%R;2w}#-jYjK}yTbA9uQU%qJ;4i8vN{ zw9Z=$7xqAFA$qSlt|pAZ+!{J3%!aTCZru?f1a5Iu7=w6Aq}|wjcDxCbkE-S}b@vfR zlQAOyyjFY1}Tu$@^p#(dTcPY)JGv#^sv4=2|}zAu2(|jbaQtQe?g3P zMHZbGSHqRp#>Zrk3WPl=3JMf#;YS5fy|03?=0Tkb_t8cOa3nE+aGF9jjJ4s*J{>zi zNIjr_cFpe;){K*|8~IGW5j{3%BWhNNYyX095W>m_G`d~F!Ad>5?q<590I=D>Qv7ya z%`+4Er_7bDVa7UCQ21YpWc~v(XQO@(S zo%k1kncO1jFPzD1R4+p=5IeHATXA6mq)$m~?L75pTcnyDB4x!4WEXF&>XMUW62nlc zxiqiUAkFf=_N1ztz6}}==NE2? z5P`RM|LSQ8%~|}y?hw|t1%Z3x<%%9K(p+9c#O_h4#c;xf%rI@F&ha;3nN<%NGUOr_ zxI9W~;H=7LOu_SW>PhTSt~^{>sLV@V1PQWcsvDSYXsj3shORD2I>|v8?Glb6o>oi3 z!`)j&Z-XAqk1&A4t@;rKHdT~Hcj|o*xiu3(q^f(*Q1f`NV(LczqRW?68Vl4Qx-P{R zmD$Ke%`-}SJWvUTz!kg8xjfh~{L5r01jsDBH@Ip6BxfUv@*8Il?uTWrt$#A>%0)@l z+am@`Q(vJPg%BG_5@}_#+ti+StL?Q^HhJD)ZkDt;m%EHgK1~DqtCfE~?-$R~#&6ft z$~1K$v3#KrPE4gdSBBN;A(a8%j38xqTj>jbVYC`KNH67O&`=`a5CMzoR;}UGP+!R_mq7l-`l*7^TCq+XVHTu+IN`yg6@X4l(*$S&hnVi#pmM@Iok4{%7UY(Acp+J? z(Ud;MS0IrWs)7nJWcg`@vf|6Ww1NX`E1*YcYVJId+6w5VOMIWyne?D@sZgCXHXNY$?e?uk_tn*vgl2g?Z9&ONyLFGN1uI}&`vB zQu;qm>P_*J&92`{5s8|Xr<5D;*mEpI0Io9QY~tsoA8%b zLE@*#?k*rq=rOIpVk3?`gmi=*hvLJpK;FlwQq2XFBozBBmN!g|`Z4uRSA3x7k9TS9 zH!z(uG!Zz!)Z@0I+K2FON=N2~!qItq0d7KE%BwwSKAFOG8*o~ ztgpkU)dr{*xkdG9tWYQ3cpfwWu|V_r4Fo0!^nl!ZOO~0xtY?1R5_py=w!?n5ijSug zN;dHrU4Xr+)kRwn#m?64QY^~gt&qG(j)(#;LH(#6=mQmRLxryYLJ0rODACfsPEu#5 zxp_ocv?Tp6X%)dcm$nOl^u&aZ%5l!gem@3JXO!2k0Cg%`+*nd;$fYtj>SD>5ePeuO zCP)a|$knmsm_E+oowJb{d5roYTs(D-Mq&bK!FJu5brxfu38SiSVRng&tEo$C0YZ_S zpd$3GEj#4Ak{?HPLblYGK#D=_q@-yz@J6e=9R)wVu9Go!J*Yhg$XCb zsSO#}t^(4xwk!8gcE4xA8D%WP9}kp8Z9Oa7}KueG!KIjPf= zUmoiG^cnT4oI@ZMhZyWdUbI6H;F*k?Cww}1qBEs$4x+V`rhLUqBTcCBIZ`)c<`0)( z#<&&Y%L(<`d7&pd=y%U~|b{Mj*}1HJe%K z(j{-=d-H~g5PM&at=N)`3p6cXDu@Kp$#0!=+2{9Bw)qFkxgM=k3R`Q_jI15U4-9{;bEEkXghU-Pzb zOJ>--VX=yU{_OJ5li+$WRy84!wc@L<=DAJkFjag&0xVv^XRWiHM7Z-!=27*Iz9I$C z8UcFo^fpXt$F%!xRWZ?`~tgH?rdiXzTQ(x z!HW^DE9rsd+7c(fFUDIw^ksxvKwnx@oxB#ZWtC>8uPy+q>hyW7^% zsvG{*Y-5A2OIO>Xs%Bu;n$tmDjc>T(nxFnvmk#dUh@ppxvGfl%dYR45EUJz2fG#St3ascG{lwg3&2lZ7KZ&Z~zxZ#-Puua-CDI9gubXaDyL!f+cJSO~C{to0Np&bY*dIo^c^M({N>$y1Ud}=mno1m$PO?jh{b!kK!rZ zC+?sCAaW!K4&{rrC2>^J7r}TKH(@tEI?dyqiIilV=H=95Ob>*?x|HCDBgsKTD5anq zY;3FsLBfs52e7QjF0wIvI8?A~cHX|#5XgZ-=i2(12f#;d9vq!GrxH7}%dTlQB2w;G zJyhfojs%fnVZy-vAW`*2Vn_2`Al|g!_APp}mb=weV*pCNlzJQ_(d5ND5HzyWI z1n^FYj+C9iwGGeod33DQl&~`eXv(4yKc|V1=d7_GOdyUZ8661$O4So2wnFpj3k355 zLs1+1dm2YkSw2nkDvFX*l&4iBgy(HB6pNAAj0{G&cGM*Q5be@NkYmJ6Q*0)A`;-jiKrejJVBEt3kYXQ_JA&Msp4Wi^RD)&qQv_**4q#B?5b>lJUt!i zjSMaFy9;PXpOTBr@Z|Q%LNS*Z*wP(!rT{CW845b&*r-TSylUlEbIKfktM?!v>EmM= zRBjz?cm5)9@$pKtK-6Y=tJ%tvTS=kgDPP78!QBW=bOdew{u(xCaIkts4i{?AY>K?d zm5(=Dt~yQ}hmejqHvB#v6e2QTkzkNU1sxxRRiQ!739@j>?w8MFxXU$MAV+{YAdkw^ z)$zKS63)3jtyOQnB=bnxWtx&lu!FaJ3QiE3NRw_}JTe)E#;&k`eoGokN!o0vF)7Bh zhZLg2OUg7A*L_Edt^3<+MUOl7YL#$67~rwLW&W9KH3F&8S+B!y^hl#fe;uTF2~zidLtA8H^+Bp?E>_?_w^_#1JP2i|Jp%&!*y;uHu6 zRk}vX#Gcac(l%8aDr%u}28!d%4ZbY5?LI_v^;O>ZRj3J35thyJx9dZ&T_vtbUB*t( za}Wj|vRDt?>-n0N4EOawtA;m}Y;+D|@5FylUh2$72t-6JjvnRXW&h?B)iQyC0ds34HiV&@@s<*z4g$_f%Hk`B9+mn^_sh2ejaP-L z+4a&a8V8048qrlx2|1{vz>qnQ@$hKkc0Q_UB$&K#gpqnEyS)cL#h# zWC5a9g2-QnH%ZeZ{U|OozU(QBq&LA!SJ@MaSAyVcVMduqu`aS33W+Gcr zjdkTx@L{CL-PUcnGeI}zApW1%^839OfkTrK^p+p#JPICT$bem6?R%p3?L#xWf{Y`j z@~eF9pE4lM%Nr@#!7T)uLO*V{nw$%yR=ht?*N;SALWjmbwG^D(i~2TbTDa?FB8h3P zaf1bm=nU%4m8@7oSwh8wjh13#(#t|WOGSx~Js~hMfyk4UKh>XS4TQ^swmOX}1C3FZ zHMg&vDbPDB6^v5wnh>^+@~T>Aq8aGBTjAAYEy+cYqoA!9%u6=X83scL38gs`YCCu` zE~O4%-p*6C8~Vo}IS!IfK`CNSdsQ?FS5faU#vHfZx4Iz-vBE#{x>s&|);hz~%({6aND!#N0C%YMG1H^?tNUwaP~a_t@d zhJ`a}u)cciBq7z=owFubexa@&wb*c}pciA@Bxlv+dU~fsUK(9ugq7q+8mV5(wW-Rm zKFxX8QSQq#5At&#)$px0FN%vr|ERnCzUj5Tk|NTwM2aSF283Zf__4=8mF~BWxn?>! zrr^q&$IwRLwrBGcysx+&BQc?tfk%lHdi#!HrS&eclj4p3n}U;IqD%ytM+nv|Bznj> znDRqO(qF-HZZ_=IqphB&0jwm1UBhk@j5YU7_TYWZR%Yspc#5vS%TC4>5(WfQZC{69 zGilGcG*!iQQ=G6!5Sha%qyKE~jF6o>srvdIx5EAl5f41N_{E7gR@k(U@?XBNdc zL%z@ZaZ1~CKoP}tEIPt(umgR=bFC;vD};%Rew|Gkb>MX&v$7MmxRRBH0n&$P73P3B zp|%n?T8jM>o5_6hev7Y|NThx!UE{-f1ct(j%r}iDvbOLIxqwebX!(0lZzV<|A!|=C^=o{ zlvpIm8RRo$2YuI@Z>l_NChjc6ZVxZY39W4^$VjcQA995N7<~ZF8epoonF){MD#w8n zIvwVp5nLt7!fyS8=pu)?Q8#4B>=Nh2$(qR06MTpi48k^Ntj@oWs_^dx`ShC9Y3T87 zK2*~iX$R4Whn%UQBZ4;LJb`(QT&wk&jY)r-O>`po8$WCW14zOlfn_ z)K2iiYdPLdJtd|z%B?<|LHE;-*e*vfZTEqnx_wkadh{CJC@{2s(#r^95X$Jjt?%sB z^p|N~Jw?diG>XW+b4B12!D4xepu@XWc=(7p@7Dy|&E-^i<39BrvaITtJcpks}kHepOS7`)hQ5${WTl#?XTAv-u1ZZ%NR zDn1!x(~{v9?Ym2(l&d&b@*+51Ug4&V3uRv%gcyt57vk`ZiG?SXxssg5NQq5Yq_Whj z6DzLEkkts-d|P$)E>u#Za5JOo46+*%0&zrjoW;~OAu;e(oaVB~5Mhu`n1@FaVJ&dS z5^^)EpjKgmD%ip;sfd%*kLWa5`J5|`qK8BL?wl|K{?VZy{#LsiX6=-pZTa z5}JZr58-RQ4c>`5d+C=+Q!j47xgnkgMg-nc1Fa(@%=88K;UCOs1#L9>U#jn^3~VRL z0w6jpdawlp{+FJ2tD`bV=y`)S=ps!y``%ZJ>`(i}Mc0jH1@!t;mALtM8SbbXJeVr2 zJ_jaOP#K&6Km?Eykl|d|Bm4|WlzNy~)uI-BuF`tQ1bzS!ZGJJwN3nC@5El7m0F%Hg zA4Mgv(Zvi2XXP7cp@NvukSl?@w6Amoe_U*KkH^i?v!aCB;xX5V83-3}E+!ME;^azk z$w9;xK`;;xxn(bne{WlRg=S|Z;mc!tqhUNavw}A88@1QBZQcVbUrcxj=Lf*{7^MZ( zt=>y6z^UT)^?voQIDvu~C9KFi9;3mYKJ-W^)$OA!wPVhxY;que<8X93Z8^!NMZdT8_0YF+37X`pc>)Xvxds(MlVI_H6~j+Y$J$9)IEo0Xt48 ztk3VWz?RW@dOxfpOT0%LG>Q@Ls~D+nMFc;QQDwGu5<p0UVlc8HNrlPw2_G{oB!>&z6 zSS>&LfFoYM6?;}*;XWGYsSy=;+q}bjRq4UU{3`$3(q7X?JYNmiXOSgr$%E^u3AM_} zUB#WmrC^c#srFN~#s!-(!-&TF|N(a^ZyYqwC`2IB|hG0nhKCAiyaMS~Qyl!5~ZZS8xFS8yeRUfk0n>SF85g&YTpQzq~ z)FOBbYK2T_gtUSVwmLL}!oJiUC!k=UzCkbi43|~8P|of>0>Ct5G?zp?#M}GII$1w% zE)UEVlIqyc$vs1j$KBv>!y4I*vSUO@Dpb!Dz|dn{IZ{QkyMCO-i9`=(RNU@#G4Yj? zOd+DCKq3U1_8KwBz&zja0GhzyX@GGqUW;%U#4Ak3La={}?h71fcguK1!+B?~B_Q)2 zuR#^+5N$ZZb(Zq9`9$VHLu-X)kSZdnU?Jt$`&Flkz=nZpz7)8fKM#upb~%!KfHIDL zNz|X_YA&x_;YF}WWV09YQVhJH2U9=N9# z*5XG|rVY7>MxwN!kTC!P*Fc}YI0ws?jfJRj;3>{gofAak%8({)hwVESA{I8PjM5~Jdz5yRXq@sP*!Xmy{duzB+vb*_7W;`q=2 z9Q8bpp-x)J#9Gh-fo9XilU5Y)ZPTbE37K>E54d$PnG?Cu< zX^eJT9!Q@T`Kzf(eUQ0Pc%gLdi;nie$OvIu@gs-~r;%A}f1?4hmGnN{Cp zZk{vc1aCA4yeOj~x6(8MB6iGAvvoNZpc*fju#15^6`>bhh3y~V=`2PgpIi@5n{y% zxRi4(hmdk(NP2?W?^WLXMys++G~^|#!-~W^wQ!I%2u1X_6Uj$aw~_&PEz^GS=4gd} zKOYeHoW-SO)yuFrd5E^drfo{J#cN> z2dQ}KVl24d5X$J2n#P77=sp zfjBuhP19zKAjzpS6moGw-4sEz>w+=bWA2oFJKx1kUxGmGovcNpGQ@Rcs0JLf9V(dP z4TCm$oT|v$?TdX%x=N*Adkg4?Y8U>RAXAEx6LGRhdnSlX-U8i0aAIJsP2xYVZ!-=R zGM$dgaxTc>EIM>qGUZ>vtavE(gqX^ovnH`>F`^)kMTtocIMA^h#B}gR46!U=ri0)e ze`;LyS`DBl0yzhZ$4JKayPy{$1sPPr7K%%PDOeT>B^rNR?m;$!K-xiz#K1~v>h~DF zTz$}g<1pb2OdnQlL8W{Ux7&eL-_q_<#3OD3;=_x}qOEl7D`}7NBgJl7*)uAuutH*@ z7Ko2dVWswA6fSS3&wVa*5g%CXq6XAHxhfpIZhXD5Pbz{mLYV7zR#~o4q4v5t`@@Eb zudt-V?Zt3NOO=}hKa&-Jo)3D8zX5F?>@YI8@$5pn6vy`^A{(A2}9 zQ}2hHkYmNLe7}8=uk9+X%r!ECZQeGCqnIXjZdjWp9Qf|Gmc>hxjfMMEo@yevXq61D zcLbZyd>>aKrw*QV&VWFM5er{T2(no9>n2i_Cwpe&Xnh;h&V4Y$@~eJ>f-#-kCu1ZJ zh&f=~haiF7kVY{hq5J9%++C3ob6UT~5k*p_I@?8VLiYF!Uo+fl6{L<|wfmb{YAzi~ zgkClg2=+DcB!S9_$m1?ziVqvfyVUT%obk!E+W%jT^tQ+T!^jDR!&@@w}^5KW$ zHGiX}sP|MC3ht0!`BR7OT!c|!OHa^?a}g)v%!((Q_GW+uxoVJ*k_ZuKK!IcOf*M77 z54vxf15@SO)b2_=%a{Yt40G{7^`|s^m7^zrssLSCrM$u!i(kM+0uD;|P+x6N$XW;2 zNN(MZuM~5#j*bqy0gp$Dd+3qALZW93JTFUf{dulIpB@du*$^%E%+^$f_8o3htRi|@}7$o!;xTjP}K$^s%4k1V_4Z`WtKV6i|e)`_nMK*-6qOq>l zn!3nE?MH)(J zz{mLaWJu;!QFL)m{~F`N@FT}5fg>g9@7R#!5jx|CbuBoY;DkY8tUMpD-pUS9Q)gJR z$MC?@L<)`Gy+~r^rV=p)3iY1W`JlPwSllWS0&9`w*A^)Dj=bq+@z>P*xt&tqU-6J8 zTk_n@QS%`?2$?Hl$0xpWs@9{Cqk!Kcluf%V+&3bs!#3yLItL0n7&mUWzM5Bby)`Zn z^{TmeDCT9jtzSM$e?_^ti-)=A+PoXQnTBGz>!+jpTdVD2*z5<(5BK%MZHzP6cQ*U? zZ8cocuj8y1y)jLsL}<_sMo1ldW$3kjNw*KGk`QUn6t@#c6IqCly`x0lyA{ou<4|N| z(+FJ^5a>{6+@3yJ3rzllAlV8be!h3?7PL#2d7P!b%C%y`C_x$&h=uAT9Lck+7@@T# z(20n8JYavR^il0oxt0&I-Z&xDz9-dL!ePYdmd!Fep@Uko)UoY$PIbxiC(Casvr`k) zID2k~EAz>Q731rH%U!6E z-e2)S*i$}~ktv|(-G$;UxrZ__8TFmmVgpCo6y!!=z%rPiHlGM*=!`MuM|_HD1{bK& z&P+wmS4#(zEkMf@z``ANW(g?*{&$9on_i805`|2~Gko0th+iZjhFr#kaleh(wUtf! z(4I3fHNfh{SMiXWB8?xSju`ZkqXL~~SsnI}d>|s57<;T)H00T-F$Wnu5#ufIhj!`g zWt3p0Jg2*aM>szXP{QO1Tr4=kB$tH6l5FM+S=GLx?h*)Fyekhi+drNWYYUcllFfrx zGO+)ssyX@!6|Yg^9uHa1y)fQY2OtXgRDST0)VFLqW$-$CbzH_R-aiAv?Zkz>L7l6A zzz?G8kuv_W)vKsxl+#8|iH?B4N+|uN0S1^lP9rQ$Q%{}=B4_hEKU3~ZoSW-h*;9T$g6Mp!Z#gGmbd+SiZ*SqDDJlV6j6Ten;`2Wq! zHpMca^+)O0#LtO0EUp&c>x>htcv9^{v^#=;4p35zb;W;_1vdMMst%IM(~(5pPlN(H zU=;8&%z`9l^|Wr6J$i(zFl3N0xDQ7_XMUXv`Vg!tR)qe2FW7juamqcsx#$seQ04Y`B&Dm#=KLtB@e8PY>%W>d5dwq9$#$hd(37*ddNYiLu zRcVfZ?OYQH>!qTzB|Q6cuDxhyYdp&J3p;+hAXPA*;GE&ss@4x%K1jX zs(6w-uRK7t)W&pn!Iedk;CD{$h~@Q5k`lJ0{s2ELYROKTVJvHtY~*4*M)M9SJj>bu z9>iOB*>%hA>gy16Fz96j;tkVKQ;59ots?7tB9QX}u=rDMN9=B%LN$LWw;yRZ1iX&1 ztlLwew6d|ka;EfhZQ-#tsC`Hl_l}xES1TtmU(B4n?w-$eGiLJmT>d(9;BLH7(3MIf z8wT)eK8QPN0C(*Nd=CQ!Vc^-D*(LXrhiW+yPdY#K08&!%*?1{JSdeNpEH$;ufzt8& zcF-sf*wEuy#FKhjeLyNH4hbxbZ`(WoZB(Sa?b(76iXAG%eHQ2VZ@OrSg=Ahmg{-N( z2@G4ha~R|&O@Uv;~pBP5S_Ayge%&ac!Jj%zmXnAJvpJ@em)ny->~5SLCLHjj2=Rp!|YXr zCg5Mws2DYCpj765?!EPwgAZ+TU-I4%c|6gUB~-zY8!H zjg&O+da#Y?SKZ}FT~^jH3E$~vH#8TiTNT`0D=J@XP~!)seLt;hG6us}RzFu~=^=~T zoAjvT0e)~Vi>~B%bTTAdEPY8ZA8O*Aj5OTQbo1^U{3OowZgtX#(#TK{jRZVYvU_V5 z|Fc1Ard5Za<-D3ytqz&K$=?9w?R6va#?Xi{s~T-W4ol-n`(deNwdm%rg(=L&+Tv2m z=+V@Q$g^3IJe{EJL;s(>0KCDq=*vniZ?3(DCkgX7D&HJ<8G(AYXXaP@NE=cNwDIxR z&gELT5Y1kErS7sREt;z&o^ZkmI)ET>%1LhD$@K#-jRgt7=FiV{xmbHc%n<3lTNYjO zHA8zfKMWDi5tnPUkP~l=<=;He*Qyf|VP;BuGuRhtV5J$7Xr``kkVRJ^A>;jqsWkOh zsOv82Ql=DDsbl#KMh5Jl7+ceU^kI9eq$5p(Rptl`@jzDD6Yn;4w(^F%6AxM6=$XH1 zkCxjEMPOlBs!Nczw9QBag*TFlBUP6m$Ozamj<1{;v4JZu`ge5jVkAn($zg2cz}kil zE_8z`3PdH%t1d3MAt1j%J2UWoWddT!_62^cT53nna*?6eF;PyKn7K3c=xBCGyUU$3pwN`U+JRjeMp2(R7_!Rk zt|2AatBR~Sbry~W80|*4^h;XyAX1GtG9YxDL>);nFq39PEvI>}-cxx>!6`799Lxk6 z$VDrPv$4=CZio-$Ox0(6kvRdN;?f`mXz^Np^|vIhA2#i5jL0iN$qVm-O%JZ1uiXOQrtoB+Gz|CM63T&@E6OGCoJh4g zWmqIH#y}Osm_;M6=#xzvaKCX~1{m<10wn-KsIDXV;NEAT;G6KK?d55kDj1lBLzgR% z<1}j>1lp6POM5pJ6X0PvzDAK@odYWBsMmTn~qXK2W#^NS<5 zr_vZq!oo_mc2|n>9r)t<45I`AHI(edwf={ABd+*(TN3;aeZ#3KFY|nYNCI5mXbJ^S zf{x2gco_ruc{P+OaTx8EuOgSWoYsI&BI-taDvH?jWz(X@k053yoXUHAhYu|QbSanz z9=vd?s97I4>w|~p+Y)p^q~B=%6;5zCQbDg}8s^FHe*Zc9XxPr44yLeoDoJuq{P~E{ zr{IZ#RCAmib{(K*(t7jAjFd5c7%?+S!Lc`I=KxWont9R^81`8&C_I8P2*6z}4jTP! zj@-N2g2QnnMzaJM=(m!HI1-zniW$gwTemdEv7N1jhO-X)x3^%U+k-45yhJ%ho`Q+Y z^%2dTtvj5XeS%ySw$L51qv5F!>#{D?QghSi^3&kxK)g`M|1N762?Q^tl% z$;0iT94^rPMwkS10WNFx)28qI>hK-m zk8r6Q#G2$a9Q#Pd?O{_4ldM!W#)0i1*F z#0Qc@PQ({!;&K7a!PuZx1QO;(dCq=BhEX#ho7f3m!tdqNlKIy7Nz&&@%rA-G^tI5w zXvC0pDt=)jv_%ruO^-7JsQEPV0AnM>2j!QMRbO+qgL})i@txO~@8a9Vjw{3j*_S9K zBfDm)(9k+S?X%(+8c%k+x-BGQE>NfdJfmg0c_XXJ${U&iN8dB^zrRH?N{a#5!W7Gc z;5p%hs1Wkn4{zkP&mOj;q9YBqrZ`obtZmHxy$Ku-=Q3`ZBM=xB3q=xzL#8$?U4Jm8WMF=Pp%S9uvr zh!iJ0GFt$i!%7)!>E43cX%&z7ssEB?D8vy2f_< zc!`-Pm;H05(kjQ^CJ<9f$bIc=nsNQ9yaMPPze&E24Vf+WmQT4>5sJsnEy{b~wzvFS z<_omu5Z6+k03)Fzk2Ho54$l&v>4(J@>{_KfNVykmxg`_9ZZv;fo3IGf=CS7RdGNYs z7($m)K}O{_TjCHII2MVZl0Pbh2tyZ|44|b~;9v4>O#^wk(P=%H<`{a{0OHt6E&#ep zf3--{c;B%GXWjGac_OO91uuwBo~G~%tH(zof>SVuMxGq?3Py@xVx}@=x%W|lt9Kg& zle5MHFouClw)eHM(S_I^BXnP@uH?4z9!#-(iTb$4pW1uG_DnK1NA)&Q^$%d+G-m zte}v+0_nw@WBP_(##^V?viI~-TcBql%8|Ory*>beA)#3^U;raWFJd7ja#$&ypF7#3 zqZA{esBpuEQOT&20dy}L7K2^?X8Zldk8u0wNvp|a4?G_l#juvetm4GBmdQEQvZaQs2$P}CAr=7QpO<_q$iF$_BFp}pkueNFh59d$ zGTeybMB)I^7LU6Mlxr7N&5Qq~&MV>6=W0f4f-XJ)h0%&y*%ut==9_pVTZ;TGK?*umibeI-~<~UE9~`az|qahW*hf|FXh+;&3Faqas@?FD5MU* zQ64JcVw?0&E0BvyYlt%L3%JJ?6vjK8s9}7eh)lUboamXsFTT7kI#DDKp%U(yeG%VC zo|VnvvHY7-FO%DBQfN=11~ku{K`^+sK?#C9-k_wkkq~Ymy2djuA6r^TGGdH>P|Jb) zd_$u|>zr#KFBr|Kl^$9TNf+XBVs%!x3Od*^WeNaR09}w~F^$^YFJo?1qyEbPNkx87 zwE!)f69iyrk0PEuAL@S;`Du3xNuEz$T%OIBnQ)V*Q+IA&vn40Yb;FJY8Q72p z%z5c@662WsF#QnT`{eKlyIT3d7^|K+Gna{c2SZwgtv_#U|3Xg1Dqh2|tLmoQQu1TMRND^F@c7O!i%27MDfoI=a~JsL-f{{ocs;CVmX zO(>WRN+g@NSL~~_;La8M-L#7a_-&H_HjxVmpH<1gEYZ zLt>jzVYCt_2Qu?O<&8}Z!*8TaPY*6MEx02p8jabZ7Te-~H2*;2r20_U2swcrO1c_R zPNjWEOEtTS&dN zJ`-e^FVX~SDVt5BdP`y@;gueH@aFpEp3D;9S08~>uwf>{hdO6Q^+eG18|jP2ZTGL) zwIl~oGyhTE*hB&=4`1hpX+|4`6wc50>iKhdZ7{GPis*F#d|~^e9E5BRZWc!C(5PBB z`1)Z6MdyZms|SA;Mwx?}|$ODmA9-G^&b9uU81Kxb9NtXmNHBNu`I34gVwb%P0d zbIK_XlP0t*9g*kNZ6}KSceSjFMx87C)T{n9>;&0}Es14|U{;RJT;n*fK5D;*oc{m$ z^j{OlOe7vb1t@Q+g=+J?op@Xq^aF1m8^f3ll5-;}W^^r`Yd<@<19?Kd=NL-s-VDLY z?SNQ8j2s9)1`q2k^bHYtyi5ZQl5 z!Nl?H5Ag9)7Ixgzt2B6^jMgO_Q_m2!I>DQq->UlFvQ~SqM(X~FiZE7e=2P_TumTFk zl(-(*LsZV}Bsd2ywY$VY@p%MJh#9`d3!yRjQy#)-%+9%+!IFRrl&jTJZUh~h-5Nv< zzarnp3mU;pSWWOTcVDW2i_Pk7uWvjzja(H~a&n!TDy4cJQjuTt(wmcSG^CqpA{C|% zC24^$7CSs=EZ|aK4zXxm&~a%T2XJr*5P&2-lAp>_x5l8V+lUjy-cz;aoac4e-@f-k znH)QA&woBD&yM~m#x#1#$D6Z=%pBsc1jg)&0AQQq5+U8}hGsDbf#;`xUtY!u$x@qo zpc&VtXz}&K%sS??_)69W-<4qydrGWu@971-5@F^Bs>8gJ4d9-+NBwEMKFubwr@H)9 zI5@dTQ(6eTe*IQ*l0uwu41Mni*-#8_B1BUO#~Z;@oipIl=pjK?J7{TSZSq5_I2Cwoc)x$7V=8K;ur`mLx zD%y<)pNdy^(QhkHj=$EZVR5S;DeF+Fc2>bL0GDE5_?m39R+rM!h_ibPL7=~?07!nM z^~zxKZYZ=YkonhGQ~j5isZEL}i$S*Z#BdUEL{?b@pA&I2xW5?`Sf825UM7T!Q?h@s zQFu@YQDmXZL;&48$kB1)SLDz0N3jIv&kc+vAlJ(C;rB*=&VO)xcl${YI=RnHbCGEa z+1-|pVwNgdy*@>Lg!Vd9>f$FGu9~Uxd_+n;qb04l6{2*Vrt~#*b(+D;f2;M%jWVMC$q+R@PzLsW^LYMkO?WWfk)K zIW9*bm%d3fRk{DVJGo1MU(4b!4_J_PD6m8PZ(YuZJ5EkHFIL%rSJuL_xE%(delR}`z5LcO!IZp+P;ulU> zcLW_P2S$)tT=Jp-m`OC&(7>;cQb4NB*1pih|~ zPgU`p5>wSpOLpup3xzcZr%NVCZdTe{%jH-GB@%Zx*xB2ix!~w+df#Bxoe~5sL|HqK1A#Cbn75tUdw~zqs7s zWdtdcVImF(X@b778@yWf@6^2OfWZc$GZuMgk4A?soQBzq zA7?jszxu(`C^|zrC$+2X8+@-xKg?Ck2`M{z9w8H3pg|cgP8j!}3j~~57B&Fx!?PJSiJ&NcV{fQA%W6)E( zILmo~j4snGaen&ML89*RyQ==0SMH-G*Vad23|-D2N7RjU<1?zs&eIdF$ibsoA)TQt zVq*c7h}qw|7lLK#HNwD3v>lKNp(XVTt3WF%5J$cN>Yk4u43O&f?R}dJPEsDbAHJ6^ z=+fC4+A@0Y66VdBr(!Dfu)q7_0E^T8TgRg2cV`%}zY4WOY3JhLsVAVME`r1I(+rQ- zAE{%oLO2&M>UiVz1u#sjx?V8eNiOJOKu55l;)@-ESPCS#yH|baPx~wu@F{r%&M;S= zET9Px(u4FbpH>%F)4xW5Y3Rlq^ybgKTf!pIuzoyEKbU;{dzEW~cV4pQZ?fq*mKXymp?bCPYscwrfv6B_8MNJKIU{IQ_M&*8$^Q@mz(FJC!!D6wU2p7GBp;J?rAw4ZQ)Yvuqk7H#uyf=pJ*8q;OCF31WG)KDen zL8!WdpL|6cr4$R!6`-_q!?95tnk)ZXx>^+&R7GH1-+kV+s-7>;;Yp=*txed%<$No< zq@X8V8VmQ5c|BLit#af;f?%1GEi*@_>gs~+j_q1;1gvzt4^3;}vO6I8!HMl@>=-x0 zbcM(a8LHG-tAt8w-^uoF{6Z{PgaM%#gHk8OfTopP(D~qV7!(ne{lF6W*BF~xBn+=I zeHO*B{D;H~JLHR;Q~XAO@pYYT9!^U<*bG7G3I-*G8ldSniU?Hq3q2Bw;AP}tp;@NI z5>K?f(P%hszKb3D6L8Q(NWHFI6_xjMZWO!%HWE@eQhwNL@gL<~6bfuG>b0SeMEAla za>IORp$A`^H`QNHtTA!?R}2B2v?YlQk#P6Y_3fd@5&upo*eFBnY6i*;ou0;i0sXY_ zMtb=OXNKA?tR-gkP#~R2_gp}_o=V=pe?z_61!+YVsl=gkTT~h7=phxV4 zpF&S8Kp?!fmk#wrfql6?XcGkr&E?Se^Mo(IXM55TP$$h>^WQxVrY!bWXbq`{6jU z^s=Bk2IiUUpqJ)4q9G-b;D{zLsRD3e_gDjSg4C8%<{YvmBz@H<4_i?(R`t6>?XWT` zl0(81uV37wLl`@01F*j?Q*{KCw%s0P{aH}LMhvqk4p^}ZiKI&`Ys9zOfE3u$XPFWH zO)`VssAhitmF!T|R@J#laAnDy2=QsvI(T$bjlsNZHl2qz>e1E_IPiVx5dAG+Z(Ct& z>s^jR-Tg3?N^tDjL42murri)<>q2p3nCLZt?@1=VPlLwIOh z*vZW+LpgliJZ?;R@rMtHL6fMCKF+chJ;}G3->sx{m|6bZEmKcYq|Sf*xmk94T?ZHz zprakMlr*tehz0k)W!wQ$dmaNM6Q}Q6#J<8)c*DktO>NIGsctx)p$?AV@2fbz?T(av zRm%kGLeltum)%33Hln^bj$THUWDGQT<$y4!c^vS3-n<~4-N2FQstLCbv?t`Y)4q*G z_mBZ4t1I7_y+SjKIb~i!M9Z$Ba69cDp-Mwv>asM`1#BvflESeSHJkXVeV>5YMwOqj z^mMdc7uhb`GdcQ2hPWD7zbuGrr7lh%+-9x`$i4K$0Y5{NdfbgBW&b9AGa+C@8N_Mn z(kzKlhK`vkY5+q7OR!j(}} zP|pYGKI1*;EQdZ(V+<_Tz?|3`sxp;+i}*;4B$m=4XShl2+2V2?gj49Ebi;#7RA?0s zdXJgtuAG>?iZtGEgj0eH@V?c0G!c~!s*UR7=cCR@eI{)v$&Z|R#vfGu{Q=MHj)k95 zQHrf7ucqm^G%t}qJ}1m|*e1zWR!?tqR;9H{s~h+5Fx0)bu_|Ijo(}RTY7?Zp#235k+w=$V4~1kO zjb1?Lvawj9-VK-#snZvGH%8iiq+go}oOe-|D;_p$m~qJx_t#!-u)Ex1MU(R>1b)2- zd{D&*o`zyUR!0D>SAhdurNxUot*`93?FdP_Oo4+D;ipE<5g6-5Q8z4E!^pKy+;yDAw@}sSBio$;klCYaHjIgl@Pc%`PF++OW(W$p+)#1j zC{agK#ALXub{^E_-cN=_;j?&VNgea{L_h_Z*vlcsjxdtQTVAr(YQLMXnGbdumSD^H}d;nN`prkRpXxxA@j zOSjhdN*>}*aq#9`49-E~3*zD@od^z*I4F!xB){Pj@PNyIbJe8FFtcS9mTCSFuuag< z57IZ013>_yF@zuASRCq+gQjCaV(9PcKQw$|Mr!>>a#-M$aJv&G`uAE5cXPz;M+zn~ z7iOtW^Q?6N%;aKq*WrrzmVrk;s()rQp|%;@uK$?k_OHZ9XZiPDxa zOH}wd3_M&_&R4F5BPEXw(}2ldklmG2XAii$MMU+xX2#|)*dcd|=LF*1M)iXv#}4M` zTB?1}YB*Ly)P~E2ko89%g6=^IEqvgzOEOM!!)5w#o!>rTTgr6j#RM1qA`f^T1LQ5o zL%5BTyK7#h9%uG<gXK?nT_@3%nPnS-N=K!9K2sG zDn)pQ-x?$c`A%C+v#iutsP?ihgRlJXL4dJWL_`t_c1wMZ`|F5$Dw|vnY`%Nkgj9UF zK$3q%N_i5D^)Nf7O~&I`7vYxUQ;7&O&Y#N{!b89E0m|AO(JYtmW%=U(=py;I#aP=n zl{hiSJ_=3kupSO0xT?>I4KowAO9bh69 z+0Zr}mE7s-&k=7vUi$+2tDdh?L=2h(oExKtw(OP0PvmbTUU~-Rftb&^8b&Vi5x1NT zYoiuA#AB|u2}(tCCr;hFuzpNEOpUW7-2nIH8)qQ)dX`aHWSQ;H z02FCuP&=nwgcC9R5FCc0rn|27-%0~Eh+<>F(R@Y-PCR2xrOwTVVDIO$^RjSQZEWc% zI$ZMDs*Ioq)D>RYt8OxqZdn8AMn-~zVa)3S-^SAcgu*NRz-h0fK#(x{33ed-#xLdn-#wS98o4CNa z8e&zR6UNMtsW2Kb6rEP(-UJo6jJof!_xyAz;thPdAD=`!OZT7%2afo0?v;+fB?bK` zvXrtot%jScudoYxA(cxwEg?Qaia1K%4;!m$KJk?19U6=@C+YqjsqBz3w``6cMe^*- zzmzGLFvvVv_X>G*i!RpXx0IE#YaGUzyr(8`lsWk#`WOsnS7u8+F*;?j&a$_B<47a& z&dv<;)nX%n7KGG*fLj_1+H?)c$`g0Am3Bn z2{gjem#DYShOb$ni^=tE7%x17riFZ?(43{up6+&+4|QIsLIx=`cg_JJ!3lmq<^iFU|(qG)&dIeaVe&Ni+3PPORUkuc>ZAPPS>D zuI~0Jkgtnv8YtejRF6Q6RVf*n+QmKCCFFBn_pM{lIxgPvmjJO}vOtdBs~G*p^R` zVivh3RG%|>f*6&+uhpmYK!PbK&4W)WxfEwspl~yGMt*CnM&NLxaaj=CxRA`T0gQrr zu>303OymW0NY>o3D442lk>bl2!E|(>w!%mhM|s!Il%Ihp3YS<-AXS)JoZ|Ikg&fx7 z1vBe6ao%HNy0u!9hYiLL&vmBa=L&uNY}6mCqR#{r;N$1>$S-!g8!gfh6^)YZ5pD#2 zVJA=WVo#Acgwqsdnj@;emrr4MLS(*ta0zRM-*qMZxe$u8s}AE`PSb>MbdkaYcGqbq z;)mQi{DWg(M45EbR@YKlwfgwuF&AOAFOEor21b7_bsn8;hgyrUtZjv@#X?DBoLv{2 z)(_5R^>7zCKL3r(fC+Dm>7OM8k{LjY@cVl9@GjO_onn_A&IZv7LZa#GZG*wpCm#_) zK*ODoBpg9{hf|t-4~yWtcO?&?;Ljk?Y7K?75SgouFtq`Xf(wqB--K!l#bBS{9qqQ0oJ8 zr4Q>2Sz=(@R@C?CPeTZ=PEMbMx5g?eZxnwd+*VfuGGUEZd{oL$9>;!csw;8SEpW`f zu;XfCL@WcH8U2J__E(I9fAx8@Bu2pULPH(QuSpC$*qu{IpOOe_QC(TY0s)jo9{hYK zwcGKtb(Vk1iP-7QstotvM`c;lWHm?3io@avjopfBo5E>=ul<~-iigu#dfeFQ7Z6cp zBbA}KU}z?O702hidPKc!=q3hZmbe5D;KiQ@lRmBjjg>mAtuEaBhe2J# ze40DV6^Zmgro#$g7E^CK=x?Me_A-7vHPE(O&=)LdvK7Tw=0t+qan7}_?&%VkyKBX!uf>{#44a) z8ZQlT>G~SA&2YJ3M+TZ^2Ufu=j zQzYb>qjHpCSdD&Iug<`G)@;>7Ou~Z!6)}R?Ed+IMc6>*wlnCPZye>yzS7++E=7CF= zx7iYAgeXy-IJhwF@#M?1n7(Z(n2K;Mr@y{<4=uK07Gw95zz@4`?n4-p#hhpP#0J2V z{&i`)54OSpn<6<+YQz9<(0pgLZd*u!H?uQ!*I{XVTg3^5jDs=V4_ zXenA8{$&{Jx0$BgiLek&7#wBmGHC*DR2`6j|HDT#7g-|Hz3ewGa=>ONh(A0Z-IjC8 zN}Y*Jz>>awlqVOX`bixiEts#I_!Hwe|AJN>$YzH;~x9c2t^trx|+=+_z~n z7RcxLYTfjp%?{c@#d@!AC3`__A!EjbZg#A7mY2j6%0rYs!^SY?>N`<^F&{qSGpF4JAEB0=P_-{VqJJSI`imMDG9(U z{ccTZH%)nDh{<{sLj2q43Hg5TawR}nuC4ZlrBPDNo=Qg0edRCXG393*cT*b9wJzURGjP!ZC04*HFHfQ@3Bm?8=7gl@(A_0^~(;lT+2(CWwN(0Oo);&bdLX5`vLIL z1266LGdoU{zF##FBx0~Yk?ovh81AP?#JU(o(i-^6sjnD8-C0zka@=E77tIAaAPu?^ zKljYGaSP@bn050M!0Mwk_LO4%rw2@NZ8jevFT$JDP>sCq6W$EtVfS|PD0 zU>&%S5uFj|P$x<`8|Q@?)kjl4d9)uye;j0)DeX#wjf~7eD=oh-ZyIqPV6LI}J@Qc- z*RF=0#&er*ph=k+TkPVlTKgH&-kM7OIUuBj{7m)EE!em_^P-R@DSi=ozLGrkmmRn9 z_|xrh-N%kM%ml%nDH!tXPjlUzPF2bLQ6z#g9ykKRb@($VOAf7Xw@R}DZA(Jl>Izj! zv+reu3)|GAsV~E2{HT7%KgR|v!GY66D_scS-83VnuPbGxu8VhBlrrZKumKyH$SFEd zE23XU-HA*c^m)5aVbR@MH!VELTIf_`KNwk`yqkiNHjyk@tE4ol*QEFA*M}9yqwh4X z1!KNsZ{$sz-9?|stNrkoo5tG9C=rXu^SI(NKO$=7fJ#$hE7<3jxcMJi1UhxRAv%yh zCmQ#=b+F~=(|g-mT)5*cEM*x0!(qEec4-7?pF-z0B~MeOF(pqX>WIs5KJzJI>OMuD z2{~QV!C%6FELVBIbA@zi_U1Cp)ln6&@gHRNaCXX8J%oH)!cR>~!I|cB;!FPz&h~Ae z0t+ADCSzFe2ZDQEm-9l! zCHRlJH-n60^r~NiOwt!|nMNY;BwRP^vWhwj5We-Q>MKR5!H*+ccb=`iIvtq*IaNe~ zBIO_V$&c-cLw%Sv3*}-eM37hV3KqIdzqm{l4m;!$Bc|h(ecm%cCf}WtyNRQEAjfw2 zKM$!XoOmJG7Bbi+(Jp|Y7=@&@r>o>rYsUQjL5HVTgvWTt@kr}#ID1YG@C9U$H#kqpCs z3Yb{n@;D8YG~G-6`Kl!=K>ZYuztfCl<)O4`{;{Vi^}7)dlF*9Us^8Lg5RsA^$mpYp ztxdrm|A*;y?}H04uw=PU{^d@zrqRDnBGE2n4y(MsvPagBwiNmzBh+8OcOZKl!UouA zu|2q$o7GV-IVwx7^j;lv@|rt?Eb9q#UFdh`S<1T1O7}NY#k~RL4V&M*?x;Vlv%;4E zID1cH94?VS(Mf^bC6;6q=Kt9@NZN_eCbE8bofnu(9N=^w;6#^}VsWTNR$Kq#pty!( zCAj$%*ccA0m#v_UN34qs#tW~a{pd>DZIzDT8nm$1PsNj6wc#_W= z6XDh^6aBaS@LJ?KPWw!dY_P@1l4U`CW#xaHuB!0b{R4o!kw}Eqt3H&}>J|O_VDxT3S1#pO@6c2gk zNQ5bMK68Pn5qk7mkSYU8-sPEr^)hUwV0%7-881zGpx%^4x1{2fMDCNqnPx?#3}U9} zV=t(FA$&T~@kDZN8Ly@%1SjW#RBpKoL`wXOkFRrq=+5tgTUM>IVV;DC78-46|wZpQA5>@iVWiA$- z1wpMaGH+@>oE(vai>>aRtZZ58Wf(CVwuegF??!>tekpdQy6wT)!A56%vSiqg;0KB( zim=^MuRD5++L3SUxo?wji`HbSH1p@w9g~$O)@cb!6T~{oF0r(InWT~`-%}~TA5~1h zFvwIFRx2Iwcg(g2a;NPe9Vn9q@L6Z)77~oG9L~6V&*;Y2U%(iv?OFvFIQrs!e5x1+j`;j=2qT#E zhm%)3s|&{+hC5M4lx^-djs=7?K?rQw;yY!7f zLS^Q!g!%{GuHT%t`*XtAAO1wR(l@$BlgAc zxP;(^%`VPb@miKm(tejH!?}?xPs7m8HBZdMug^zazrBmJHx+77Oj#j=bjT*z1&>JJgf_Gg2iDzWe`Bg z42s5Q`fTU&wTaFT?#f41jsEps&20m+D#tX>#_b-l^a5xz&lMHprXWlOr~t;ZzObXT zQ>g6_Vna9rJFSi{_y(}3UPHE;{8BxlBR_5Kt5BW#1tR&ZfHaoXbxO1`GUs9(bNp_Z zOl3C`v@!m~WS+V4vp(3I;3QRLpaY*gN#Jv4UnmjjU`EDyDt$wF1I28tZQV#-tN5Q1 z+^V~J!G%Dp1GfQ5`8OS{QzzBv2oREWo!O!KL>sf>cqjXS?QC+vnX=hIGC_8tYIWf5 z+uJC%e4DQAzPz+p1scMC-|KY3yGDVOf6GNq&ET#zebM-%crf_tIfN1hyIE+~5sN9gqj zXaa2Pz2}?k4KlfJ3)qCJNcuRXU9O0a;EzbG3kIB1g&{(Zx~x-OT7$iOQr{zXh|sk- zbku0V zbHO+@x4YJz(v4+3y!4Uvz@uY{37TA&zaZ?$yELmU3KWwVU_V$YehnV4GQw{84Mnlo znZIIj+dU>@ZMS+M0yAyF?NN3d0iK9=au|-|Xq`DU{j)0rUCn2*5r(I6t|_opt})Fq z+u{xN0VyinKKDqgbYAG6(AN#n#m)UKr90h@l=nEwZach|r%P0*B@C_^NzMsJX88k5Zh_eTAIES*7JWdb6d{A zG6^m;l5i0l$6z(s4NW9y1F%fPsg5(0ndVcf~VEQB|mrjFuSI?K^&_#%BJbIfRh zjZ;OKCaH>^82@48(?)ImOLow~25z83`$P3Y&%VusC{Fzft(@#vo}FNtW0A{yaC}_E z%FO4ks&3#6YhytTGXiuh9ae(=YG*5?Qgc~;?W>MsKES&@!`Z*^#-x`4(&`cm20?18E~}Y7gTrR% zlhN4LrS6Jbk>jW}ccc2zwbxw2rfA^q{9!e=B(S5RkdU1$yv8KN14mYaJs2#8{Ao*n>Bs(Yyn95-K2|#6T7_Bv3irF`X*Iqsu93ZCZKMa$)B-*@z<2 zS5;u%1D$}irz**{DSH*M%>Fh6or=@?y@|VNu_GiMhE4p+0BA4R4Z!Sdoq6i#QKCw_ z5Vp9Ag0F_9)0{ZU#kwjJIWP4u{4~}c2UQV2yE}5!sp%T5=S}$NHZ$V6x%@?Y`3`v&j|<-L z=jM7~nNdwYenbi=;NU}trzRY5V&!JyjPCFxuSPiQ&P=bNnz+kmrg&>p-kc3%tIbzS z4NlX=;f}6l2`Aj{ov7gb5EbTbGROuB`L&wGXbkH3Xq?V$I>57oGBD~UUf4v;y(?6| zNLnyqMoko_?B?)7>c-;h0=+ZfU2{r|Yofi^bnBp%g&;9E=fX!-nTV@$kgN+!xR?_> zAuGUJN#xLt*k5^n%M`(mu%U`rX-Z~YM;ENs+k5zhwRpP_6(YH>YS&5nw*N=Wf-lKY zff3uf*e#~Yj;?hv!Qi?sdMDUW%}Ifd!Y?fyx@t#&V6M!2Gcr`&IFl*kps1uT;M=th zL;UewWT-X`=5Ja!$8_Y&2G9eQrtGk%cx&b#MpEg*>+XeYP;(ykgD2J@+T6|NC9Imb zsP+wj^J-LUd}HOdP)2o{KI(w0t}fPe+PZ!Pe;)3_jpuj!q$xpwYOUh??!(>YrWnqvf}@($Jt^tgh$_!(z^AB!ax;wWQKL zk1Sk6Nh5l$aRA#+>FsgN)7xAJW}1TT6d&sABDc#r%Jdhz@aG9n5?BNq!TmB=WEps* zR6b@A@mq$$S`x7KC8!qb;y4b*{A5p8uPeK%kE=s1^>{{sLpgSet#cJJh+~ELjb3FK zz{`4Eve7k>NSmx16Mj5IRyE}`qLb7IaE;12crJIET#+urDd8`sa6lvyu(>vq!`LX} zNrxhcaxqg zn_a(LF=qhHU(eD(%$@CSz|Qk5}Ul=wAY^$qS9%69p8JY)8xskn|0rW zE^LnRz{O?DjKm9sq}jwnBj-rD;*@Za7aJiYKV6~I(#W}V3W@m3cpqlYp)Pw<34#12 z7bA}rHR%PpRVUFu7Xi7j(~CyZ%eiO0eWpbev||nOB>4)^kL9lj7$Q~=VKQqK8U1Uw z$H&;!xsrZOL75*mPDMOefKWK{m2xi)c%d7brH<+vC^Hmt%<@7~$){v6NIYUu#Z*1(c7+;J&(aN2e+Rw$kR)bTZMOi(G?OmAlgoekuG zE3^b*^&us3DN!IqF0V1n;*tGd%cT8~zBBP$ItN8CO&o<4zasOnkBp%B4JYj;Yu5IE z`WYdnEt3v34|w!)YQw_A}Oe{NTAFG1KQ^QA>xx2&gfq+;LF z`C>K2_LB+_jIUGxp>Uk9Uz53YkjmGJ*{N9`qd?A%eC^=h5rC+?VDRuXI4FKqqa9a6 zetKkY8tuE1O9H^E1ia!2MOmqL27zkcFZ`+#hXsq0;<3?9>DT5{ybP_m!%$lEhR#FIe#xW<@(X8=+URI5YCh{2!5xI!He!vMCqi|9#cY?w@i;ifi+Qnt31s zcVQC>3;#1!OwhD6VAe}ZG^c^C5s^Ib!#S9d1(Wll67M2%%t~?C$f3|68SSd zr%Ig@5rz51WqL$;T>9+!;slutBy#CsAivIEL!{s++;e%} zMcGazy4Npd0MUw+d~)L*uxj)It&8!xz>abi=iU*;g@_U3Jaku0EF&JY=OBcY#3d!uV^(Q6?k*$67p()h~&(7j>^zSVS86g!}Uy^5^CrF)r` zZdDH<#pEAS6S!N}FBiBe_t-jIb!k9+EUAY5Eg5?umqQeS>6_!|?SG|A-)|&sz z;00^NI3ng!-Fo4o4fV+92a~y6xU~Go&Dnr5$FB5Du9Zq$Ka zi+x;1G1yf%2P|qmWEUj;9VD30dgVS5oRt7s=hCf}B#3OfLQaIck0qw-p-UBa1K6J?3W+p-|3Z0h z&oEB(7JHmR&kDHK4PufsRHitY3fUsI^sP8kR+G5^?jTcZUtBAq=XM+hd=7u)rH2UU zRT+Kun0bhz;g|%4BxS2VE2C9B?Vy{S0vSDWJI=4i&B)Y6rv6C0bEA``$^|9`fWyCh zHLAl8iw!irq1!Awa%U4QqO?gc67mo$kjU+@dU`ClJ(=cdUq6kV zQZ(ulI2Z|})6kz?O9`#)HJszn?6*ukM4uvg!&lT#;X72Yjil(3B>qy0UB7TxKxY7n zsv}!E6az5px|EC%Zpk|rIY3d&@R3mzZ!o3xAjZD47U)m?B3*kXa*HL+k#TEByrkH& z5E&Lg0zN2!5SSdLQLqVQv^tKt3y@JD#yr;pAumnksva$6B|QblYA%;1Q2ugFKiK&z zeHFc6vM4UqIh8^k#C`d^!H$}7@+5CU5Ba0S1uPt;ZT7{3Pt(3NrA<-m5F}zhJn%F; zsA-0}EW0qZTH-pVxP(5AvbdI~8y#qpv?A#(Xb1c*buf+;LT zi=dFnTRyKE&$C@Mo*G|Qe-#|J@U;S$YSIxs2MsQIAOm%L)N|=LO2T3TZbDSW=1?3Q{$uV3l9Gazl}Az{rcqbZ){A4< z`;@!lI+ePO>KWv>E>wwvK~-GoL1N38J|cV%^e-tk|B4sYJ)?gW&gsvW4rPHD#y94Z zBZg2QL4CoPkvgsL=hsAmw`A%OA9jlgXLrlz?dB`I8+%!%s|Ko1sc0%_rAfWnG=H zJhRtXPgvEKldl8z$Cr3NAezmI(CSUmr2Q9vG+frQeDbIWCj~*j z%&VnKJAk@ST;i+r%A_ikNi%|_?KDfK^F11^4nHXhY6A*J^}2CqqyZIX;~9>&1Y^y% zZi7xSsA8k>Rn+8^G$zWBQ;S{VM)53rf7F+aNY)4dOA@T$qu2<_&l7H~ z{z!0PZ;9C<%dkStfRdS7P?80qpRAen3e!*{tZ2jHwobtvvxApX8sM)^PcPB9=B<~gLo-E*!V0giLmzelK9GlW zq%LPtgf=}ONSo*$g58o_bpNaI#f91sXjcxxfhnD-IFLS1{o7IZIfu~nyCQn-WYwp{ z;*39fqCMbUSVu!wf$eu6aD5C}LC92|?gd67tpnd)L!deTO=n3mj2h>FEGiyYtUFS| z4WkcLH>nwS1{vb^kVuvXyRtpnDHcKc6!8ZKR5M5>mi{jjIp^gb;U|9-anyNvo@Yt( ziS&?<7uYG?1b|9X3uIZ~s@SLX6-?fMJMp?DQ=;8#9P$;7AuK_ zUai92OV-C9E0xDyJ>Bs>18bq-bX8D2Kbo>8(o=~g!^oc6Y5Bog2}1hiz+jwogD2(XzgS zdgi$hHqQe=%?U|m;)44{xOF2|V5HuqYQ<@)Z>kOhkTh&E9Qz;{<~sePx97no9G*Zs zX{SppS48~lv)ZN{w)~CZxE~@R>N0gS?$|TG1EB6Ns9JS`jFbA8B&6) zaSjv(FBTi^GbD5}oHuqi9%*xsQLL-09&fN5WOaNt%6W-MfdNad@%#U@OK8sp_b z$By8B{FQ2qg^WngS;q{h@fiMir{gvns{~5B^~0e#V4YaIrI?cWnz;Lo?iHiVGQ2SQ zQYV?xyyVR}b#JnNxs&2rqi{%(j3m#2+uzj}HfC%lago$pjT=8*zvj(PyD6J;4;H0% zVnEGqWF6^1huE6_yJDPq17aw^J(9$V!t8&>0N(%mHRw?as(2pAu<0 zsQ#6GCTGL1H3&t_zzNg2)W4)uinZ6x%DdIfnvo$_R44~g*nlL`bi;m5mfU}ft3o^# zuUec%pS$%-$I~C9+@mV%cKguPxO(Qa-snm-@pa(Vp|Nj7ND(CNuf>kCV6$C{ z;?UTIM0?YvR6rE45egauV|&cO7R0F&nRf0@V;C6LQ*Giaf69$j`#Nm5rt6+h&9S>s zbW8w^&|rPevbnFU8Kp&iCE=72Pr>f?sg_TLQR`nL-lHJD7|WT2Z`;p5Z>H_13P!TfE2U) zODQ7ppG3NfVU24#G?8`uFb43_{;T-Jyg5dlVDq6igVXN#GZ+KGJ%JIsrry@WD+p0@r%6u-fE zSSGFAm}`q;vLU=%ev8tFJ*aM5ZB`lgQeYuuonyUa^8yX+V33=6W$9tKPtmr+P#^_4fv%8(E zS|e#UK*FPcxOMT#AK!t5Do^>w@+qQxYbw>9XnBN1#PpcOX8LFeVRcaviqH>cM9 z=z{s$sB8~z1JPbJV_}6ejCd{-A*+&`eKPSpJn7ih?!qV+zPmIk-dEm=Rn3aRlSu@1 zT?C41&CiRs&g=m$TwI|TS=1&zXWV+<>_+t(ESJCPF`MC0N038PsUksEVKpss_Fk^s z?=zrPd(s)vxi$Dt_d<@q$nS22Q&;^=RRIOT;D@vOpxs=*W)0jo5q+O*s-620^JG{Y zB89Q@b0HKdTWdUTN(G@3CPpQh;Mj) zfrBHpMq`)Is_xT^+X~f&{FXyQ7EX_(bgdG;D0%l+iLe`xiqPyNkIU$I8PCT~_=hL( zLv&-KFz4_%qouCKkx!}krk#-f)bQ!pPPZ{b7HwE^5^dvTQ})AS4S>{XV?Wdm|4KFrPb7|mxlqS|Fjl&L8uKb`N9^5-?8cC}abdEE*{ zF72RW>-EiJNurOrlc$p(aACcw6km)N6RB@w_t$y8xuSfO*IgA8hRgF zaUFuhNA8wV4XaxV0uhR@Y`Wfut|jm@;+&h%kGqaG);b=J>n*2gNu1r6(ig&@xhdkj z(zhZ_XR_8Rh$DvQCHMJ ziz_s=jPhorlhAs420pc>l$R}A&zD}Wk_lrzgj!|9P~p}&YS-d0UvGRo^Fjyp9%H>7 zi|yM)u8sh(Y(xEUla#C5u@LpF*6xC1Rxh8a_mvd}Yu@EqnxDr~v*TDN3kKU#QzoIs z3kYQWTq@RgH?Me$oite07mZ_vbCjkqeF>;#JT2$b9j;TYWKEqRZq;FxX!5;2Z`wnV zW1(aEJREWl#F_z1z-%8sYv7q}&!ml;YXn64}3rgfPLfXc&rBMg?(uufI~mRJGd^hF1(uID(uy<-A?>m zP65J?wI6bM>cLE8ywklBY_yX5k$34hH6Neu0Z6qAf7AzXs{&aqZMY8jMOC~%-uE}h zX4z1F;=zLZj_F_LmBOODfl&;enbVw?ZqNBaKj$LG!LwH~A7Dz_cs85+tZ^5XR6oIW zu8N+#`YJYj3A8Z`&S@uGZ)|?+d-x^*=(Sd4#}|dx`=S9w;vNbB-k?+W_RZsD=gTK!MOtH_XQrIlmK z2P8?GA09&i+(hzvOM!bK0A{Q+q(6-XdkpL0T8d8oIV$V2i@Sfo6bzLM2GdzOctdGp zR&T#iHs1G6jeDA26GFXjK_Lt2NwY}&sEY&TI?rS9<`Ux_*>S+Do(Nd4f*+5Y1#TX$ zfTN!2V>|z`toq(|P5;o{1i)o)*}vxA%$U{RkLGdfzuTihv<`5iTm=}+NO{^U+y_9079r|2$$jdlou5LkKb+R zoRVyZC%)KllZT@k5W0dNB@_wRJGw~U^|#pZ`ydHUc#~dn<572F zUXPC5CQ7sM-})kgv{^myvd-qy^$PRJyO`Dt#%~+NUhM|d#sgF-tI3^gce)3LH8M_} z(iJXb+y*Z6(sR&(m^n1*Ud57QOa9+|lado#sl+nZW8Sj+J0q9K^Z@_!J$OlN!Qja< z^XiPnJsgO*78o0Eue-k2NAZo9td1ZrY0F>`Ka!A&f&xBB6eqRifXFQAduhf0In=0( zw!(>>bD#l=_xKrKv0Jk-1xz!T_Z5~(=-*ADSFvSc-JE|W?Tc99-0971;?ecb@*{O2 zn-%g~$ClwN=cWwL<(fOd-LfB}UZ4lgYfa*UfLtMKKq^`uadvRqZcf;C&!)f|aL(Pr z%7~}y^HHx6J^%4c&ZKFb;SGHf91te$m+uystaF;1;CmF?Y<((8T0C={49x1h{1>y* z9gb!7mO7E>5OkmfY-s|=;DEHm#4!KeFHjOEIA@0LsW z^^_h&w;FYP!%vDqUCF^nL{qM+)7d5q(mMz2i^StX9xmd5B2m7?L&yVHB>=Yznw0UY z0R1?*V9GE5>#S|&8gDj8YqAf5WAW@y`I^%Fc&YG znd@8~@4I0xmP_d&+g@u-OqMSP3i0RzaL@O(x`JLeV3`c}H{vo~F0&Mh+$_y@advp= zWfTvXZ@|=8tB5TSWiz?&|G@(FnXq6cHG5{>S*Y*-m2n5OK!e(Z1(W|{PaEJhEkvH0 z1Ebi4H_*h7Jtf;ej>R5f1h)zgjk1R=*iE=I_*+%a+_(QMlk4I=ULFVm&t>928pgqI z9pK6PhWYEKh0a=rVnB=#W#2ptv0t2pOSA*v#e1M(d!CvnBFW=|&E2maaqhk*)x2q- zmk?U;7);&(Gsm3eGH;BPYLe}KPA{e&h|z+^>e7!ZTm#grX4A)%5BLxCLupkCT?`6Lxyzv@NXMq@5qfJ&w`k<+|bMWZD5#TVn zweUBZgcS|Oi);|Y)eA{MqTfr*jo#-g_8i%ojkP!wEePVrk4JqV<V}%20iZ8Vkr40rXYW1N4CKk0ckv z?ZnE)x_S6r8|ZsKVM4aa%b>tradt>l>Z;u=lav}9QJLVxwbD}#jp#c;PDa|JX;~|y zQ$Mo61lLhdj;29rf`C*ch%2~7+4gg+qdtbobu6sQ*(T3vXRdInT7COr_~n@!>i!~r z+cIX?mi2keJ(pFc)fp^3Fm}zS*e575sq%Mo@pyKBRQvy27X_XAf7F9H&)eca09c1S zaV&f9LG|l28Bw^_#Tv$g_%@Q);!DifWWg{RX*SR;s(kItt4(i5ZMuBLe zW5pFfR8L|Tra5PG8K;}j+e;eoS{2M3%J=kUggS8)Ia0&Ak=mY*=8V0s`Iag&I7fK{ zJ5Ga3oNskIFTR4eV%=OOu1z{co{mMYE-S{B(?ky9PkRDQCvC;29aLZnsY>zc2he*| zzCn@JsZ)Y0eG=}cmKn%uczSnUC0`2cKo;QEYvfuH=^?+rT1mEkW z1@4Fxk3qO3sBu5wL~(bmuSEF{>th1Z>5S57Q#me2rTLOd7wCrTb3$Y1+eS#*3Yqnd z@9guOVmV<69({ym0sQds9!@se+j1JG#U^6AasA?jdMb+9Td9K5{zyTFJ)+Zf*5>D!43~r{xH;4^ z!PrJkKIn5m*cl?KZo-Xf>KpXo|9vwkHC5XVlm5Bsg&XuD#zSEs{6~$ z8k@;xH*wkXaT7G$zSr@YtDy;F?;%i}Q>bAaj7WOvtk90z`U}5wdk7H^G1mz%Ier^!JV@3DQfxXP< zAtlj)FZ#j?>8$gI#ReB*jvX^if_MYMaO*PZTXif*;^$^DUEVPc(uib6C zDqnH#s?_S*)s!3*evY@%8eZBuPc^<{!6#RdF%@K-aA(}BqE(nLUn$S&^PU^5GV5X* zCJ|tq2Qy@a_JgEfpP#!c&jhW881(e=F1}Z-Rm6fHW@;Y#a_5R!uic8&v`<#TZ0YKm zslGmu#IN-uhC-gzSn+Sx+XxBvzAWC4(KGU8c90g^hZ+u@_@VIC;y5`BipFoiHlBvE z&X4S`Zw)+whRpC<=J1x^H_t}gEtv)H&Xt_Q70QV65rS64>N}i9aYZxCPwxUk$lPY- zr5E!109qDP9tR|0$6)j)PvF$8#DgVvvgMT6x?`O^bFBs3!CUPRJXGNbP=5F_{gv14 zNvOoCKnf_XM7M4p7pOXmdbV}$NC|L3``&HL(mMy2f~j2Z{=NDcfkM`4b=}bP!0omY z&a?HKX$tdvr-OWKR06TEUz6RKZ}Wl?Wk0^xb>`3O_92_W{-rE@udTlR%FW67*~DJ;I%o^TH}7XxsR%kbJzg z`U-~To=BBhAA$g8eVw(|#febgI49O=VmugRrB_xLm>`SZ29Wx?+P8 z+_j+wCr?95-&x%KJ<}}fy7tx3a+>$ejol~j{HQKQR4)^fdJzSe;6M-TbpRVbfbjpTberMYUNOy5gy<`=yAqYH+$;nhA|CVj-c z>XhpC7{RUPEe5v)Q-~9nxI$x{KwVA^;z~D+UF#eygy#cl5b1Su7;bW?rPhvK-x52g zv&88gn`g~j$#5+HVN*UUAG-dWt>ABYgQ?ory_PA34~%wRfDgax#s%5h8t-Z0;4Y+(9dqNvszYNurA+_=#B}~69ZD8h-ky&tZ%Wk4 zzI?S{iTXKbkYuL$j_A9#^b)}?lk|=FDA(~4nyV<595vS=n$WSEdAR!ypOpUU_s`AP zRurV)rD0LfH+EdST8HOJi6c`iaiei45IfYC1P=f_bq=1)nJ(QgxNUyzY{k5^2)767 zPJfA`tUuRLPQ=6!ryX14AwlOMNS^x?3|fAxQ&$gI6PMa^te^h9oQ-a?z_ta0TjA5r zDGjuHq{bh5aFBF4WfZJk5PMMHO&zn{SBBys<*{$5UQfkWP=$_M!dqfO(>=J;KmMB@ zg?NGBw7w8M)p9ZTAstxLsY2#a{6@`+IV)-sgLs)Izji#;(ktr-L57`HL&6huSwB)Z zcPpGrC#ZRd7rZ&tnvFr>)FU8--8YbT|2)7`zY+X~j8)dc2i)>+EtsPW>CZz_s?^`i zsUz#5aoG3B)o=)5BoA3v^miO7*nc43rbgTGVlo z8MYsp76LUu?)6jO!4|?20|b>CID^M=91MaZQ~LxLzxlNf1Eak!EIK>=QaJZlhY|bc z!L6&j#$AK~>APEW*y}eeUzgoczBlVlWuv+ixiV{D)l4~dr->KlV1hVpk9`an;%$TR zVl!q_o8t9z8hniz?$N{nm;-Uym!l#a22DHYvt_2L6|A^X{6!v7KHd_8E~Ui`JnBeo z2R+l`8g!7Yw>TLvr=L~+*2L)dJ2ae71!yvDcd z>=x2WD&Tk&)u2FPdU18?PT+{=3A#GP+mZ+^sRq+MSTIFl`juAhV~DWJd07(Xm1fU- zR3!h=Tyx1%X0Blu`_HkM%E@E*WA2iM#;-=Kf}1AoKJQ`t|@6 z?s;U*`M%Z<@<<8{2}a-b9-`K5=`xJs6evSf$TmS_j0Zc}J(rS`qFcr?q+pgaBUARe zAZcEZFi`z;708evxG0f71c#ya)oA0fCsn?P^l5KbHXMblu zW`+EmJ6wbzkEmuy`WE{}RLBTcJS$IE%x>(*SpKXoEx@(Q(%hrGEi z+GR!zvO~fueWUL3zw;i(j2@;81MGTBl79l zI`t4VY(0IfP)#y*dB_1B(6oQZcEU}|?}r_o#Cbm9(&pb(1^EsK{XsH^tGvZ2H0V(1 zCZ0|QC3=9g*2U3J0UQ*dHbaI@CXj$N7PCHa z{2V0ygEtoMSC?hzr5jK;SSPV-&w$EES|KAJ^zB&&Il-wff~4bLfDQ$b0lCfUEgV6Z z5Ex@9(7*^6X#hXW_sspEI@)m9I7mDcrOCIzMC=o#VmSp}3n|pUz3`B8H7J8oEx(G| z$Zs*ZDt!bO4y(Dtz7nN?Q>bOiSTpv{`jxhmSzf1(KR@@4;lVI~3n4tJVt-UY+mWiz zj@Qaz@XkzWW69scv3b9B(AW14WJ>UYdGe|?^Lnjv7m?tGE`-waO`Lo<0;2gG(A>cd zTFphIFYz647qmIiVjk?J-l^x^(!hc~v8m3YKw;mqiRbaTdTe|)kL|#Ek8id~s4u|k zseqzBw8wSn^dSZFrhlxAGY1~NUw3QFYm9n#Re$RIRwXfrZ6+;M_J7Sy{a@^d7WA!J zU?MlBZa~NrqBw5FgJZwFuRhzU%wjcuyX`D6KhyK&=Z)%Hc%_>R_5gZ$1*7cMZZh0$8ne=?!p!WdIu;~ zN2RO6L^d9ctvk1N1OE21;Nn3m3pi~04cFjRVI2T@iJ2H*^_=>`HsVLP#qB(~B+79> zwYubw+!VBQ#tGD-ZUC)jo&ser*yw)SviAQN7oe3=9_ zj0x*$^gVChmHhp^rUr_;;RwVp5Yrw>#ULfLs=2^7U?;z2k1TfjoLN{Ob;Sq6&B;&G zm~_13;2ZsGi8ET`H6}y}{}DgX*EzsCY=|YB6Q`nOIhHvk$qe}O_#A*Du8*y|Zj`k` z(z#a6QH1g3HA=Hh(6D(IU|YQ)^B{*P&?&uVAVGQE%x0SWQ8`{frN>ZKo;#+`7N#%{ zVM4Rh`*Mq@+!Uvf;?m6sE)*wMr#bs({(vREAunk2R@A#9pvK-VdnKSs?rwFpe}S5n zApZ(39_av@Upt_~=FhVLMWxD4I9;J)aTFi5qG*?C8jt?-d75fDFL5YO+E_Z&0F^#j zzpsWfr0AZ#R~`br60yyYgP%q>UY+$Ur#y)WPc)VkSO_tuz?IAt7-r{C*B}EF|8RdX zK!mt#J)P23^1seAc0nh` z>pgmxMHlyszQkdWA_47-s5TSy>-@<90W1}DnoeJ|b9t&QlcdCfPJc3#ukk)7SS+Y! z0MIrGNp%{vE>c9m#HbE+}> zqM7sUM$Iq;^G(7pHd)8d%`XfND-zZZ88&JtGv0M(4q4tp%$Q2DMqvbXiGw790I&QN^lOFA<7%j!xmR-Y^ z(^$&amTRlsBd*U)HY3SL{feDib~>%lS7JOqkNvBy(!_}J`)#PF4>hy9dkn^RWr2}c z96JWB_O!=htLybt1BHG<@cMd&C*3l#uRxoB&1~}1xYxOjx_ZZSIGre(yzY))7z*_P zS;r8HumF;&)?59Zoy_+vi9x5xq*qzrld;)|Jo=KkwJOr&19bbmJk=H+TD8al zc8%Rt7t;}7%!PCt8L~qc=aiA4zrs7dC+#$+un2b#`{n>o!b6fm|J@w3ymR5YHMkmS z3!#&O?{$Xc>1G3d#i0=BkQcUFp(`HbkABGYawJxFt$vdY8wQrPi&c9NI|^_9xtC#J z%C+*V43CT*9fjHAh5w$V&|`qj9+8$)V*UwmYqnq3;2)S7K?&@ZBth}7H zcpo%IE=y9%_E0$LBj;NEjm19BE+_2#jeY)JXQMoORqPnxUbP^z6ok6Kl4k7MtbuC6 z>YmOmbMDbQmag~`pKa+X8iF|0wE+mbZC}0u^|C-5%fxXk&1Z_H+Jmze+jUVwl;!su47JsOg4AKy+V^nS zb{9HkRZ8hxAn>gBiM98=weY%-6tX+2IeH__X&|T0IoUAy%CbYRFZ*el#nJk>u#a*th%+l>j>MqI1Mp=wwFW76 zVT=Zd2;6;Maw1~B-~0wQW(W<>sr6)}iF0Lu{9(SVT1g~*m}rIS6Mefo8|HrLud*}w zCHafM843`|YmJ*wbX&9o=e(RyjYPrgv(Hg=xDbwSg&FP}ja?k_gc(rU7G}T)z%0Z4 zhQu=591g4Z#0E%D6loV!VLMVQ0{@FgN_$D4^Pl@M1yRO0+YcPDJOl@1$i(JYT=5=q ze;M+%9&+l+cOQEAJnzc_BRN68!u6LYesEk72KXS7H$deK!HFhd=h@kz|FF97%hye$ zu4VNQ&Q4hK&!3-JhL_qVY@EJ}gNuyotG=h4NMzx9kNw=2>Eh{V&vT#5{}9uE>TgTe z$5G{kubGRnW_ZypT-SeG+exswEdDa`h)>cSB`CG1cUV36R^+Hr6PDv&HI}s4T zAktA34;=q6OK5a?(;ExChYInDJm*`(D9M7@-S#6?-}!SFF3BrjY1}DHZA8Th2QPdM zQliR4&_(wPq|-1MU3+Z8o=2?cbfffKXX!yfKMg=IiZ_*$Q;&0)-1yzQ^oS2-t|uH( zC|@|I-gLa==9BH}meliT!{6&G)?%|)QcVBhscE!ft_XRLrr=Gt zt?HC~o+#2wcSDZ^tvZ6qB{&Ro_b1b;lj<+Bf$zbCOjJ3zDTzXvl|iaI;^_{ulkQCB zbvSNNavlwib9*+9TcD^R5BtZR$bzzoN7TWr$8$03WGPOB%mseK{^}SVT%fJcT*r#1 z>fDxOl5qND;o!?JxQ$$%g?PcA%5m}W-POm>m|8z7G;CuCy0xQ8FtXg5m(rXiBq6Z=b#Ef4l)>jC7m83FBpJYH8`w2>UQ09?4icZmd!(%92taOj?H9X}1tN+l>b){fI`- z0r3V~lB;0PX$QgJ68Z)GBfel7#5sG=Z9GB376OQvv#ja^mUa>_ zsuhKCJL+9p4V@~$_?|f$ji3xOmY&swBNo%{mp5=!8YhK6jXSjLx=*laT2qcIMg;}yQA9Z{;psrIB8<{^Fvl_n!b3a3A7>f@)EWLBf6 zCXRC1sVvlNfQ=={bd$voJ;MBcLsG>&VE?V38+BGfT>o2t(7o<|h4uxH$6s}%ORJHN tTN=R}F{h-6id}Orm3$+e%F{iT1UY^!y`E2=@1>tw|Df)1dzSgR{{fR}#S{Pl literal 10143 zcmV;QCt%o6O9KQH00ICA08XboP-O>jM)4uI@5IiGotdeU z1|f<9Jj%TE-paF$nj5|{ZrnpIV{N}{_@bd@Dn4P{qX%*(Ig z3yb2qP*58a1`kZccP}{vbuz0Qo%jp;gbh%l~&bVQNoqZ z{zM-B|K47I_+Og^zXy3nKmGlI{qMsE`tvXEe|q<8 zzWC=w`ToB@{!e&@kFli78QfM~e4;I7ccl@&lhFlL@8DJb_1h0;aK0`}_`D#Uq|C4B zy@g-EH}IJNO^&0XNm97oMfb7$2_C(lVCa5+Fz$eKcR-%&4q!*-3r6$WILaG-Ro*Y2 z<5{{$^SRhC_@B*hc$G3ZB*kSW9z?FDSys{tVSm=WBI4DY0~-ITYVjq!OaU*{N#>tI zPH6Bx2_ydLlHDRp$_q|dT)LyPim9s&aLyj5VAZAE8_u=hYL|I~r%+xXGhRv_a+@w1 z+Gk~av1MS@4O^{Petl`~K!2I^mbE=mOWNkNYiqmIU0`jyfS1(id}}(3Q*k-O+j?y6 z%pk?~TcbGN8Q*;%;W8~BgfO9brg*-*PtFICI9KVSqVfhf`)iLw%YYO&9AqP67o>bl zf4{!DBUkhL>xcXN)BTt0&nwnk-7Sg-zlgKh=d*wPh8V?7Alsngby_Zp%KG&NK3M^K z)G^}wb`Y)uByw%nGZ8|($oflK7Vyp7`fFN#x=SBS)Vx~Nw&nY7hn^2?{t1X*QVmA$ zSf10WsM9q(1-|D4QwV}!6SCwB6I)`jMVCa+KKPO!$a)KVVQlz~^>2vX>n+Ot>#Z6) z*uTuvXd~OAjr7p=E8aPyJ<$E~ZyzWqW)B+p{=+3C@Ix<%_&M7hh*wKEaQ{i~)8%SG zr3Ug+$h=)VEF+d*C3g<_oMmj)d}0rYQzf8({C>5FHDr3*AoIUyUfj~#)Oxk3X?_P< z?u{wIT$_WThfde^?Ibbb=?0D$SU;s@UF6n3)5T%{o3X25^8$9n`UlI>tEQ|qe10rI z3$tD$(pkO^(lCf4a>C~`;nUj|pI#52uS-_df_^$cKctO@P4_%;$hk*?^Ds%sSD`b9 zLz1=V%xV3C=ya2HJ1H|c^}zx>=(&holQoFkE>>D?y}Bwhx3?q^#2Uwn6QKf9}E@hqgDZlXfNYOs}# z3%}2(^`6Z^L9I+78WKD4*3s(4HrG`(w1R;2tiLe4`NcyE){hND~RRNPgc zn4#eYA!xTz82Dd@%^a=?zhVOl@x*2Ik;v0epI5)nS6}MiKWEo7mR;S^``erQCRoji zAASJlmevTIPxo8=PDzscgxlZe<(GGNC$w%aolJUFMJ^$*Z(@)}i= zx7C6UFt$XuT?uEmw(lO&x;_#O(yaX{wLtU*^xM1A->trdYeZWcC4}+ALH6cz!%}T;{??=v?%vAT4O>|B9%DaE z$t*CfV2hSk4eE1IQVX;&8#KX+SryGJT3aP8o28Y`;U{q?o26}mh_C3prf>mkRi?C} z{0$3!a@JHCTrI6XH`J=wlHujyFF>Njnv&YqtEy_2a86T;mSs`m4_d25I){z4vSLx- zuc`miw8Y>08$1gCwzWu`Ox#6#!|m!&xR@wmh@;S?pj_~)qS*%h) zCLrlM`Dtq17K>(uj2aI^S|M>#jXJ&^l4(5aX%iK8N2BKJX2mkxH)`c+-6)!- zmJH4Vf;u*)?PFkj@wE359!KBEzt`}@4w?=4+OQh*#@EP%C?Jb|TS_+0uI$gL=A z;Ax^=$|@~cip&kSA!oo+kY#C}m;C~&ZI@R%Bv%1&;i)ryum z-&CYzg+d$u0KttST*MEA+3x+12PE%qQ!DLqRjK@WOcBb1sdSEN}2@ z!Y~K%z{LR?b|@+uwBfB{nX^j#T5TBFPB?L1Z*ZZvb<2j7m_#)y6?U?6HTB&{&ctn6 zJf+$u{;FICQn$ntc+b5H=!j?p5@3%jYNdihBfI7Ymg^$Iov>h10Q5PIGjWd7vH?@! zM~O}m6Eo?a)z5>%SOsk>xP?e;@`7H z3XH4gNr%I)Hhxzt-965rF+N3P?*or zSKc0c3w?-qI0WAmA>WqH-7Vvt>CqzJow}}vf?p?ZM>6h1uiF@0j&XP(UrBGkm_&|f zVT=U!J`-Ak(A`w5u)}N{>eWt3=ORWwN-d1a&b=aT%Unf+7k>v#Tps^la^F`QB;fkI z)MnHdglky{(JF=8Fx~q8#H}i3vRbZS(|cOZxwHZ?w*=q;e_SyEKHK^^o#AE+;B!$% zGsTl}lXcgEAUnmJFJs%u#En@v!}_k9`)%S&`2$#H@XZz`Jfw^2hG1?P1GNKmjir!= zEqm2fOSqa&BoSB#w)+d$_PG~g-o=a;NN-jE*aY-+(HKo!G)lgx(eh^zqf#7@3oqfm zQ`rxe)GfJ($5MU_A*WFcOurWpnUatqPIl|+Ei6)i=O6PHXsU0??j5An;Bud5T> z;|$iO*iRv)Y2Ep!DW1{`OtaIN7xy&jn+<@_Pd;$A1)BqJ(scukZNXUwj+RLorG?H^ zf}wI`7&!2qQ+!56gmnpp3`S&ob>0fDXc=PNoj4bfM@#qh=OR0?J(imOYbr`h6;sCq z3E@1DwhJm%%F!U==oV*Bt?8Oo*lozi3OC}8nibA?A_Fuvt7SGk^h z$)d3x1XJHi|Jh?}PIHMrx%?25^w+yWAb4^i_kY#1ltCZgBZG z9mA+Zi9%=gT7Q6g>n4-hk+BZP%ANKW+IWL-rJE_FY{)dAf#2!cj4IMBn3L46QOTEP{n zyh6}aSda5YGrSkVznh}dpO#c6ZOE8PTPw#+9hMEGokn&zaf_odVr9xo>nM*gOsVn# zz!soff$4D}!dNnFrRo)H-TgX8Kgl~0{FmAq>TaD%*TI!1Q3Bmefi`hA$}%IKFWpdD zr2@(`y?U_IDJ1`FWK2`KkOXWS#Y**jD6Qy9z*_qmk%Fm^gYf0$L>;&|3(#Cv(lgM; zM1f1o9E5Bw$)`)BqOzzGd5kb`FWP7TzXRo@7LFY*%;6rZ6_(@FA}da2oX$;}yivf73L}$!KegINJO1=(BZ5f|ZunaNhO+Bj_R03VcL7hTa1*|K_lSzf5 zq)TqFc97-2I&D^(b4G&3)GO$vuBD${u8r~FV#D*8HHo0MQWOP8e47&?e|9Rm-qb8TYbj31eXYN_Sd16KOJ9+5{5`E>tNBJ?EWt?u)W`rBm~c z60+o;`|U79Z?K=qr>@kGc%e}!qZkz$w&u^oZXcZMcS2Pu;95LUfJIB1=1DQaN2jwT zGVvT)SKEF`B^e2AV`E#W)@e61^~6AZ+(UiaVe1=c3U*=ueFoqifB|@8G5~V!_}dG8a_+{{W&mzv z2adr2Jlow*>U#$MgC73dW^CVY+qo0l=(7#~0Bpk_lWq7y6WCI3Ad|Nh+|YJSW5M<8 zINpnI_y*tbdVHg8J~(P;!xL2dPz??M)nH_^o@@_QfAT86@7Qr*PKC3Hw--`_jS{}? zYI&I6nJ38hAsc=jWXUGThGRh%)okaSM7wz6xF2xJkd5ucRLa%L*JC!^h}pKE={Me< z^~4@EG^30)?V&Us~Ks-E(rZvAKZ_sUTw3vR=6{ujyi0l;nY_>2h4W}4 z+OY$&AEJYeh;AoKeXA3)PHbU~Eregk7B)K3!*R1@whe{J6uNNQYypRl8C*dw?7F>lZ z*7!wy0Dcj_T!XDfr-sq%j$2Y$0Fv%0P*RY)&0NcsPet>X$ zUBH=qkS^-yzD4`yzPV2&zXikCK9+fcP1~<1J_P^dGK;& zkN!1gu3WO72|rZcx;_;5LMFb6hNh~yb64o1cbXlpel^{>Zhc=BVGPYh;_!H@$m7&5L(LXuqql2gy)jqS+o86v@ckq1JaiafYa_tE?ts3K(> zDr_f5w4*E9-d7ct+wy+ZV&JeC-j{aml+CI;t@KtKkDVNSp8YJ5-F9>TVN z0BrjsCoH%-VSD2KOV3V{UIMX~?1yZBquPK!IIK392~1L=a}z`kfz8CQOrEKz+5xGq zx^MH=4C%zbJ~j~ZnM5OA5x&4N?k9{7VLUhh#z$?%7o0n%R(v~PJhA=*G!24{ zzDmG+Fo1FCR?u+%v*@Fvkjn=N$&sJ3S#CS_hEK0i`N{(I(mGfQG^5cV`|=2WAuc4R z?Q-M`uOn~g0nDVQH^{Jv=p}-I4^$FFJ#k5wCtfkgE5fhi6&oWP;mGmKojUWo6L0h7 zx@#SF-F@495i^C6tVK40p~wc$Gct98N_qvb&_A~-K9d%w8`AQMmZIAiE}cyC$KVlLG)W898p} z?xb*gQ%??#NzXWs_p2i$$wqbCvwe4~M50$+ZGiBeSH^64l}IEe(RVonJmyAIbfz~M z6V(81A)%1sqMYz;uEhhn>7Qoe+n;67P@g6)ZV$dy2{A8g6;fk*wpPw?ve_S-rR9vz zLcFoF5tE%-b5FgyfE`7>NgL6A^#z{uM5Ca=Ttum3>y1EiG5@aB&o%a82Hvotz&#+x z!c0R^W{`DVeO1t%Hyz-C`Krr6)_Q%@!`2mj+qgG#3WG8H`rg>B`^ZiW!X~cU$3cIH zUhLTMemRAnnN!$J&~CGSf?%*^rI#3CY$p|U;k)a?=;)q1fprk9 z-T}Zma@N}}9e&)&XY9LVtsnNjgXul*3Ez73bZX2+KWeRK=c@!(mKo-En`F7I-|QhGVM_jaR&vMY}AQeRNGzS&hc)rsiGL{j3(UHp#6)Y!xuij6Hgf83E|iAgpIEIk^2QYJ5Ar1 zI!}oGwT6NIz8wR-aHB^cv3)YsG0JxIBsns8v8}FM<>qQ&e1p9V4B=Pl{+&}YZ zzL3sc?JVyXf*=)>vfD_VOuv&IKV{ob@j~_cI>C7m&hY`@9FIIAFWE_h4=3Nq&*?Yv z+tVW$Zyc57J{E0LX1wkg1keH~3qERt&$AOvd9C-9xARmZcsS10kXl|<^RD2_Lebar zYIU8z9ldt~`ykkp1Asjl7wm4lQ)TSb{r`5*uZ#`$tBm!MjXu3cI{Q_y_eMXBrG+G! zV;?STV$rJLl^DaJjj)tXdeOLBb@xLiQOk@zQ){=a4?NyCGrI)KR$@x%3mu-%-NL_4 z>|lr;_|Ew3z<0(SwMBwmWWN(kz0qeF_4@0C`z6`=o0IJD`a_C*8=EtNf+~+z`Sby@ z8K2`(2&djmc%@HgDUchvyQq?BGMVzilpKru2nl#0Y$M zO9Ir2CW7{Q(g=p zoQ60wOil%3dfi?-E{w+r^mwA^Ey~+_#J3SYpzi*zBPo9_oIyi}pWyWLyS?}Am{p3!G zZi*Pye2>yXX=E{xtko4-OQVbxeTdoXP5}{GjrKEQ#&FyD_@b6Qj9cA;Yd~6Uu#8Z) z#YkWWNlucjjZNxipK%VwGOl8Y#O8}Oe~RCM>S`jG75B)%Jyt7ZV>M@Y|wJJ=$9slC`VRp zh-;m1aP8)u7^EgsA~8X-%bV=jL{kf|$O-&|;13P}{$O0MhqGG~(rEI-5q!U27v=70 z!vq@@gvj>7p{8T#I?(Z7_eZ8k_hn}fP}SUAxj{~-9Yk&Tb*SAK5eY}u>VxgI`T)K# z@z%kSz-WhBwXz3l!_E23-tf=?j5p}v5DY(vGzivu1=UF7_uQ)>VXP_S@?TwSRi;Rt z;5-QD=m2mYJ6F-$sY~$GN0)nc*y|=BSN4E&^i(&2K`AVQf4Usz;X&Rcs6l_;Li5on zz}_;B*M-}vRGlFOb!Q?{TJJLydrlPi1RH{O_Q?Aaa}ELcwU zK9DH+(W{Ql>EW1KAo}{E3%$TR0!&u=t2P2iA4OPH{SKn& zrkC@@^rmIB>n^SahAEevC|sba-h_yAA6a3IH(tn0X)KX$YSnpI_8>oTok6aX9DwU2 zBZnW|owSCjXG!{EmVm}}{C%ej_?sITg6Zx*&2?0f658$UTyh0>BeR+D!e(uVvGrcn zDyB0rfJB=q#KiPMs-lv;dTH6I3^S`Z+ff}ER4`DKN*|Iz#NRT52%Pa5L@;*VWVlm@ z@`;-jZrJZYtX96BK?Kgm;bERlyusmN^&`!WP({F?op9=FeF|`HU~NtkQa*nzrAZhY z-ADNNKv@ELLirHNzcO#peH7(x5G4t59f#Pl;|Af#NsMHxMh8fbbNOG<0o_rg?MpyUyq+lJ zoId275g_Mngq-s-kn?_YK=cLQG~~PkK#rUs_smib&)=G)>lXKdUa#|)(|4L{D?JNX zgI{nc_<7zp3BTWPQ^nrMeKzCKWDFoW;mFnb(N3do#u-z6^u6}tej6>dvZX;eCOeM~ zaEL}8sKz~%+jo79CUJ;Ju-2F**r_qgn1?7nz#)pq?epyfJLS74lQ=|y9eMq%cJF15 zP;!7HG;&O(o|8Hx^YhN73tO_DQ9Ct#X|c4%tVYUL$P zQG9??6u+Ep=8MPu{!dY8lc?WiFM6RflpNp;CF3?>C*e*VS*Kx|MSZ2g$Ee?9FEM1lAQ)WPs7vbx_wWhT6u|66dm9cjqI;> zqn*<0reWhJc5KEx`pDDCUb^*iI~Ywd6=V~q2vH(C>d8LB0G&X zb-jt$W-;m6W-)o0Gjy6`|E+q7_8V7!8mROP1C_q}xk;zFJRj^-ool}P1~sSlCeP5`Pw)+F4mYPA(H`Ve4OTTjPNB!C`e@{H1G$KK z;5>H=dXeL$mwW<^V2?c0ddMR&=KshXIdX9 z5grl6!c97du5@_B=7G#7wT_Kyhxej1laHX$?2(6BuXv4*h-T3yni-mh&F#`BNk)#A zWbz4gO>yv%)@Riolim?;BABjt5VD=(;d)0)G4%+VBqL919$KoxvCu5pL^J(?eb08c zVvPRL(o8)oz zZV%#`W@x;PJR=)b5dVcO={V_I((x7&Ef6l@qaoTx=ZC3-@O}e#5-D&sYfuB5ZB*^Xh)?ux|{qT#PlD8+bE92KVF)NC(u10 zp|h1e?H?1xHn~7ZU_5WMjoL_pBc@ms^(Yoa+vp$eQRyF>Tp*rnR6B&*P|Vw?egrS7 z=!+-N^!(vRT5lSc923PhIY2yO^yG54(egcVv=oz1&{6D>M_M<`j*4QNJRqKDR>y9m zE_&Y4QcONUN3lm9X&qxnCC4`TKRn;)S?+BWEAx+*V)6+(iaqj3>#>((!Wh}){O}Ct zM{M&U*-w%zI9igaN6?J2M;>b3mG2!B(Kb0hd?Wr6Z|BVSH)N6={Y z$V06+N;sx4C)t?%VH%>&HY$kkA1%$~6X>S2vz7D1Jt`Gslk>w53?+Fx#uywe#gaZ_ zOtxZ--nn}$YW~*Q%e~*%N2m0Tt)oA`qaJV>WYIARHP)h{{000000RRC2 NJOBUyO(y^V006>&{wx3h