{"id":1534,"date":"2025-06-14T15:56:50","date_gmt":"2025-06-14T13:56:50","guid":{"rendered":"http:\/\/www.abcinvoice.eu\/?p=1534"},"modified":"2025-08-06T13:42:34","modified_gmt":"2025-08-06T11:42:34","slug":"filemaker-add-on","status":"publish","type":"post","link":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/","title":{"rendered":"FileMaker Add-on"},"content":{"rendered":"\n<p>Integration: FileMaker Add-on<\/p>\n\n\n\n<p>The easiest way to integrate <a href=\"http:\/\/ABCinvoice.eu\">ABCinvoice.eu<\/a> with FileMaker is to use the Add-on.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Part 1 \u2013 Add-on setup<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Notes about this documentation:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>It is assumed that you already have an invoices table (referred to below as \u201cInvoices\u201d), linked to an invoice lines table (referred to below as \u201cLines\u201d).<\/li>\n\n\n\n<li>If you manage multiple due dates in a separate table, this table will be referred to below as \u201cDueDates\u201d.<\/li>\n<\/ul>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Download the add-on and unzip the archive. [<em><strong>Download<\/strong><\/em>]<\/li>\n\n\n\n<li>In your solution, switch to layout mode and install the add-on (+ in the Add-ons tab of the left panel). Select the add-on you just unzipped.<\/li>\n\n\n\n<li>Drag the add-on onto a layout.<\/li>\n\n\n\n<li>Create a relationship between your Invoices table and the ABCinvoice_Attachment table using idInvoice as the foreign key. (link the primary key of your Invoices table to ABCinvoice_Attachment::idInvoice)<\/li>\n\n\n\n<li>Create a relationship between your Invoices table and the ABCinvoice_LegalLiteral table using idInvoice as the foreign key. Check the box allowing the creation of related records from Invoices. The ABCinvoice_LegalLiteral table allows you to add legal mentions to your invoices.<\/li>\n\n\n\n<li>Optional: Copy the external table from the ABCinvoice_LegalLiteral_Example layout to your Invoices layout to facilitate entering mandatory mentions.<\/li>\n\n\n\n<li>Optional: Copy the external table from the ABCinvoice_Attachments_Example layout to your Invoices layout.<\/li>\n\n\n\n<li>Field Configuration\n<ul class=\"wp-block-list\">\n<li>Copy the fields from the ABCinvoice_invoiceExample table to your Invoices table.<\/li>\n\n\n\n<li>Copy the field from the ABCinvoice_invoiceLineExample table to your Lines table.<\/li>\n\n\n\n<li>Due dates (if you manage multiple due dates): copy the field from the ABCinvoice_InvoiceDueDateExample table to your DueDates table.<\/li>\n\n\n\n<li>Modify the fields of ABCinvoice_JSONrepresentation_{table} in the Invoices, Lines, and, if you manage multiple due dates, the DueDates tables.\n<ul class=\"wp-block-list\">\n<li>Notes about the JSONrepresentation field configuration:\n<ul class=\"wp-block-list\">\n<li>Dates are passed as numbers to ensure compatibility between all systems (client\/server\u2026). For example, the dateAsNumber parameter of ABC_invoice_JSONrepresentation_invoice should be passed as: GetAsNumber ( Invoice::invoiceDate )<\/li>\n\n\n\n<li>Linked data arrays must be passed as: ;[ \u201cinvoiceLinesAttributes\u201d; JSONMakeArray ( List ( Lines:: \u03a9ABCinvoiceJSONrepresentation_invoiceLine ); \u00b6 ; JSONObject ); JSONArray ] For the due date(s), you can:\n<ul class=\"wp-block-list\">\n<li>If you do not manage multiple due dates, use the dueDateAsNumber parameter.<\/li>\n\n\n\n<li>If you manage them in a separate table, use the parameter provided in the example.<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Configure the ABCinvoice_Config Script<\/li>\n\n\n\n<li>Settings\n<ul class=\"wp-block-list\">\n<li>Create an account on ABCinvoice and obtain an API key.<\/li>\n\n\n\n<li>From the interface (the add-on you dragged onto the layout), enter the API key and your country (the country from which invoices will be issued). Update the legal literals library by clicking on Update legal literals.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>Delete unused elements, which are only there to help you configure:\n<ul class=\"wp-block-list\">\n<li>Tables containing the word Example and their table occurrences (ABCinvoice_InvoiceExample, ABCinvoice_InvoiceLineExample, ABCinvoice_DueDateExample).<\/li>\n<\/ul>\n<\/li>\n<\/ol>\n\n\n\n<h2 class=\"wp-block-heading\">Part 2 \u2013 Adapting your scripts<\/h2>\n\n\n\n<p>Attachments: All documents in the ABCinvoice_Attachment table will be uploaded with your invoice.<\/p>\n\n\n\n<p>WARNING: Once uploaded, an attachment cannot be deleted! You can add attachments as long as the invoice has not been sent.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you want to attach a PDF of your invoice to the electronic invoice, save it as an attachment (ABCinvoice_attachment table) with the script ABCinvoice_sample_AddAttachment with the parameters: idInvoice = the primary key of your Invoices table and isInvoice = True.<\/li>\n\n\n\n<li>Save other documents such as Terms and Conditions, balance (customer balance), etc., as attachments (ABCinvoice_attachment table) with the parameters: idInvoice = the primary key of your Invoices table and isInvoice = False.<\/li>\n\n\n\n<li>Several example scripts are provided in the \u201cABCinvoice \u2013 integration example\u201d folder, such as the script ABCinvoice_sample_CreateInvoice, which creates an electronic invoice.<\/li>\n\n\n\n<li>Simply add, in the section \u2014\u2014\u2014\u2013 FIND YOUR INVOICE \u2014\u2014\u2014\u2013, navigation to the invoice to create, then modify the optional parameters if necessary in the section \u2014\u2014\u2014\u2013\u270f\ufe0f DEFINE OPTIONAL VALUES \u2014\u2014\u2014\u2013. You can duplicate the example scripts to adapt them to your needs.<\/li>\n\n\n\n<li>Do not modify the scripts present in the \u201cABCinvoice (private)\u201d folder.<\/li>\n\n\n\n<li>The add-on comes with value lists to assist you. All these lists are prefixed with ABCinvoice.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Part 3 \u2013 Receiving invoices<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>If you already have a table for incoming invoices.\n<ul class=\"wp-block-list\">\n<li>Duplicate and adapt the scripts \u201cABCinvoice_GetReceivedInvoices \u2013 Scheduled script\u201d, \u201cABCinvoice_GetReceivedInvoicesDetails\u201d, \u201cABCinvoice_Create_RINL (invoice)\u201d, \u201cABCinvoice_Create_RDUEDATES (invoice)\u201d, and \u201cABCinvoice_Create_RTAX (invoice)\u201d.<\/li>\n<\/ul>\n<\/li>\n\n\n\n<li>The layouts for the list of incoming invoices and displaying their details can be found in the \u201cReceivedInvoicesLayouts\u201d folder of the add-on. The scripts for retrieving incoming invoices are also included and do not require modification if you do not have an incoming invoices table.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\">Part 4 \u2013 Example layouts<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Two example layouts are provided with ready-to-use external tables for your own layouts: ABCinvoice_Legal_Example for legal mentions, ABCinvoice_Attachment_Example for attachments. You can copy and modify these external tables if needed.<\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>Integration: FileMaker Add-on The easiest way to integrate ABCinvoice.eu with FileMaker is to use the Add-on. Part 1 \u2013 Add-on setup Notes about this documentation: Part 2 \u2013 Adapting your scripts Attachments: All documents in the ABCinvoice_Attachment table will be uploaded with your invoice. WARNING: Once uploaded, an attachment cannot be deleted! You can add [&hellip;]<\/p>\n","protected":false},"author":3,"featured_media":1605,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[],"tags":[],"class_list":["post-1534","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>FileMaker Add-on - ABCinvoice.eu<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/\" \/>\n<meta property=\"og:locale\" content=\"nl_NL\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FileMaker Add-on - ABCinvoice.eu\" \/>\n<meta property=\"og:description\" content=\"Integration: FileMaker Add-on The easiest way to integrate ABCinvoice.eu with FileMaker is to use the Add-on. Part 1 \u2013 Add-on setup Notes about this documentation: Part 2 \u2013 Adapting your scripts Attachments: All documents in the ABCinvoice_Attachment table will be uploaded with your invoice. WARNING: Once uploaded, an attachment cannot be deleted! You can add [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/\" \/>\n<meta property=\"og:site_name\" content=\"ABCinvoice.eu\" \/>\n<meta property=\"article:published_time\" content=\"2025-06-14T13:56:50+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-06T11:42:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.abcinvoice.eu\/wp-content\/uploads\/2025\/06\/3911.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"540\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"ABCinvoice\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Geschreven door\" \/>\n\t<meta name=\"twitter:data1\" content=\"ABCinvoice\" \/>\n\t<meta name=\"twitter:label2\" content=\"Geschatte leestijd\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minuten\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/\"},\"author\":{\"name\":\"ABCinvoice\",\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/#\\\/schema\\\/person\\\/1d28d943cfad638d2444954753dcc667\"},\"headline\":\"FileMaker Add-on\",\"datePublished\":\"2025-06-14T13:56:50+00:00\",\"dateModified\":\"2025-08-06T11:42:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/\"},\"wordCount\":766,\"publisher\":{\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.abcinvoice.eu\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/3911.jpg\",\"inLanguage\":\"nl-NL\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/\",\"url\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/\",\"name\":\"FileMaker Add-on - ABCinvoice.eu\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.abcinvoice.eu\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/3911.jpg\",\"datePublished\":\"2025-06-14T13:56:50+00:00\",\"dateModified\":\"2025-08-06T11:42:34+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/#breadcrumb\"},\"inLanguage\":\"nl-NL\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.abcinvoice.eu\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/3911.jpg\",\"contentUrl\":\"https:\\\/\\\/www.abcinvoice.eu\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/3911.jpg\",\"width\":1000,\"height\":540},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/filemaker-add-on\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Accueil\",\"item\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FileMaker Add-on\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/#website\",\"url\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/\",\"name\":\"ABCinvoice.eu\",\"description\":\"La facturation \u00e9lectronique facile\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"nl-NL\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/#organization\",\"name\":\"ABCinvoice.eu\",\"url\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.abcinvoice.eu\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Fichier-101@2x.png\",\"contentUrl\":\"https:\\\/\\\/www.abcinvoice.eu\\\/wp-content\\\/uploads\\\/2025\\\/06\\\/Fichier-101@2x.png\",\"width\":1234,\"height\":155,\"caption\":\"ABCinvoice.eu\"},\"image\":{\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/#\\\/schema\\\/person\\\/1d28d943cfad638d2444954753dcc667\",\"name\":\"ABCinvoice\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"nl-NL\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2496994647e21e955bac5cb71b6f1dd11a324ce75f23cad98e63784a7240b337?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2496994647e21e955bac5cb71b6f1dd11a324ce75f23cad98e63784a7240b337?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/2496994647e21e955bac5cb71b6f1dd11a324ce75f23cad98e63784a7240b337?s=96&d=mm&r=g\",\"caption\":\"ABCinvoice\"},\"url\":\"https:\\\/\\\/www.abcinvoice.eu\\\/nl\\\/author\\\/aurelie\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"FileMaker Add-on - ABCinvoice.eu","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/","og_locale":"nl_NL","og_type":"article","og_title":"FileMaker Add-on - ABCinvoice.eu","og_description":"Integration: FileMaker Add-on The easiest way to integrate ABCinvoice.eu with FileMaker is to use the Add-on. Part 1 \u2013 Add-on setup Notes about this documentation: Part 2 \u2013 Adapting your scripts Attachments: All documents in the ABCinvoice_Attachment table will be uploaded with your invoice. WARNING: Once uploaded, an attachment cannot be deleted! You can add [&hellip;]","og_url":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/","og_site_name":"ABCinvoice.eu","article_published_time":"2025-06-14T13:56:50+00:00","article_modified_time":"2025-08-06T11:42:34+00:00","og_image":[{"width":1000,"height":540,"url":"https:\/\/www.abcinvoice.eu\/wp-content\/uploads\/2025\/06\/3911.jpg","type":"image\/jpeg"}],"author":"ABCinvoice","twitter_card":"summary_large_image","twitter_misc":{"Geschreven door":"ABCinvoice","Geschatte leestijd":"4 minuten"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/#article","isPartOf":{"@id":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/"},"author":{"name":"ABCinvoice","@id":"https:\/\/www.abcinvoice.eu\/nl\/#\/schema\/person\/1d28d943cfad638d2444954753dcc667"},"headline":"FileMaker Add-on","datePublished":"2025-06-14T13:56:50+00:00","dateModified":"2025-08-06T11:42:34+00:00","mainEntityOfPage":{"@id":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/"},"wordCount":766,"publisher":{"@id":"https:\/\/www.abcinvoice.eu\/nl\/#organization"},"image":{"@id":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/#primaryimage"},"thumbnailUrl":"https:\/\/www.abcinvoice.eu\/wp-content\/uploads\/2025\/06\/3911.jpg","inLanguage":"nl-NL"},{"@type":"WebPage","@id":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/","url":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/","name":"FileMaker Add-on - ABCinvoice.eu","isPartOf":{"@id":"https:\/\/www.abcinvoice.eu\/nl\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/#primaryimage"},"image":{"@id":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/#primaryimage"},"thumbnailUrl":"https:\/\/www.abcinvoice.eu\/wp-content\/uploads\/2025\/06\/3911.jpg","datePublished":"2025-06-14T13:56:50+00:00","dateModified":"2025-08-06T11:42:34+00:00","breadcrumb":{"@id":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/#breadcrumb"},"inLanguage":"nl-NL","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/"]}]},{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/#primaryimage","url":"https:\/\/www.abcinvoice.eu\/wp-content\/uploads\/2025\/06\/3911.jpg","contentUrl":"https:\/\/www.abcinvoice.eu\/wp-content\/uploads\/2025\/06\/3911.jpg","width":1000,"height":540},{"@type":"BreadcrumbList","@id":"https:\/\/www.abcinvoice.eu\/nl\/filemaker-add-on\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Accueil","item":"https:\/\/www.abcinvoice.eu\/nl\/"},{"@type":"ListItem","position":2,"name":"FileMaker Add-on"}]},{"@type":"WebSite","@id":"https:\/\/www.abcinvoice.eu\/nl\/#website","url":"https:\/\/www.abcinvoice.eu\/nl\/","name":"ABCinvoice.eu","description":"La facturation \u00e9lectronique facile","publisher":{"@id":"https:\/\/www.abcinvoice.eu\/nl\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.abcinvoice.eu\/nl\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"nl-NL"},{"@type":"Organization","@id":"https:\/\/www.abcinvoice.eu\/nl\/#organization","name":"ABCinvoice.eu","url":"https:\/\/www.abcinvoice.eu\/nl\/","logo":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/www.abcinvoice.eu\/nl\/#\/schema\/logo\/image\/","url":"https:\/\/www.abcinvoice.eu\/wp-content\/uploads\/2025\/06\/Fichier-101@2x.png","contentUrl":"https:\/\/www.abcinvoice.eu\/wp-content\/uploads\/2025\/06\/Fichier-101@2x.png","width":1234,"height":155,"caption":"ABCinvoice.eu"},"image":{"@id":"https:\/\/www.abcinvoice.eu\/nl\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.abcinvoice.eu\/nl\/#\/schema\/person\/1d28d943cfad638d2444954753dcc667","name":"ABCinvoice","image":{"@type":"ImageObject","inLanguage":"nl-NL","@id":"https:\/\/secure.gravatar.com\/avatar\/2496994647e21e955bac5cb71b6f1dd11a324ce75f23cad98e63784a7240b337?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/2496994647e21e955bac5cb71b6f1dd11a324ce75f23cad98e63784a7240b337?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/2496994647e21e955bac5cb71b6f1dd11a324ce75f23cad98e63784a7240b337?s=96&d=mm&r=g","caption":"ABCinvoice"},"url":"https:\/\/www.abcinvoice.eu\/nl\/author\/aurelie\/"}]}},"jetpack_featured_media_url":"https:\/\/www.abcinvoice.eu\/wp-content\/uploads\/2025\/06\/3911.jpg","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.abcinvoice.eu\/nl\/wp-json\/wp\/v2\/posts\/1534","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.abcinvoice.eu\/nl\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.abcinvoice.eu\/nl\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.abcinvoice.eu\/nl\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.abcinvoice.eu\/nl\/wp-json\/wp\/v2\/comments?post=1534"}],"version-history":[{"count":4,"href":"https:\/\/www.abcinvoice.eu\/nl\/wp-json\/wp\/v2\/posts\/1534\/revisions"}],"predecessor-version":[{"id":3900,"href":"https:\/\/www.abcinvoice.eu\/nl\/wp-json\/wp\/v2\/posts\/1534\/revisions\/3900"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.abcinvoice.eu\/nl\/wp-json\/wp\/v2\/media\/1605"}],"wp:attachment":[{"href":"https:\/\/www.abcinvoice.eu\/nl\/wp-json\/wp\/v2\/media?parent=1534"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.abcinvoice.eu\/nl\/wp-json\/wp\/v2\/categories?post=1534"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.abcinvoice.eu\/nl\/wp-json\/wp\/v2\/tags?post=1534"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}